STLExtract 1.0.0

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 (1967) hide show
  1. data/.gitignore +14 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +66 -0
  5. data/Rakefile +2 -0
  6. data/STLExtract-0.0.1.gem +0 -0
  7. data/STLExtract.gemspec +23 -0
  8. data/Slic3r/Linux/bin/slic3r +0 -0
  9. data/Slic3r/Linux/dll/libGLU.so +1 -0
  10. data/Slic3r/Linux/dll/libGLU.so.1 +1 -0
  11. data/Slic3r/Linux/dll/libGLU.so.1.3.08004 +0 -0
  12. data/Slic3r/Linux/dll/libperl.so +0 -0
  13. data/Slic3r/Linux/dll/libwx_baseu-2.9.so +1 -0
  14. data/Slic3r/Linux/dll/libwx_baseu-2.9.so.3 +1 -0
  15. data/Slic3r/Linux/dll/libwx_baseu-2.9.so.3.0.0 +0 -0
  16. data/Slic3r/Linux/dll/libwx_baseu_net-2.9.so +1 -0
  17. data/Slic3r/Linux/dll/libwx_baseu_net-2.9.so.3 +1 -0
  18. data/Slic3r/Linux/dll/libwx_baseu_net-2.9.so.3.0.0 +0 -0
  19. data/Slic3r/Linux/dll/libwx_gtk2u_adv-2.9.so +1 -0
  20. data/Slic3r/Linux/dll/libwx_gtk2u_adv-2.9.so.3 +1 -0
  21. data/Slic3r/Linux/dll/libwx_gtk2u_adv-2.9.so.3.0.0 +0 -0
  22. data/Slic3r/Linux/dll/libwx_gtk2u_core-2.9.so +1 -0
  23. data/Slic3r/Linux/dll/libwx_gtk2u_core-2.9.so.3 +1 -0
  24. data/Slic3r/Linux/dll/libwx_gtk2u_core-2.9.so.3.0.0 +0 -0
  25. data/Slic3r/Linux/dll/libwx_gtk2u_gl-2.9.so +1 -0
  26. data/Slic3r/Linux/dll/libwx_gtk2u_gl-2.9.so.3 +1 -0
  27. data/Slic3r/Linux/dll/libwx_gtk2u_gl-2.9.so.3.0.0 +0 -0
  28. data/Slic3r/Linux/dll/libwx_gtk2u_html-2.9.so +1 -0
  29. data/Slic3r/Linux/dll/libwx_gtk2u_html-2.9.so.3 +1 -0
  30. data/Slic3r/Linux/dll/libwx_gtk2u_html-2.9.so.3.0.0 +0 -0
  31. data/Slic3r/Linux/lib/std/Authen/SASL.pm +130 -0
  32. data/Slic3r/Linux/lib/std/Authen/SASL/CRAM_MD5.pm +18 -0
  33. data/Slic3r/Linux/lib/std/Authen/SASL/EXTERNAL.pm +18 -0
  34. data/Slic3r/Linux/lib/std/Authen/SASL/Perl.pm +344 -0
  35. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/ANONYMOUS.pm +93 -0
  36. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/CRAM_MD5.pm +105 -0
  37. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/DIGEST_MD5.pm +877 -0
  38. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/EXTERNAL.pm +97 -0
  39. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/GSSAPI.pm +375 -0
  40. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/LOGIN.pm +216 -0
  41. data/Slic3r/Linux/lib/std/Authen/SASL/Perl/PLAIN.pm +182 -0
  42. data/Slic3r/Linux/lib/std/B.pm +1202 -0
  43. data/Slic3r/Linux/lib/std/B/Deparse.pm +4900 -0
  44. data/Slic3r/Linux/lib/std/CPAN/Config.pm +55 -0
  45. data/Slic3r/Linux/lib/std/Cava/Global.pm +20 -0
  46. data/Slic3r/Linux/lib/std/Cava/Project.pm +19 -0
  47. data/Slic3r/Linux/lib/std/Class/Accessor.pm +744 -0
  48. data/Slic3r/Linux/lib/std/Class/Method/Modifiers.pm +481 -0
  49. data/Slic3r/Linux/lib/std/Class/Struct.pm +636 -0
  50. data/Slic3r/Linux/lib/std/Class/XSAccessor.pm +326 -0
  51. data/Slic3r/Linux/lib/std/Class/XSAccessor/Heavy.pm +76 -0
  52. data/Slic3r/Linux/lib/std/Compress/Raw/Bzip2.pm +361 -0
  53. data/Slic3r/Linux/lib/std/Compress/Raw/Zlib.pm +1429 -0
  54. data/Slic3r/Linux/lib/std/Config.pm +110 -0
  55. data/Slic3r/Linux/lib/std/Config_git.pl +12 -0
  56. data/Slic3r/Linux/lib/std/Config_heavy.pl +1355 -0
  57. data/Slic3r/Linux/lib/std/Crypt/CBC.pm +1050 -0
  58. data/Slic3r/Linux/lib/std/Crypt/SSLeay.pm +457 -0
  59. data/Slic3r/Linux/lib/std/Crypt/SSLeay/CTX.pm +4 -0
  60. data/Slic3r/Linux/lib/std/Crypt/SSLeay/Conn.pm +4 -0
  61. data/Slic3r/Linux/lib/std/Crypt/SSLeay/Err.pm +4 -0
  62. data/Slic3r/Linux/lib/std/Crypt/SSLeay/MainContext.pm +42 -0
  63. data/Slic3r/Linux/lib/std/Crypt/SSLeay/X509.pm +26 -0
  64. data/Slic3r/Linux/lib/std/Cwd.pm +855 -0
  65. data/Slic3r/Linux/lib/std/Data/Dumper.pm +1306 -0
  66. data/Slic3r/Linux/lib/std/Data/UUID.pm +204 -0
  67. data/Slic3r/Linux/lib/std/Devel/GlobalDestruction.pm +110 -0
  68. data/Slic3r/Linux/lib/std/Digest/HMAC.pm +120 -0
  69. data/Slic3r/Linux/lib/std/Digest/HMAC_MD5.pm +71 -0
  70. data/Slic3r/Linux/lib/std/Digest/MD5.pm +376 -0
  71. data/Slic3r/Linux/lib/std/Digest/SHA.pm +701 -0
  72. data/Slic3r/Linux/lib/std/Digest/base.pm +100 -0
  73. data/Slic3r/Linux/lib/std/Encode.pm +977 -0
  74. data/Slic3r/Linux/lib/std/Encode/Alias.pm +384 -0
  75. data/Slic3r/Linux/lib/std/Encode/Byte.pm +120 -0
  76. data/Slic3r/Linux/lib/std/Encode/CJKConstants.pm +66 -0
  77. data/Slic3r/Linux/lib/std/Encode/CN.pm +74 -0
  78. data/Slic3r/Linux/lib/std/Encode/CN/HZ.pm +198 -0
  79. data/Slic3r/Linux/lib/std/Encode/Config.pm +170 -0
  80. data/Slic3r/Linux/lib/std/Encode/EBCDIC.pm +45 -0
  81. data/Slic3r/Linux/lib/std/Encode/Encoder.pm +253 -0
  82. data/Slic3r/Linux/lib/std/Encode/Encoding.pm +360 -0
  83. data/Slic3r/Linux/lib/std/Encode/GSM0338.pm +292 -0
  84. data/Slic3r/Linux/lib/std/Encode/Guess.pm +355 -0
  85. data/Slic3r/Linux/lib/std/Encode/JP.pm +95 -0
  86. data/Slic3r/Linux/lib/std/Encode/JP/H2Z.pm +176 -0
  87. data/Slic3r/Linux/lib/std/Encode/JP/JIS7.pm +165 -0
  88. data/Slic3r/Linux/lib/std/Encode/KR.pm +69 -0
  89. data/Slic3r/Linux/lib/std/Encode/KR/2022_KR.pm +81 -0
  90. data/Slic3r/Linux/lib/std/Encode/Locale.pm +348 -0
  91. data/Slic3r/Linux/lib/std/Encode/MIME/Header.pm +242 -0
  92. data/Slic3r/Linux/lib/std/Encode/MIME/Header/ISO_2022_JP.pm +131 -0
  93. data/Slic3r/Linux/lib/std/Encode/MIME/Name.pm +94 -0
  94. data/Slic3r/Linux/lib/std/Encode/Symbol.pm +44 -0
  95. data/Slic3r/Linux/lib/std/Encode/TW.pm +75 -0
  96. data/Slic3r/Linux/lib/std/Encode/Unicode.pm +270 -0
  97. data/Slic3r/Linux/lib/std/Encode/Unicode/UTF7.pm +130 -0
  98. data/Slic3r/Linux/lib/std/Errno.pm +282 -0
  99. data/Slic3r/Linux/lib/std/Fcntl.pm +186 -0
  100. data/Slic3r/Linux/lib/std/File/Basename.pm +402 -0
  101. data/Slic3r/Linux/lib/std/File/Glob.pm +437 -0
  102. data/Slic3r/Linux/lib/std/File/GlobMapper.pm +679 -0
  103. data/Slic3r/Linux/lib/std/File/Listing.pm +435 -0
  104. data/Slic3r/Linux/lib/std/File/Path.pm +981 -0
  105. data/Slic3r/Linux/lib/std/File/Spec.pm +339 -0
  106. data/Slic3r/Linux/lib/std/File/Spec/Cygwin.pm +160 -0
  107. data/Slic3r/Linux/lib/std/File/Spec/Epoc.pm +79 -0
  108. data/Slic3r/Linux/lib/std/File/Spec/Functions.pm +130 -0
  109. data/Slic3r/Linux/lib/std/File/Spec/Mac.pm +786 -0
  110. data/Slic3r/Linux/lib/std/File/Spec/OS2.pm +276 -0
  111. data/Slic3r/Linux/lib/std/File/Spec/Unix.pm +595 -0
  112. data/Slic3r/Linux/lib/std/File/Spec/VMS.pm +679 -0
  113. data/Slic3r/Linux/lib/std/File/Spec/Win32.pm +446 -0
  114. data/Slic3r/Linux/lib/std/File/Temp.pm +2452 -0
  115. data/Slic3r/Linux/lib/std/File/stat.pm +345 -0
  116. data/Slic3r/Linux/lib/std/FileHandle.pm +262 -0
  117. data/Slic3r/Linux/lib/std/Filter/Util/Call.pm +498 -0
  118. data/Slic3r/Linux/lib/std/FindBin.pm +209 -0
  119. data/Slic3r/Linux/lib/std/Getopt/Long.pm +2693 -0
  120. data/Slic3r/Linux/lib/std/Growl/GNTP.pm +595 -0
  121. data/Slic3r/Linux/lib/std/HTML/Entities.pm +483 -0
  122. data/Slic3r/Linux/lib/std/HTML/HeadParser.pm +310 -0
  123. data/Slic3r/Linux/lib/std/HTML/Parser.pm +1240 -0
  124. data/Slic3r/Linux/lib/std/HTTP/Config.pm +436 -0
  125. data/Slic3r/Linux/lib/std/HTTP/Cookies.pm +781 -0
  126. data/Slic3r/Linux/lib/std/HTTP/Cookies/Netscape.pm +114 -0
  127. data/Slic3r/Linux/lib/std/HTTP/Date.pm +388 -0
  128. data/Slic3r/Linux/lib/std/HTTP/Headers.pm +849 -0
  129. data/Slic3r/Linux/lib/std/HTTP/Headers/Util.pm +199 -0
  130. data/Slic3r/Linux/lib/std/HTTP/Message.pm +1107 -0
  131. data/Slic3r/Linux/lib/std/HTTP/Negotiate.pm +528 -0
  132. data/Slic3r/Linux/lib/std/HTTP/Request.pm +242 -0
  133. data/Slic3r/Linux/lib/std/HTTP/Request/Common.pm +514 -0
  134. data/Slic3r/Linux/lib/std/HTTP/Response.pm +638 -0
  135. data/Slic3r/Linux/lib/std/HTTP/Status.pm +267 -0
  136. data/Slic3r/Linux/lib/std/I18N/Langinfo.pm +191 -0
  137. data/Slic3r/Linux/lib/std/IO.pm +68 -0
  138. data/Slic3r/Linux/lib/std/IO/Compress/Adapter/Bzip2.pm +162 -0
  139. data/Slic3r/Linux/lib/std/IO/Compress/Adapter/Deflate.pm +165 -0
  140. data/Slic3r/Linux/lib/std/IO/Compress/Base.pm +981 -0
  141. data/Slic3r/Linux/lib/std/IO/Compress/Base/Common.pm +956 -0
  142. data/Slic3r/Linux/lib/std/IO/Compress/Bzip2.pm +758 -0
  143. data/Slic3r/Linux/lib/std/IO/Compress/Deflate.pm +930 -0
  144. data/Slic3r/Linux/lib/std/IO/Compress/Gzip.pm +1242 -0
  145. data/Slic3r/Linux/lib/std/IO/Compress/Gzip/Constants.pm +148 -0
  146. data/Slic3r/Linux/lib/std/IO/Compress/RawDeflate.pm +1017 -0
  147. data/Slic3r/Linux/lib/std/IO/Compress/Zlib/Constants.pm +77 -0
  148. data/Slic3r/Linux/lib/std/IO/Compress/Zlib/Extra.pm +198 -0
  149. data/Slic3r/Linux/lib/std/IO/Dir.pm +248 -0
  150. data/Slic3r/Linux/lib/std/IO/File.pm +204 -0
  151. data/Slic3r/Linux/lib/std/IO/Handle.pm +646 -0
  152. data/Slic3r/Linux/lib/std/IO/Pipe.pm +257 -0
  153. data/Slic3r/Linux/lib/std/IO/Seekable.pm +128 -0
  154. data/Slic3r/Linux/lib/std/IO/Select.pm +387 -0
  155. data/Slic3r/Linux/lib/std/IO/Socket.pm +540 -0
  156. data/Slic3r/Linux/lib/std/IO/Socket/INET.pm +464 -0
  157. data/Slic3r/Linux/lib/std/IO/Socket/SSL.pm +2456 -0
  158. data/Slic3r/Linux/lib/std/IO/Socket/UNIX.pm +143 -0
  159. data/Slic3r/Linux/lib/std/IO/Uncompress/Adapter/Bunzip2.pm +112 -0
  160. data/Slic3r/Linux/lib/std/IO/Uncompress/Adapter/Inflate.pm +158 -0
  161. data/Slic3r/Linux/lib/std/IO/Uncompress/Base.pm +1483 -0
  162. data/Slic3r/Linux/lib/std/IO/Uncompress/Bunzip2.pm +858 -0
  163. data/Slic3r/Linux/lib/std/IO/Uncompress/Gunzip.pm +1111 -0
  164. data/Slic3r/Linux/lib/std/IO/Uncompress/Inflate.pm +982 -0
  165. data/Slic3r/Linux/lib/std/IO/Uncompress/RawInflate.pm +1110 -0
  166. data/Slic3r/Linux/lib/std/Import/Into.pm +289 -0
  167. data/Slic3r/Linux/lib/std/LWP.pm +667 -0
  168. data/Slic3r/Linux/lib/std/LWP/Authen/Basic.pm +65 -0
  169. data/Slic3r/Linux/lib/std/LWP/Authen/Digest.pm +68 -0
  170. data/Slic3r/Linux/lib/std/LWP/Authen/Ntlm.pm +180 -0
  171. data/Slic3r/Linux/lib/std/LWP/ConnCache.pm +313 -0
  172. data/Slic3r/Linux/lib/std/LWP/MediaTypes.pm +280 -0
  173. data/Slic3r/Linux/lib/std/LWP/MemberMixin.pm +44 -0
  174. data/Slic3r/Linux/lib/std/LWP/Protocol.pm +291 -0
  175. data/Slic3r/Linux/lib/std/LWP/Protocol/GHTTP.pm +73 -0
  176. data/Slic3r/Linux/lib/std/LWP/Protocol/cpan.pm +72 -0
  177. data/Slic3r/Linux/lib/std/LWP/Protocol/data.pm +52 -0
  178. data/Slic3r/Linux/lib/std/LWP/Protocol/file.pm +146 -0
  179. data/Slic3r/Linux/lib/std/LWP/Protocol/ftp.pm +543 -0
  180. data/Slic3r/Linux/lib/std/LWP/Protocol/gopher.pm +213 -0
  181. data/Slic3r/Linux/lib/std/LWP/Protocol/http.pm +501 -0
  182. data/Slic3r/Linux/lib/std/LWP/Protocol/https.pm +132 -0
  183. data/Slic3r/Linux/lib/std/LWP/Protocol/loopback.pm +26 -0
  184. data/Slic3r/Linux/lib/std/LWP/Protocol/mailto.pm +183 -0
  185. data/Slic3r/Linux/lib/std/LWP/Protocol/nntp.pm +145 -0
  186. data/Slic3r/Linux/lib/std/LWP/Protocol/nogo.pm +24 -0
  187. data/Slic3r/Linux/lib/std/LWP/UserAgent.pm +1859 -0
  188. data/Slic3r/Linux/lib/std/List/Util.pm +433 -0
  189. data/Slic3r/Linux/lib/std/MIME/Base64.pm +188 -0
  190. data/Slic3r/Linux/lib/std/MIME/QuotedPrint.pm +114 -0
  191. data/Slic3r/Linux/lib/std/Mail/Address.pm +273 -0
  192. data/Slic3r/Linux/lib/std/Mail/Header.pm +637 -0
  193. data/Slic3r/Linux/lib/std/Mail/Internet.pm +546 -0
  194. data/Slic3r/Linux/lib/std/Mail/Mailer.pm +215 -0
  195. data/Slic3r/Linux/lib/std/Mail/Util.pm +149 -0
  196. data/Slic3r/Linux/lib/std/Math/BigFloat.pm +4493 -0
  197. data/Slic3r/Linux/lib/std/Math/BigFloat/Trace.pm +58 -0
  198. data/Slic3r/Linux/lib/std/Math/BigInt.pm +5284 -0
  199. data/Slic3r/Linux/lib/std/Math/BigInt/Calc.pm +2970 -0
  200. data/Slic3r/Linux/lib/std/Math/BigInt/CalcEmu.pm +329 -0
  201. data/Slic3r/Linux/lib/std/Math/BigInt/FastCalc.pm +112 -0
  202. data/Slic3r/Linux/lib/std/Math/BigInt/Trace.pm +47 -0
  203. data/Slic3r/Linux/lib/std/Math/Complex.pm +2093 -0
  204. data/Slic3r/Linux/lib/std/Math/Libm.pm +199 -0
  205. data/Slic3r/Linux/lib/std/Math/PlanePath.pm +2211 -0
  206. data/Slic3r/Linux/lib/std/Math/PlanePath/ArchimedeanChords.pm +686 -0
  207. data/Slic3r/Linux/lib/std/Math/PlanePath/Base/Digits.pm +389 -0
  208. data/Slic3r/Linux/lib/std/Math/PlanePath/Base/Generic.pm +242 -0
  209. data/Slic3r/Linux/lib/std/Math/PlanePath/Base/NSEW.pm +114 -0
  210. data/Slic3r/Linux/lib/std/Math/PlanePath/Flowsnake.pm +886 -0
  211. data/Slic3r/Linux/lib/std/Math/PlanePath/FlowsnakeCentres.pm +1018 -0
  212. data/Slic3r/Linux/lib/std/Math/PlanePath/HilbertCurve.pm +772 -0
  213. data/Slic3r/Linux/lib/std/Math/PlanePath/MultipleRings.pm +1715 -0
  214. data/Slic3r/Linux/lib/std/Math/PlanePath/OctagramSpiral.pm +469 -0
  215. data/Slic3r/Linux/lib/std/Math/PlanePath/SacksSpiral.pm +440 -0
  216. data/Slic3r/Linux/lib/std/Math/Trig.pm +768 -0
  217. data/Slic3r/Linux/lib/std/Method/Generate/Accessor.pm +652 -0
  218. data/Slic3r/Linux/lib/std/Method/Generate/BuildAll.pm +33 -0
  219. data/Slic3r/Linux/lib/std/Method/Generate/Constructor.pm +221 -0
  220. data/Slic3r/Linux/lib/std/Method/Generate/DemolishAll.pm +48 -0
  221. data/Slic3r/Linux/lib/std/Module/Runtime.pm +494 -0
  222. data/Slic3r/Linux/lib/std/Moo.pm +989 -0
  223. data/Slic3r/Linux/lib/std/Moo/HandleMoose.pm +210 -0
  224. data/Slic3r/Linux/lib/std/Moo/HandleMoose/FakeMetaClass.pm +21 -0
  225. data/Slic3r/Linux/lib/std/Moo/HandleMoose/_TypeMap.pm +72 -0
  226. data/Slic3r/Linux/lib/std/Moo/Object.pm +80 -0
  227. data/Slic3r/Linux/lib/std/Moo/Role.pm +475 -0
  228. data/Slic3r/Linux/lib/std/Moo/_Utils.pm +124 -0
  229. data/Slic3r/Linux/lib/std/Moo/_mro.pm +10 -0
  230. data/Slic3r/Linux/lib/std/Moo/sification.pm +22 -0
  231. data/Slic3r/Linux/lib/std/Mozilla/CA.pm +99 -0
  232. data/Slic3r/Linux/lib/std/Mozilla/CA/cacert.pem +3366 -0
  233. data/Slic3r/Linux/lib/std/Net/Cmd.pm +783 -0
  234. data/Slic3r/Linux/lib/std/Net/Config.pm +312 -0
  235. data/Slic3r/Linux/lib/std/Net/Domain.pm +347 -0
  236. data/Slic3r/Linux/lib/std/Net/FTP.pm +1829 -0
  237. data/Slic3r/Linux/lib/std/Net/FTP/A.pm +111 -0
  238. data/Slic3r/Linux/lib/std/Net/FTP/E.pm +8 -0
  239. data/Slic3r/Linux/lib/std/Net/FTP/I.pm +80 -0
  240. data/Slic3r/Linux/lib/std/Net/FTP/L.pm +8 -0
  241. data/Slic3r/Linux/lib/std/Net/FTP/dataconn.pm +124 -0
  242. data/Slic3r/Linux/lib/std/Net/HTTP.pm +279 -0
  243. data/Slic3r/Linux/lib/std/Net/HTTP/Methods.pm +593 -0
  244. data/Slic3r/Linux/lib/std/Net/HTTPS.pm +110 -0
  245. data/Slic3r/Linux/lib/std/Net/NNTP.pm +1140 -0
  246. data/Slic3r/Linux/lib/std/Net/Netrc.pm +325 -0
  247. data/Slic3r/Linux/lib/std/Net/SMTP.pm +867 -0
  248. data/Slic3r/Linux/lib/std/Net/SSL.pm +639 -0
  249. data/Slic3r/Linux/lib/std/Net/SSLeay.pm +2692 -0
  250. data/Slic3r/Linux/lib/std/OpenGL.pm +6288 -0
  251. data/Slic3r/Linux/lib/std/POSIX.pm +1037 -0
  252. data/Slic3r/Linux/lib/std/Params/Validate/XS.pm +51 -0
  253. data/Slic3r/Linux/lib/std/PerlIO.pm +332 -0
  254. data/Slic3r/Linux/lib/std/PerlIO/encoding.pm +53 -0
  255. data/Slic3r/Linux/lib/std/PerlIO/scalar.pm +41 -0
  256. data/Slic3r/Linux/lib/std/PerlIO/via.pm +243 -0
  257. data/Slic3r/Linux/lib/std/PerlIO/via/QuotedPrint.pm +94 -0
  258. data/Slic3r/Linux/lib/std/Pod/Escapes.pm +721 -0
  259. data/Slic3r/Linux/lib/std/Pod/InputObjects.pm +936 -0
  260. data/Slic3r/Linux/lib/std/Pod/Parser.pm +1829 -0
  261. data/Slic3r/Linux/lib/std/Pod/PlainText.pm +738 -0
  262. data/Slic3r/Linux/lib/std/Pod/Select.pm +746 -0
  263. data/Slic3r/Linux/lib/std/Pod/Simple.pm +1535 -0
  264. data/Slic3r/Linux/lib/std/Pod/Simple/BlackBox.pm +1930 -0
  265. data/Slic3r/Linux/lib/std/Pod/Simple/LinkSection.pm +174 -0
  266. data/Slic3r/Linux/lib/std/Pod/Simple/TiedOutFH.pm +105 -0
  267. data/Slic3r/Linux/lib/std/Pod/Simple/Transcode.pm +35 -0
  268. data/Slic3r/Linux/lib/std/Pod/Text.pm +886 -0
  269. data/Slic3r/Linux/lib/std/Pod/Usage.pm +730 -0
  270. data/Slic3r/Linux/lib/std/Role/Tiny.pm +698 -0
  271. data/Slic3r/Linux/lib/std/SVG.pm +341 -0
  272. data/Slic3r/Linux/lib/std/SVG/DOM.pm +804 -0
  273. data/Slic3r/Linux/lib/std/SVG/Element.pm +1649 -0
  274. data/Slic3r/Linux/lib/std/SVG/Extension.pm +458 -0
  275. data/Slic3r/Linux/lib/std/SVG/XML.pm +185 -0
  276. data/Slic3r/Linux/lib/std/Scalar/Util.pm +325 -0
  277. data/Slic3r/Linux/lib/std/SelectSaver.pm +54 -0
  278. data/Slic3r/Linux/lib/std/Slic3r.pm +180 -0
  279. data/Slic3r/Linux/lib/std/Slic3r/Build.pm +8 -0
  280. data/Slic3r/Linux/lib/std/Slic3r/Config.pm +456 -0
  281. data/Slic3r/Linux/lib/std/Slic3r/ExPolygon.pm +53 -0
  282. data/Slic3r/Linux/lib/std/Slic3r/Extruder.pm +52 -0
  283. data/Slic3r/Linux/lib/std/Slic3r/ExtrusionLoop.pm +12 -0
  284. data/Slic3r/Linux/lib/std/Slic3r/ExtrusionPath.pm +12 -0
  285. data/Slic3r/Linux/lib/std/Slic3r/ExtrusionPath/Collection.pm +5 -0
  286. data/Slic3r/Linux/lib/std/Slic3r/Fill.pm +259 -0
  287. data/Slic3r/Linux/lib/std/Slic3r/Fill/ArchimedeanChords.pm +7 -0
  288. data/Slic3r/Linux/lib/std/Slic3r/Fill/Base.pm +81 -0
  289. data/Slic3r/Linux/lib/std/Slic3r/Fill/Concentric.pm +65 -0
  290. data/Slic3r/Linux/lib/std/Slic3r/Fill/Flowsnake.pm +18 -0
  291. data/Slic3r/Linux/lib/std/Slic3r/Fill/HilbertCurve.pm +7 -0
  292. data/Slic3r/Linux/lib/std/Slic3r/Fill/Honeycomb.pm +128 -0
  293. data/Slic3r/Linux/lib/std/Slic3r/Fill/Line.pm +8 -0
  294. data/Slic3r/Linux/lib/std/Slic3r/Fill/OctagramSpiral.pm +9 -0
  295. data/Slic3r/Linux/lib/std/Slic3r/Fill/PlanePath.pm +61 -0
  296. data/Slic3r/Linux/lib/std/Slic3r/Fill/Rectilinear.pm +110 -0
  297. data/Slic3r/Linux/lib/std/Slic3r/Flow.pm +12 -0
  298. data/Slic3r/Linux/lib/std/Slic3r/Format/AMF.pm +122 -0
  299. data/Slic3r/Linux/lib/std/Slic3r/Format/AMF/Parser.pm +157 -0
  300. data/Slic3r/Linux/lib/std/Slic3r/Format/OBJ.pm +36 -0
  301. data/Slic3r/Linux/lib/std/Slic3r/Format/STL.pm +39 -0
  302. data/Slic3r/Linux/lib/std/Slic3r/GCode.pm +696 -0
  303. data/Slic3r/Linux/lib/std/Slic3r/GCode/ArcFitting.pm +242 -0
  304. data/Slic3r/Linux/lib/std/Slic3r/GCode/CoolingBuffer.pm +80 -0
  305. data/Slic3r/Linux/lib/std/Slic3r/GCode/Layer.pm +238 -0
  306. data/Slic3r/Linux/lib/std/Slic3r/GCode/MotionPlanner.pm +317 -0
  307. data/Slic3r/Linux/lib/std/Slic3r/GCode/PlaceholderParser.pm +83 -0
  308. data/Slic3r/Linux/lib/std/Slic3r/GCode/Reader.pm +72 -0
  309. data/Slic3r/Linux/lib/std/Slic3r/GCode/SpiralVase.pm +81 -0
  310. data/Slic3r/Linux/lib/std/Slic3r/GCode/VibrationLimit.pm +64 -0
  311. data/Slic3r/Linux/lib/std/Slic3r/GUI.pm +586 -0
  312. data/Slic3r/Linux/lib/std/Slic3r/GUI/AboutDialog.pm +110 -0
  313. data/Slic3r/Linux/lib/std/Slic3r/GUI/ConfigWizard.pm +373 -0
  314. data/Slic3r/Linux/lib/std/Slic3r/GUI/OptionsGroup.pm +504 -0
  315. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater.pm +1437 -0
  316. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/ObjectCutDialog.pm +153 -0
  317. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/ObjectPartsPanel.pm +268 -0
  318. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/ObjectPreviewDialog.pm +30 -0
  319. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/ObjectSettingsDialog.pm +175 -0
  320. data/Slic3r/Linux/lib/std/Slic3r/GUI/Plater/OverrideSettingsPanel.pm +137 -0
  321. data/Slic3r/Linux/lib/std/Slic3r/GUI/Preferences.pm +78 -0
  322. data/Slic3r/Linux/lib/std/Slic3r/GUI/PreviewCanvas.pm +506 -0
  323. data/Slic3r/Linux/lib/std/Slic3r/GUI/SimpleTab.pm +230 -0
  324. data/Slic3r/Linux/lib/std/Slic3r/GUI/SkeinPanel.pm +550 -0
  325. data/Slic3r/Linux/lib/std/Slic3r/GUI/Tab.pm +944 -0
  326. data/Slic3r/Linux/lib/std/Slic3r/Geometry.pm +753 -0
  327. data/Slic3r/Linux/lib/std/Slic3r/Geometry/Clipper.pm +13 -0
  328. data/Slic3r/Linux/lib/std/Slic3r/Layer.pm +76 -0
  329. data/Slic3r/Linux/lib/std/Slic3r/Layer/BridgeDetector.pm +277 -0
  330. data/Slic3r/Linux/lib/std/Slic3r/Layer/Region.pm +545 -0
  331. data/Slic3r/Linux/lib/std/Slic3r/Line.pm +21 -0
  332. data/Slic3r/Linux/lib/std/Slic3r/Model.pm +608 -0
  333. data/Slic3r/Linux/lib/std/Slic3r/Point.pm +10 -0
  334. data/Slic3r/Linux/lib/std/Slic3r/Polygon.pm +95 -0
  335. data/Slic3r/Linux/lib/std/Slic3r/Polyline.pm +40 -0
  336. data/Slic3r/Linux/lib/std/Slic3r/Print.pm +1146 -0
  337. data/Slic3r/Linux/lib/std/Slic3r/Print/Object.pm +1023 -0
  338. data/Slic3r/Linux/lib/std/Slic3r/Print/Region.pm +63 -0
  339. data/Slic3r/Linux/lib/std/Slic3r/Print/Simple.pm +108 -0
  340. data/Slic3r/Linux/lib/std/Slic3r/Print/State.pm +28 -0
  341. data/Slic3r/Linux/lib/std/Slic3r/Print/SupportMaterial.pm +862 -0
  342. data/Slic3r/Linux/lib/std/Slic3r/SVG.pm +142 -0
  343. data/Slic3r/Linux/lib/std/Slic3r/Surface.pm +15 -0
  344. data/Slic3r/Linux/lib/std/Slic3r/Test/SectionCut.pm +170 -0
  345. data/Slic3r/Linux/lib/std/Slic3r/TriangleMesh.pm +22 -0
  346. data/Slic3r/Linux/lib/std/Slic3r/XS.pm +205 -0
  347. data/Slic3r/Linux/lib/std/Socket.pm +804 -0
  348. data/Slic3r/Linux/lib/std/Storable.pm +1227 -0
  349. data/Slic3r/Linux/lib/std/Sub/Defer.pm +141 -0
  350. data/Slic3r/Linux/lib/std/Sub/Exporter/Progressive.pm +158 -0
  351. data/Slic3r/Linux/lib/std/Sub/Quote.pm +368 -0
  352. data/Slic3r/Linux/lib/std/Symbol.pm +170 -0
  353. data/Slic3r/Linux/lib/std/Term/Cap.pm +799 -0
  354. data/Slic3r/Linux/lib/std/Text/ParseWords.pm +294 -0
  355. data/Slic3r/Linux/lib/std/Thread/Queue.pm +476 -0
  356. data/Slic3r/Linux/lib/std/Tie/Handle.pm +201 -0
  357. data/Slic3r/Linux/lib/std/Tie/Hash.pm +268 -0
  358. data/Slic3r/Linux/lib/std/Tie/Hash/NamedCapture.pm +49 -0
  359. data/Slic3r/Linux/lib/std/Tie/StdHandle.pm +71 -0
  360. data/Slic3r/Linux/lib/std/Time/HiRes.pm +591 -0
  361. data/Slic3r/Linux/lib/std/Time/Local.pm +384 -0
  362. data/Slic3r/Linux/lib/std/Time/Zone.pm +291 -0
  363. data/Slic3r/Linux/lib/std/UNIVERSAL.pm +214 -0
  364. data/Slic3r/Linux/lib/std/URI.pm +1131 -0
  365. data/Slic3r/Linux/lib/std/URI/Escape.pm +208 -0
  366. data/Slic3r/Linux/lib/std/URI/Heuristic.pm +253 -0
  367. data/Slic3r/Linux/lib/std/URI/IRI.pm +44 -0
  368. data/Slic3r/Linux/lib/std/URI/QueryParam.pm +193 -0
  369. data/Slic3r/Linux/lib/std/URI/Split.pm +96 -0
  370. data/Slic3r/Linux/lib/std/URI/URL.pm +305 -0
  371. data/Slic3r/Linux/lib/std/URI/WithBase.pm +171 -0
  372. data/Slic3r/Linux/lib/std/URI/_foreign.pm +6 -0
  373. data/Slic3r/Linux/lib/std/URI/_generic.pm +252 -0
  374. data/Slic3r/Linux/lib/std/URI/_idna.pm +87 -0
  375. data/Slic3r/Linux/lib/std/URI/_ldap.pm +140 -0
  376. data/Slic3r/Linux/lib/std/URI/_login.pm +10 -0
  377. data/Slic3r/Linux/lib/std/URI/_punycode.pm +202 -0
  378. data/Slic3r/Linux/lib/std/URI/_query.pm +93 -0
  379. data/Slic3r/Linux/lib/std/URI/_segment.pm +20 -0
  380. data/Slic3r/Linux/lib/std/URI/_server.pm +162 -0
  381. data/Slic3r/Linux/lib/std/URI/_userpass.pm +51 -0
  382. data/Slic3r/Linux/lib/std/URI/data.pm +140 -0
  383. data/Slic3r/Linux/lib/std/URI/file.pm +328 -0
  384. data/Slic3r/Linux/lib/std/URI/file/Base.pm +80 -0
  385. data/Slic3r/Linux/lib/std/URI/file/FAT.pm +23 -0
  386. data/Slic3r/Linux/lib/std/URI/file/Mac.pm +120 -0
  387. data/Slic3r/Linux/lib/std/URI/file/OS2.pm +28 -0
  388. data/Slic3r/Linux/lib/std/URI/file/QNX.pm +18 -0
  389. data/Slic3r/Linux/lib/std/URI/file/Unix.pm +55 -0
  390. data/Slic3r/Linux/lib/std/URI/file/Win32.pm +84 -0
  391. data/Slic3r/Linux/lib/std/URI/ftp.pm +45 -0
  392. data/Slic3r/Linux/lib/std/URI/gopher.pm +94 -0
  393. data/Slic3r/Linux/lib/std/URI/http.pm +25 -0
  394. data/Slic3r/Linux/lib/std/URI/https.pm +9 -0
  395. data/Slic3r/Linux/lib/std/URI/ldap.pm +122 -0
  396. data/Slic3r/Linux/lib/std/URI/ldapi.pm +30 -0
  397. data/Slic3r/Linux/lib/std/URI/ldaps.pm +9 -0
  398. data/Slic3r/Linux/lib/std/URI/mailto.pm +72 -0
  399. data/Slic3r/Linux/lib/std/URI/mms.pm +8 -0
  400. data/Slic3r/Linux/lib/std/URI/news.pm +68 -0
  401. data/Slic3r/Linux/lib/std/URI/nntp.pm +6 -0
  402. data/Slic3r/Linux/lib/std/URI/pop.pm +68 -0
  403. data/Slic3r/Linux/lib/std/URI/rlogin.pm +7 -0
  404. data/Slic3r/Linux/lib/std/URI/rsync.pm +12 -0
  405. data/Slic3r/Linux/lib/std/URI/rtsp.pm +8 -0
  406. data/Slic3r/Linux/lib/std/URI/rtspu.pm +8 -0
  407. data/Slic3r/Linux/lib/std/URI/sip.pm +86 -0
  408. data/Slic3r/Linux/lib/std/URI/sips.pm +9 -0
  409. data/Slic3r/Linux/lib/std/URI/snews.pm +10 -0
  410. data/Slic3r/Linux/lib/std/URI/ssh.pm +11 -0
  411. data/Slic3r/Linux/lib/std/URI/telnet.pm +7 -0
  412. data/Slic3r/Linux/lib/std/URI/tn3270.pm +7 -0
  413. data/Slic3r/Linux/lib/std/URI/urn.pm +97 -0
  414. data/Slic3r/Linux/lib/std/URI/urn/isbn.pm +102 -0
  415. data/Slic3r/Linux/lib/std/URI/urn/oid.pm +18 -0
  416. data/Slic3r/Linux/lib/std/Wx.pm +394 -0
  417. data/Slic3r/Linux/lib/std/Wx/App.pm +54 -0
  418. data/Slic3r/Linux/lib/std/Wx/DND.pm +74 -0
  419. data/Slic3r/Linux/lib/std/Wx/DropSource.pm +33 -0
  420. data/Slic3r/Linux/lib/std/Wx/Event.pm +469 -0
  421. data/Slic3r/Linux/lib/std/Wx/GLCanvas.pm +84 -0
  422. data/Slic3r/Linux/lib/std/Wx/Grid.pm +128 -0
  423. data/Slic3r/Linux/lib/std/Wx/Html.pm +67 -0
  424. data/Slic3r/Linux/lib/std/Wx/Locale.pm +61 -0
  425. data/Slic3r/Linux/lib/std/Wx/Menu.pm +74 -0
  426. data/Slic3r/Linux/lib/std/Wx/Mini.pm +181 -0
  427. data/Slic3r/Linux/lib/std/Wx/Print.pm +56 -0
  428. data/Slic3r/Linux/lib/std/Wx/RadioBox.pm +53 -0
  429. data/Slic3r/Linux/lib/std/Wx/Timer.pm +56 -0
  430. data/Slic3r/Linux/lib/std/Wx/Wx_Exp.pm +9494 -0
  431. data/Slic3r/Linux/lib/std/XML/NamespaceSupport.pm +583 -0
  432. data/Slic3r/Linux/lib/std/XML/SAX.pm +379 -0
  433. data/Slic3r/Linux/lib/std/XML/SAX/Base.pm +3176 -0
  434. data/Slic3r/Linux/lib/std/XML/SAX/BuildSAXBase.pl +847 -0
  435. data/Slic3r/Linux/lib/std/XML/SAX/DocumentLocator.pm +134 -0
  436. data/Slic3r/Linux/lib/std/XML/SAX/Exception.pm +129 -0
  437. data/Slic3r/Linux/lib/std/XML/SAX/ExpatXS.pm +354 -0
  438. data/Slic3r/Linux/lib/std/XML/SAX/ExpatXS/Encoding.pm +184 -0
  439. data/Slic3r/Linux/lib/std/XML/SAX/ExpatXS/Preload.pm +288 -0
  440. data/Slic3r/Linux/lib/std/XML/SAX/ParserDetails.ini +16 -0
  441. data/Slic3r/Linux/lib/std/XML/SAX/ParserFactory.pm +230 -0
  442. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl.pm +751 -0
  443. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/DTDDecls.pm +603 -0
  444. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/DebugHandler.pm +95 -0
  445. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/DocType.pm +180 -0
  446. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/EncodingDetect.pm +105 -0
  447. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Exception.pm +67 -0
  448. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/NoUnicodeExt.pm +28 -0
  449. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Productions.pm +147 -0
  450. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader.pm +136 -0
  451. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/NoUnicodeExt.pm +25 -0
  452. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/Stream.pm +84 -0
  453. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/String.pm +78 -0
  454. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/URI.pm +57 -0
  455. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/Reader/UnicodeExt.pm +23 -0
  456. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/UnicodeExt.pm +22 -0
  457. data/Slic3r/Linux/lib/std/XML/SAX/PurePerl/XMLDecl.pm +129 -0
  458. data/Slic3r/Linux/lib/std/attributes.pm +490 -0
  459. data/Slic3r/Linux/lib/std/auto/B/B.so +0 -0
  460. data/Slic3r/Linux/lib/std/auto/Class/XSAccessor/XSAccessor.so +0 -0
  461. data/Slic3r/Linux/lib/std/auto/Compress/Raw/Bzip2/Bzip2.so +0 -0
  462. data/Slic3r/Linux/lib/std/auto/Compress/Raw/Bzip2/autosplit.ix +3 -0
  463. data/Slic3r/Linux/lib/std/auto/Compress/Raw/Zlib/Zlib.so +0 -0
  464. data/Slic3r/Linux/lib/std/auto/Compress/Raw/Zlib/autosplit.ix +3 -0
  465. data/Slic3r/Linux/lib/std/auto/Crypt/SSLeay/SSLeay.so +0 -0
  466. data/Slic3r/Linux/lib/std/auto/Cwd/Cwd.so +0 -0
  467. data/Slic3r/Linux/lib/std/auto/Data/Dumper/Dumper.so +0 -0
  468. data/Slic3r/Linux/lib/std/auto/Data/UUID/UUID.so +0 -0
  469. data/Slic3r/Linux/lib/std/auto/Digest/MD5/MD5.so +0 -0
  470. data/Slic3r/Linux/lib/std/auto/Digest/SHA/SHA.so +0 -0
  471. data/Slic3r/Linux/lib/std/auto/Encode/Byte/Byte.so +0 -0
  472. data/Slic3r/Linux/lib/std/auto/Encode/CN/CN.so +0 -0
  473. data/Slic3r/Linux/lib/std/auto/Encode/EBCDIC/EBCDIC.so +0 -0
  474. data/Slic3r/Linux/lib/std/auto/Encode/Encode.so +0 -0
  475. data/Slic3r/Linux/lib/std/auto/Encode/JP/JP.so +0 -0
  476. data/Slic3r/Linux/lib/std/auto/Encode/KR/KR.so +0 -0
  477. data/Slic3r/Linux/lib/std/auto/Encode/Symbol/Symbol.so +0 -0
  478. data/Slic3r/Linux/lib/std/auto/Encode/TW/TW.so +0 -0
  479. data/Slic3r/Linux/lib/std/auto/Encode/Unicode/Unicode.so +0 -0
  480. data/Slic3r/Linux/lib/std/auto/Fcntl/Fcntl.so +0 -0
  481. data/Slic3r/Linux/lib/std/auto/File/Glob/Glob.so +0 -0
  482. data/Slic3r/Linux/lib/std/auto/Filter/Util/Call/Call.so +0 -0
  483. data/Slic3r/Linux/lib/std/auto/HTML/Parser/Parser.so +0 -0
  484. data/Slic3r/Linux/lib/std/auto/I18N/Langinfo/Langinfo.so +0 -0
  485. data/Slic3r/Linux/lib/std/auto/IO/IO.so +0 -0
  486. data/Slic3r/Linux/lib/std/auto/List/Util/Util.so +0 -0
  487. data/Slic3r/Linux/lib/std/auto/MIME/Base64/Base64.so +0 -0
  488. data/Slic3r/Linux/lib/std/auto/Math/BigInt/FastCalc/FastCalc.so +0 -0
  489. data/Slic3r/Linux/lib/std/auto/Math/Libm/Libm.so +0 -0
  490. data/Slic3r/Linux/lib/std/auto/Math/Libm/autosplit.ix +3 -0
  491. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/SSLeay.so +0 -0
  492. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/autosplit.ix +78 -0
  493. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/debug_read.al +22 -0
  494. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_https.al +18 -0
  495. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_https2.al +13 -0
  496. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_https3.al +13 -0
  497. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_https4.al +12 -0
  498. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_httpx2.al +18 -0
  499. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_httpx3.al +43 -0
  500. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/do_httpx4.al +19 -0
  501. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/dump_peer_certificate.al +29 -0
  502. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_http.al +9 -0
  503. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_http3.al +9 -0
  504. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_http4.al +9 -0
  505. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_https.al +9 -0
  506. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_https3.al +9 -0
  507. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_https4.al +9 -0
  508. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_httpx.al +9 -0
  509. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_httpx3.al +9 -0
  510. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/get_httpx4.al +9 -0
  511. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_http.al +10 -0
  512. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_http3.al +10 -0
  513. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_http4.al +12 -0
  514. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_https.al +10 -0
  515. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_https3.al +10 -0
  516. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_https4.al +12 -0
  517. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_httpx.al +10 -0
  518. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_httpx3.al +10 -0
  519. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/head_httpx4.al +13 -0
  520. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/http_cat.al +34 -0
  521. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/https_cat.al +97 -0
  522. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/httpx_cat.al +18 -0
  523. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/make_form.al +25 -0
  524. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/make_headers.al +21 -0
  525. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/new_x_ctx.al +16 -0
  526. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/open_proxy_tcp_connection.al +31 -0
  527. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/open_tcp_connection.al +40 -0
  528. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_http.al +9 -0
  529. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_http3.al +9 -0
  530. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_http4.al +9 -0
  531. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_https.al +9 -0
  532. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_https3.al +9 -0
  533. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_https4.al +9 -0
  534. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_httpx.al +9 -0
  535. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_httpx3.al +9 -0
  536. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/post_httpx4.al +9 -0
  537. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_http.al +9 -0
  538. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_http3.al +9 -0
  539. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_http4.al +9 -0
  540. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_https.al +9 -0
  541. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_https3.al +9 -0
  542. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_https4.al +9 -0
  543. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_httpx.al +9 -0
  544. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_httpx3.al +9 -0
  545. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/put_httpx4.al +9 -0
  546. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/randomize.al +31 -0
  547. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/set_cert_and_key.al +23 -0
  548. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/set_proxy.al +16 -0
  549. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/set_server_cert_and_key.al +14 -0
  550. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_read_CRLF.al +10 -0
  551. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_read_all.al +28 -0
  552. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_read_until.al +95 -0
  553. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_write_CRLF.al +23 -0
  554. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/ssl_write_all.al +149 -0
  555. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/sslcat.al +99 -0
  556. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_read_CRLF.al +11 -0
  557. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_read_all.al +26 -0
  558. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_read_until.al +34 -0
  559. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_write_CRLF.al +23 -0
  560. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcp_write_all.al +36 -0
  561. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcpcat.al +37 -0
  562. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/tcpxcat.al +17 -0
  563. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/want_X509_lookup.al +15 -0
  564. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/want_nothing.al +16 -0
  565. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/want_read.al +9 -0
  566. data/Slic3r/Linux/lib/std/auto/Net/SSLeay/want_write.al +9 -0
  567. data/Slic3r/Linux/lib/std/auto/OpenGL/OpenGL.so +0 -0
  568. data/Slic3r/Linux/lib/std/auto/OpenGL/autosplit.ix +3 -0
  569. data/Slic3r/Linux/lib/std/auto/POSIX/POSIX.so +0 -0
  570. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/flags.al +9 -0
  571. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/handler.al +9 -0
  572. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/mask.al +9 -0
  573. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/new.al +11 -0
  574. data/Slic3r/Linux/lib/std/auto/POSIX/SigAction/safe.al +13 -0
  575. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/CLEAR.al +9 -0
  576. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/DELETE.al +9 -0
  577. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/EXISTS.al +9 -0
  578. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/FETCH.al +12 -0
  579. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/SCALAR.al +9 -0
  580. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/STORE.al +9 -0
  581. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_check.al +15 -0
  582. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_croak.al +13 -0
  583. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_exist.al +14 -0
  584. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_getsig.al +17 -0
  585. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/_init.al +14 -0
  586. data/Slic3r/Linux/lib/std/auto/POSIX/SigRt/new.al +17 -0
  587. data/Slic3r/Linux/lib/std/auto/POSIX/abs.al +13 -0
  588. data/Slic3r/Linux/lib/std/auto/POSIX/alarm.al +13 -0
  589. data/Slic3r/Linux/lib/std/auto/POSIX/assert.al +15 -0
  590. data/Slic3r/Linux/lib/std/auto/POSIX/atan2.al +13 -0
  591. data/Slic3r/Linux/lib/std/auto/POSIX/atexit.al +12 -0
  592. data/Slic3r/Linux/lib/std/auto/POSIX/atof.al +12 -0
  593. data/Slic3r/Linux/lib/std/auto/POSIX/atoi.al +12 -0
  594. data/Slic3r/Linux/lib/std/auto/POSIX/atol.al +12 -0
  595. data/Slic3r/Linux/lib/std/auto/POSIX/autosplit.ix +173 -0
  596. data/Slic3r/Linux/lib/std/auto/POSIX/bsearch.al +12 -0
  597. data/Slic3r/Linux/lib/std/auto/POSIX/calloc.al +12 -0
  598. data/Slic3r/Linux/lib/std/auto/POSIX/chdir.al +13 -0
  599. data/Slic3r/Linux/lib/std/auto/POSIX/chmod.al +13 -0
  600. data/Slic3r/Linux/lib/std/auto/POSIX/chown.al +13 -0
  601. data/Slic3r/Linux/lib/std/auto/POSIX/clearerr.al +12 -0
  602. data/Slic3r/Linux/lib/std/auto/POSIX/closedir.al +13 -0
  603. data/Slic3r/Linux/lib/std/auto/POSIX/cos.al +13 -0
  604. data/Slic3r/Linux/lib/std/auto/POSIX/creat.al +13 -0
  605. data/Slic3r/Linux/lib/std/auto/POSIX/div.al +12 -0
  606. data/Slic3r/Linux/lib/std/auto/POSIX/errno.al +13 -0
  607. data/Slic3r/Linux/lib/std/auto/POSIX/execl.al +12 -0
  608. data/Slic3r/Linux/lib/std/auto/POSIX/execle.al +12 -0
  609. data/Slic3r/Linux/lib/std/auto/POSIX/execlp.al +12 -0
  610. data/Slic3r/Linux/lib/std/auto/POSIX/execv.al +12 -0
  611. data/Slic3r/Linux/lib/std/auto/POSIX/execve.al +12 -0
  612. data/Slic3r/Linux/lib/std/auto/POSIX/execvp.al +12 -0
  613. data/Slic3r/Linux/lib/std/auto/POSIX/exit.al +13 -0
  614. data/Slic3r/Linux/lib/std/auto/POSIX/exp.al +13 -0
  615. data/Slic3r/Linux/lib/std/auto/POSIX/fabs.al +13 -0
  616. data/Slic3r/Linux/lib/std/auto/POSIX/fclose.al +12 -0
  617. data/Slic3r/Linux/lib/std/auto/POSIX/fcntl.al +13 -0
  618. data/Slic3r/Linux/lib/std/auto/POSIX/fdopen.al +12 -0
  619. data/Slic3r/Linux/lib/std/auto/POSIX/feof.al +12 -0
  620. data/Slic3r/Linux/lib/std/auto/POSIX/ferror.al +12 -0
  621. data/Slic3r/Linux/lib/std/auto/POSIX/fflush.al +12 -0
  622. data/Slic3r/Linux/lib/std/auto/POSIX/fgetc.al +12 -0
  623. data/Slic3r/Linux/lib/std/auto/POSIX/fgetpos.al +12 -0
  624. data/Slic3r/Linux/lib/std/auto/POSIX/fgets.al +12 -0
  625. data/Slic3r/Linux/lib/std/auto/POSIX/fileno.al +12 -0
  626. data/Slic3r/Linux/lib/std/auto/POSIX/fopen.al +12 -0
  627. data/Slic3r/Linux/lib/std/auto/POSIX/fork.al +13 -0
  628. data/Slic3r/Linux/lib/std/auto/POSIX/fprintf.al +12 -0
  629. data/Slic3r/Linux/lib/std/auto/POSIX/fputc.al +12 -0
  630. data/Slic3r/Linux/lib/std/auto/POSIX/fputs.al +12 -0
  631. data/Slic3r/Linux/lib/std/auto/POSIX/fread.al +12 -0
  632. data/Slic3r/Linux/lib/std/auto/POSIX/free.al +12 -0
  633. data/Slic3r/Linux/lib/std/auto/POSIX/freopen.al +12 -0
  634. data/Slic3r/Linux/lib/std/auto/POSIX/fscanf.al +12 -0
  635. data/Slic3r/Linux/lib/std/auto/POSIX/fseek.al +12 -0
  636. data/Slic3r/Linux/lib/std/auto/POSIX/fsetpos.al +12 -0
  637. data/Slic3r/Linux/lib/std/auto/POSIX/fstat.al +17 -0
  638. data/Slic3r/Linux/lib/std/auto/POSIX/fsync.al +12 -0
  639. data/Slic3r/Linux/lib/std/auto/POSIX/ftell.al +12 -0
  640. data/Slic3r/Linux/lib/std/auto/POSIX/fwrite.al +12 -0
  641. data/Slic3r/Linux/lib/std/auto/POSIX/getc.al +13 -0
  642. data/Slic3r/Linux/lib/std/auto/POSIX/getchar.al +13 -0
  643. data/Slic3r/Linux/lib/std/auto/POSIX/getegid.al +13 -0
  644. data/Slic3r/Linux/lib/std/auto/POSIX/getenv.al +13 -0
  645. data/Slic3r/Linux/lib/std/auto/POSIX/geteuid.al +13 -0
  646. data/Slic3r/Linux/lib/std/auto/POSIX/getgid.al +13 -0
  647. data/Slic3r/Linux/lib/std/auto/POSIX/getgrgid.al +13 -0
  648. data/Slic3r/Linux/lib/std/auto/POSIX/getgrnam.al +13 -0
  649. data/Slic3r/Linux/lib/std/auto/POSIX/getgroups.al +14 -0
  650. data/Slic3r/Linux/lib/std/auto/POSIX/getlogin.al +13 -0
  651. data/Slic3r/Linux/lib/std/auto/POSIX/getpgrp.al +13 -0
  652. data/Slic3r/Linux/lib/std/auto/POSIX/getpid.al +13 -0
  653. data/Slic3r/Linux/lib/std/auto/POSIX/getppid.al +13 -0
  654. data/Slic3r/Linux/lib/std/auto/POSIX/getpwnam.al +13 -0
  655. data/Slic3r/Linux/lib/std/auto/POSIX/getpwuid.al +13 -0
  656. data/Slic3r/Linux/lib/std/auto/POSIX/gets.al +13 -0
  657. data/Slic3r/Linux/lib/std/auto/POSIX/getuid.al +13 -0
  658. data/Slic3r/Linux/lib/std/auto/POSIX/gmtime.al +13 -0
  659. data/Slic3r/Linux/lib/std/auto/POSIX/isatty.al +13 -0
  660. data/Slic3r/Linux/lib/std/auto/POSIX/kill.al +13 -0
  661. data/Slic3r/Linux/lib/std/auto/POSIX/labs.al +12 -0
  662. data/Slic3r/Linux/lib/std/auto/POSIX/ldiv.al +12 -0
  663. data/Slic3r/Linux/lib/std/auto/POSIX/link.al +13 -0
  664. data/Slic3r/Linux/lib/std/auto/POSIX/load_imports.al +231 -0
  665. data/Slic3r/Linux/lib/std/auto/POSIX/localtime.al +13 -0
  666. data/Slic3r/Linux/lib/std/auto/POSIX/log.al +13 -0
  667. data/Slic3r/Linux/lib/std/auto/POSIX/longjmp.al +12 -0
  668. data/Slic3r/Linux/lib/std/auto/POSIX/malloc.al +12 -0
  669. data/Slic3r/Linux/lib/std/auto/POSIX/memchr.al +12 -0
  670. data/Slic3r/Linux/lib/std/auto/POSIX/memcmp.al +12 -0
  671. data/Slic3r/Linux/lib/std/auto/POSIX/memcpy.al +12 -0
  672. data/Slic3r/Linux/lib/std/auto/POSIX/memmove.al +12 -0
  673. data/Slic3r/Linux/lib/std/auto/POSIX/memset.al +12 -0
  674. data/Slic3r/Linux/lib/std/auto/POSIX/mkdir.al +13 -0
  675. data/Slic3r/Linux/lib/std/auto/POSIX/offsetof.al +12 -0
  676. data/Slic3r/Linux/lib/std/auto/POSIX/opendir.al +16 -0
  677. data/Slic3r/Linux/lib/std/auto/POSIX/perror.al +13 -0
  678. data/Slic3r/Linux/lib/std/auto/POSIX/pow.al +13 -0
  679. data/Slic3r/Linux/lib/std/auto/POSIX/printf.al +13 -0
  680. data/Slic3r/Linux/lib/std/auto/POSIX/putc.al +12 -0
  681. data/Slic3r/Linux/lib/std/auto/POSIX/putchar.al +12 -0
  682. data/Slic3r/Linux/lib/std/auto/POSIX/puts.al +12 -0
  683. data/Slic3r/Linux/lib/std/auto/POSIX/qsort.al +12 -0
  684. data/Slic3r/Linux/lib/std/auto/POSIX/raise.al +13 -0
  685. data/Slic3r/Linux/lib/std/auto/POSIX/rand.al +12 -0
  686. data/Slic3r/Linux/lib/std/auto/POSIX/readdir.al +13 -0
  687. data/Slic3r/Linux/lib/std/auto/POSIX/realloc.al +12 -0
  688. data/Slic3r/Linux/lib/std/auto/POSIX/redef.al +13 -0
  689. data/Slic3r/Linux/lib/std/auto/POSIX/remove.al +13 -0
  690. data/Slic3r/Linux/lib/std/auto/POSIX/rename.al +13 -0
  691. data/Slic3r/Linux/lib/std/auto/POSIX/rewind.al +13 -0
  692. data/Slic3r/Linux/lib/std/auto/POSIX/rewinddir.al +13 -0
  693. data/Slic3r/Linux/lib/std/auto/POSIX/rmdir.al +13 -0
  694. data/Slic3r/Linux/lib/std/auto/POSIX/scanf.al +12 -0
  695. data/Slic3r/Linux/lib/std/auto/POSIX/setbuf.al +12 -0
  696. data/Slic3r/Linux/lib/std/auto/POSIX/setjmp.al +12 -0
  697. data/Slic3r/Linux/lib/std/auto/POSIX/setvbuf.al +12 -0
  698. data/Slic3r/Linux/lib/std/auto/POSIX/siglongjmp.al +12 -0
  699. data/Slic3r/Linux/lib/std/auto/POSIX/sigsetjmp.al +12 -0
  700. data/Slic3r/Linux/lib/std/auto/POSIX/sin.al +13 -0
  701. data/Slic3r/Linux/lib/std/auto/POSIX/sleep.al +13 -0
  702. data/Slic3r/Linux/lib/std/auto/POSIX/sprintf.al +13 -0
  703. data/Slic3r/Linux/lib/std/auto/POSIX/sqrt.al +13 -0
  704. data/Slic3r/Linux/lib/std/auto/POSIX/srand.al +12 -0
  705. data/Slic3r/Linux/lib/std/auto/POSIX/sscanf.al +12 -0
  706. data/Slic3r/Linux/lib/std/auto/POSIX/stat.al +13 -0
  707. data/Slic3r/Linux/lib/std/auto/POSIX/strcat.al +12 -0
  708. data/Slic3r/Linux/lib/std/auto/POSIX/strchr.al +12 -0
  709. data/Slic3r/Linux/lib/std/auto/POSIX/strcmp.al +12 -0
  710. data/Slic3r/Linux/lib/std/auto/POSIX/strcpy.al +12 -0
  711. data/Slic3r/Linux/lib/std/auto/POSIX/strcspn.al +12 -0
  712. data/Slic3r/Linux/lib/std/auto/POSIX/strerror.al +14 -0
  713. data/Slic3r/Linux/lib/std/auto/POSIX/strlen.al +12 -0
  714. data/Slic3r/Linux/lib/std/auto/POSIX/strncat.al +12 -0
  715. data/Slic3r/Linux/lib/std/auto/POSIX/strncmp.al +12 -0
  716. data/Slic3r/Linux/lib/std/auto/POSIX/strncpy.al +12 -0
  717. data/Slic3r/Linux/lib/std/auto/POSIX/strpbrk.al +12 -0
  718. data/Slic3r/Linux/lib/std/auto/POSIX/strrchr.al +12 -0
  719. data/Slic3r/Linux/lib/std/auto/POSIX/strspn.al +12 -0
  720. data/Slic3r/Linux/lib/std/auto/POSIX/strstr.al +13 -0
  721. data/Slic3r/Linux/lib/std/auto/POSIX/strtok.al +12 -0
  722. data/Slic3r/Linux/lib/std/auto/POSIX/system.al +13 -0
  723. data/Slic3r/Linux/lib/std/auto/POSIX/time.al +13 -0
  724. data/Slic3r/Linux/lib/std/auto/POSIX/tmpfile.al +12 -0
  725. data/Slic3r/Linux/lib/std/auto/POSIX/tolower.al +13 -0
  726. data/Slic3r/Linux/lib/std/auto/POSIX/toupper.al +13 -0
  727. data/Slic3r/Linux/lib/std/auto/POSIX/umask.al +13 -0
  728. data/Slic3r/Linux/lib/std/auto/POSIX/ungetc.al +12 -0
  729. data/Slic3r/Linux/lib/std/auto/POSIX/unimpl.al +14 -0
  730. data/Slic3r/Linux/lib/std/auto/POSIX/unlink.al +13 -0
  731. data/Slic3r/Linux/lib/std/auto/POSIX/usage.al +13 -0
  732. data/Slic3r/Linux/lib/std/auto/POSIX/utime.al +13 -0
  733. data/Slic3r/Linux/lib/std/auto/POSIX/vfprintf.al +12 -0
  734. data/Slic3r/Linux/lib/std/auto/POSIX/vprintf.al +12 -0
  735. data/Slic3r/Linux/lib/std/auto/POSIX/vsprintf.al +12 -0
  736. data/Slic3r/Linux/lib/std/auto/POSIX/wait.al +13 -0
  737. data/Slic3r/Linux/lib/std/auto/POSIX/waitpid.al +13 -0
  738. data/Slic3r/Linux/lib/std/auto/Params/Validate/XS/XS.so +0 -0
  739. data/Slic3r/Linux/lib/std/auto/PerlIO/encoding/encoding.so +0 -0
  740. data/Slic3r/Linux/lib/std/auto/PerlIO/scalar/scalar.so +0 -0
  741. data/Slic3r/Linux/lib/std/auto/PerlIO/via/via.so +0 -0
  742. data/Slic3r/Linux/lib/std/auto/Slic3r/XS/XS.so +0 -0
  743. data/Slic3r/Linux/lib/std/auto/Socket/Socket.so +0 -0
  744. data/Slic3r/Linux/lib/std/auto/Storable/Storable.so +0 -0
  745. data/Slic3r/Linux/lib/std/auto/Tie/Hash/NamedCapture/NamedCapture.so +0 -0
  746. data/Slic3r/Linux/lib/std/auto/Time/HiRes/HiRes.so +0 -0
  747. data/Slic3r/Linux/lib/std/auto/Wx/DND/DND.so +0 -0
  748. data/Slic3r/Linux/lib/std/auto/Wx/GLCanvas/GLCanvas.so +0 -0
  749. data/Slic3r/Linux/lib/std/auto/Wx/Grid/Grid.so +0 -0
  750. data/Slic3r/Linux/lib/std/auto/Wx/Html/Html.so +0 -0
  751. data/Slic3r/Linux/lib/std/auto/Wx/Print/Print.so +0 -0
  752. data/Slic3r/Linux/lib/std/auto/Wx/Wx.so +0 -0
  753. data/Slic3r/Linux/lib/std/auto/XML/SAX/ExpatXS/ExpatXS.so +0 -0
  754. data/Slic3r/Linux/lib/std/auto/attributes/attributes.so +0 -0
  755. data/Slic3r/Linux/lib/std/auto/mro/mro.so +0 -0
  756. data/Slic3r/Linux/lib/std/auto/re/re.so +0 -0
  757. data/Slic3r/Linux/lib/std/auto/threads/shared/shared.so +0 -0
  758. data/Slic3r/Linux/lib/std/auto/threads/threads.so +0 -0
  759. data/Slic3r/Linux/lib/std/base.pm +265 -0
  760. data/Slic3r/Linux/lib/std/bytes.pm +100 -0
  761. data/Slic3r/Linux/lib/std/bytes_heavy.pl +40 -0
  762. data/Slic3r/Linux/lib/std/constant.pm +397 -0
  763. data/Slic3r/Linux/lib/std/constant/defer.pm +441 -0
  764. data/Slic3r/Linux/lib/std/encoding.pm +669 -0
  765. data/Slic3r/Linux/lib/std/encoding/warnings.pm +239 -0
  766. data/Slic3r/Linux/lib/std/feature.pm +249 -0
  767. data/Slic3r/Linux/lib/std/filetest.pm +117 -0
  768. data/Slic3r/Linux/lib/std/integer.pm +93 -0
  769. data/Slic3r/Linux/lib/std/less.pm +158 -0
  770. data/Slic3r/Linux/lib/std/mro.pm +363 -0
  771. data/Slic3r/Linux/lib/std/overload.pm +1701 -0
  772. data/Slic3r/Linux/lib/std/parent.pm +136 -0
  773. data/Slic3r/Linux/lib/std/re.pm +604 -0
  774. data/Slic3r/Linux/lib/std/slic3r.pl +491 -0
  775. data/Slic3r/Linux/lib/std/sort.pm +196 -0
  776. data/Slic3r/Linux/lib/std/strictures.pm +296 -0
  777. data/Slic3r/Linux/lib/std/threads.pm +1115 -0
  778. data/Slic3r/Linux/lib/std/threads/shared.pm +616 -0
  779. data/Slic3r/Linux/lib/std/unicore/Heavy.pl +3261 -0
  780. data/Slic3r/Linux/lib/std/unicore/To/Age.pl +1036 -0
  781. data/Slic3r/Linux/lib/std/unicore/To/Bc.pl +555 -0
  782. data/Slic3r/Linux/lib/std/unicore/To/Bmg.pl +375 -0
  783. data/Slic3r/Linux/lib/std/unicore/To/Digit.pl +433 -0
  784. data/Slic3r/Linux/lib/std/unicore/To/Dt.pl +759 -0
  785. data/Slic3r/Linux/lib/std/unicore/To/Ea.pl +245 -0
  786. data/Slic3r/Linux/lib/std/unicore/To/Fold.pl +1177 -0
  787. data/Slic3r/Linux/lib/std/unicore/To/GCB.pl +1177 -0
  788. data/Slic3r/Linux/lib/std/unicore/To/Gc.pl +2639 -0
  789. data/Slic3r/Linux/lib/std/unicore/To/Hst.pl +822 -0
  790. data/Slic3r/Linux/lib/std/unicore/To/Jg.pl +144 -0
  791. data/Slic3r/Linux/lib/std/unicore/To/Jt.pl +292 -0
  792. data/Slic3r/Linux/lib/std/unicore/To/Lb.pl +2195 -0
  793. data/Slic3r/Linux/lib/std/unicore/To/Lower.pl +1061 -0
  794. data/Slic3r/Linux/lib/std/unicore/To/NFCQC.pl +126 -0
  795. data/Slic3r/Linux/lib/std/unicore/To/NFDQC.pl +245 -0
  796. data/Slic3r/Linux/lib/std/unicore/To/NFKCCF.pl +9815 -0
  797. data/Slic3r/Linux/lib/std/unicore/To/NFKCQC.pl +265 -0
  798. data/Slic3r/Linux/lib/std/unicore/To/NFKDQC.pl +367 -0
  799. data/Slic3r/Linux/lib/std/unicore/To/Na1.pl +1996 -0
  800. data/Slic3r/Linux/lib/std/unicore/To/Nt.pl +198 -0
  801. data/Slic3r/Linux/lib/std/unicore/To/Nv.pl +1157 -0
  802. data/Slic3r/Linux/lib/std/unicore/To/SB.pl +1958 -0
  803. data/Slic3r/Linux/lib/std/unicore/To/Sc.pl +702 -0
  804. data/Slic3r/Linux/lib/std/unicore/To/Title.pl +1117 -0
  805. data/Slic3r/Linux/lib/std/unicore/To/Upper.pl +1144 -0
  806. data/Slic3r/Linux/lib/std/unicore/To/WB.pl +691 -0
  807. data/Slic3r/Linux/lib/std/unicore/To/_slc.pl +46 -0
  808. data/Slic3r/Linux/lib/std/unicore/To/_stc.pl +45 -0
  809. data/Slic3r/Linux/lib/std/unicore/To/_suc.pl +45 -0
  810. data/Slic3r/Linux/lib/std/unicore/lib/AHex/N.pl +16 -0
  811. data/Slic3r/Linux/lib/std/unicore/lib/AHex/Y.pl +15 -0
  812. data/Slic3r/Linux/lib/std/unicore/lib/Age/1_1.pl +300 -0
  813. data/Slic3r/Linux/lib/std/unicore/lib/Age/2_0.pl +41 -0
  814. data/Slic3r/Linux/lib/std/unicore/lib/Age/2_1.pl +14 -0
  815. data/Slic3r/Linux/lib/std/unicore/lib/Age/3_0.pl +133 -0
  816. data/Slic3r/Linux/lib/std/unicore/lib/Age/3_1.pl +48 -0
  817. data/Slic3r/Linux/lib/std/unicore/lib/Age/3_2.pl +71 -0
  818. data/Slic3r/Linux/lib/std/unicore/lib/Age/4_0.pl +89 -0
  819. data/Slic3r/Linux/lib/std/unicore/lib/Age/4_1.pl +98 -0
  820. data/Slic3r/Linux/lib/std/unicore/lib/Age/5_0.pl +47 -0
  821. data/Slic3r/Linux/lib/std/unicore/lib/Age/5_1.pl +101 -0
  822. data/Slic3r/Linux/lib/std/unicore/lib/Age/5_2.pl +102 -0
  823. data/Slic3r/Linux/lib/std/unicore/lib/Age/6_0.pl +118 -0
  824. data/Slic3r/Linux/lib/std/unicore/lib/Age/Unassign.pl +522 -0
  825. data/Slic3r/Linux/lib/std/unicore/lib/Alpha/N.pl +499 -0
  826. data/Slic3r/Linux/lib/std/unicore/lib/Alpha/Y.pl +498 -0
  827. data/Slic3r/Linux/lib/std/unicore/lib/Bc/AL.pl +30 -0
  828. data/Slic3r/Linux/lib/std/unicore/lib/Bc/AN.pl +17 -0
  829. data/Slic3r/Linux/lib/std/unicore/lib/Bc/B.pl +17 -0
  830. data/Slic3r/Linux/lib/std/unicore/lib/Bc/BN.pl +41 -0
  831. data/Slic3r/Linux/lib/std/unicore/lib/Bc/CS.pl +25 -0
  832. data/Slic3r/Linux/lib/std/unicore/lib/Bc/EN.pl +23 -0
  833. data/Slic3r/Linux/lib/std/unicore/lib/Bc/ES.pl +21 -0
  834. data/Slic3r/Linux/lib/std/unicore/lib/Bc/ET.pl +33 -0
  835. data/Slic3r/Linux/lib/std/unicore/lib/Bc/L.pl +358 -0
  836. data/Slic3r/Linux/lib/std/unicore/lib/Bc/LRE.pl +13 -0
  837. data/Slic3r/Linux/lib/std/unicore/lib/Bc/LRO.pl +13 -0
  838. data/Slic3r/Linux/lib/std/unicore/lib/Bc/NSM.pl +211 -0
  839. data/Slic3r/Linux/lib/std/unicore/lib/Bc/ON.pl +195 -0
  840. data/Slic3r/Linux/lib/std/unicore/lib/Bc/PDF.pl +13 -0
  841. data/Slic3r/Linux/lib/std/unicore/lib/Bc/R.pl +40 -0
  842. data/Slic3r/Linux/lib/std/unicore/lib/Bc/RLE.pl +13 -0
  843. data/Slic3r/Linux/lib/std/unicore/lib/Bc/RLO.pl +13 -0
  844. data/Slic3r/Linux/lib/std/unicore/lib/Bc/S.pl +15 -0
  845. data/Slic3r/Linux/lib/std/unicore/lib/Bc/WS.pl +20 -0
  846. data/Slic3r/Linux/lib/std/unicore/lib/BidiC/N.pl +15 -0
  847. data/Slic3r/Linux/lib/std/unicore/lib/BidiC/Y.pl +14 -0
  848. data/Slic3r/Linux/lib/std/unicore/lib/BidiM/N.pl +124 -0
  849. data/Slic3r/Linux/lib/std/unicore/lib/BidiM/Y.pl +123 -0
  850. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ASCII.pl +13 -0
  851. data/Slic3r/Linux/lib/std/unicore/lib/Blk/AegeanNu.pl +13 -0
  852. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Alchemic.pl +13 -0
  853. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Alphabet.pl +13 -0
  854. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ancient2.pl +13 -0
  855. data/Slic3r/Linux/lib/std/unicore/lib/Blk/AncientG.pl +13 -0
  856. data/Slic3r/Linux/lib/std/unicore/lib/Blk/AncientS.pl +13 -0
  857. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Arabic.pl +13 -0
  858. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ArabicP2.pl +13 -0
  859. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ArabicPr.pl +13 -0
  860. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ArabicSu.pl +13 -0
  861. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Armenian.pl +13 -0
  862. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Arrows.pl +13 -0
  863. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Avestan.pl +13 -0
  864. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Balinese.pl +13 -0
  865. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Bamum.pl +13 -0
  866. data/Slic3r/Linux/lib/std/unicore/lib/Blk/BamumSup.pl +13 -0
  867. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Batak.pl +13 -0
  868. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Bengali.pl +13 -0
  869. data/Slic3r/Linux/lib/std/unicore/lib/Blk/BlockEle.pl +13 -0
  870. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Bopomof2.pl +13 -0
  871. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Bopomofo.pl +13 -0
  872. data/Slic3r/Linux/lib/std/unicore/lib/Blk/BoxDrawi.pl +13 -0
  873. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Brahmi.pl +13 -0
  874. data/Slic3r/Linux/lib/std/unicore/lib/Blk/BrailleP.pl +13 -0
  875. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Buginese.pl +13 -0
  876. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Buhid.pl +13 -0
  877. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Byzantin.pl +13 -0
  878. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKComp2.pl +13 -0
  879. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKComp3.pl +13 -0
  880. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKComp4.pl +13 -0
  881. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKCompa.pl +13 -0
  882. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKRadic.pl +13 -0
  883. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKStrok.pl +13 -0
  884. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKSymbo.pl +13 -0
  885. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnif2.pl +13 -0
  886. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnif3.pl +13 -0
  887. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnif4.pl +13 -0
  888. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnif5.pl +13 -0
  889. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CJKUnifi.pl +13 -0
  890. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Canadian.pl +13 -0
  891. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Carian.pl +13 -0
  892. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cham.pl +13 -0
  893. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cherokee.pl +13 -0
  894. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Combini2.pl +13 -0
  895. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Combini3.pl +13 -0
  896. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Combini4.pl +13 -0
  897. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Combinin.pl +13 -0
  898. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CommonIn.pl +13 -0
  899. data/Slic3r/Linux/lib/std/unicore/lib/Blk/ControlP.pl +13 -0
  900. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Coptic.pl +13 -0
  901. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Counting.pl +13 -0
  902. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cuneifo2.pl +13 -0
  903. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cuneifor.pl +13 -0
  904. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Currency.pl +13 -0
  905. data/Slic3r/Linux/lib/std/unicore/lib/Blk/CypriotS.pl +13 -0
  906. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cyrilli2.pl +13 -0
  907. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cyrilli3.pl +13 -0
  908. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cyrilli4.pl +13 -0
  909. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Cyrillic.pl +13 -0
  910. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Deseret.pl +13 -0
  911. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Devanag2.pl +13 -0
  912. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Devanaga.pl +13 -0
  913. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Dingbats.pl +13 -0
  914. data/Slic3r/Linux/lib/std/unicore/lib/Blk/DominoTi.pl +13 -0
  915. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Egyptian.pl +13 -0
  916. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Emoticon.pl +13 -0
  917. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Enclose2.pl +13 -0
  918. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Enclose3.pl +13 -0
  919. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Enclose4.pl +13 -0
  920. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Enclosed.pl +13 -0
  921. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ethiopi2.pl +13 -0
  922. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ethiopi3.pl +13 -0
  923. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ethiopi4.pl +13 -0
  924. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ethiopic.pl +13 -0
  925. data/Slic3r/Linux/lib/std/unicore/lib/Blk/GeneralP.pl +13 -0
  926. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Geometri.pl +13 -0
  927. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Georgia2.pl +13 -0
  928. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Georgian.pl +13 -0
  929. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Glagolit.pl +13 -0
  930. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Gothic.pl +13 -0
  931. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Greek.pl +13 -0
  932. data/Slic3r/Linux/lib/std/unicore/lib/Blk/GreekExt.pl +13 -0
  933. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Gujarati.pl +13 -0
  934. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Gurmukhi.pl +13 -0
  935. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Halfwidt.pl +13 -0
  936. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulCo.pl +13 -0
  937. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulJ2.pl +13 -0
  938. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulJ3.pl +13 -0
  939. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulJa.pl +13 -0
  940. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HangulSy.pl +13 -0
  941. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Hanunoo.pl +13 -0
  942. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Hebrew.pl +13 -0
  943. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HighPriv.pl +13 -0
  944. data/Slic3r/Linux/lib/std/unicore/lib/Blk/HighSurr.pl +13 -0
  945. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Hiragana.pl +13 -0
  946. data/Slic3r/Linux/lib/std/unicore/lib/Blk/IPAExten.pl +13 -0
  947. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ideograp.pl +13 -0
  948. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Imperial.pl +13 -0
  949. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Inscrip2.pl +13 -0
  950. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Inscript.pl +13 -0
  951. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Javanese.pl +13 -0
  952. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Kaithi.pl +13 -0
  953. data/Slic3r/Linux/lib/std/unicore/lib/Blk/KanaSupp.pl +13 -0
  954. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Kanbun.pl +13 -0
  955. data/Slic3r/Linux/lib/std/unicore/lib/Blk/KangxiRa.pl +13 -0
  956. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Kannada.pl +13 -0
  957. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Katakan2.pl +13 -0
  958. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Katakana.pl +13 -0
  959. data/Slic3r/Linux/lib/std/unicore/lib/Blk/KayahLi.pl +13 -0
  960. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Kharosht.pl +13 -0
  961. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Khmer.pl +13 -0
  962. data/Slic3r/Linux/lib/std/unicore/lib/Blk/KhmerSym.pl +13 -0
  963. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lao.pl +13 -0
  964. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Latin1.pl +13 -0
  965. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinEx2.pl +13 -0
  966. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinEx3.pl +13 -0
  967. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinEx4.pl +13 -0
  968. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinEx5.pl +13 -0
  969. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LatinExt.pl +13 -0
  970. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lepcha.pl +13 -0
  971. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Letterli.pl +13 -0
  972. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Limbu.pl +13 -0
  973. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LinearBI.pl +13 -0
  974. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LinearBS.pl +13 -0
  975. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lisu.pl +13 -0
  976. data/Slic3r/Linux/lib/std/unicore/lib/Blk/LowSurro.pl +13 -0
  977. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lycian.pl +13 -0
  978. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Lydian.pl +13 -0
  979. data/Slic3r/Linux/lib/std/unicore/lib/Blk/MahjongT.pl +13 -0
  980. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Malayala.pl +13 -0
  981. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Mandaic.pl +13 -0
  982. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Mathema2.pl +13 -0
  983. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Mathemat.pl +13 -0
  984. data/Slic3r/Linux/lib/std/unicore/lib/Blk/MeeteiMa.pl +13 -0
  985. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell2.pl +13 -0
  986. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell3.pl +13 -0
  987. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell4.pl +13 -0
  988. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell5.pl +13 -0
  989. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscell6.pl +13 -0
  990. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Miscella.pl +13 -0
  991. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Modifier.pl +13 -0
  992. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Mongolia.pl +13 -0
  993. data/Slic3r/Linux/lib/std/unicore/lib/Blk/MusicalS.pl +13 -0
  994. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Myanmar.pl +13 -0
  995. data/Slic3r/Linux/lib/std/unicore/lib/Blk/MyanmarE.pl +13 -0
  996. data/Slic3r/Linux/lib/std/unicore/lib/Blk/NKo.pl +13 -0
  997. data/Slic3r/Linux/lib/std/unicore/lib/Blk/NewTaiLu.pl +13 -0
  998. data/Slic3r/Linux/lib/std/unicore/lib/Blk/NoBlock.pl +45 -0
  999. data/Slic3r/Linux/lib/std/unicore/lib/Blk/NumberFo.pl +13 -0
  1000. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ogham.pl +13 -0
  1001. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OlChiki.pl +13 -0
  1002. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OldItali.pl +13 -0
  1003. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OldPersi.pl +13 -0
  1004. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OldSouth.pl +13 -0
  1005. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OldTurki.pl +13 -0
  1006. data/Slic3r/Linux/lib/std/unicore/lib/Blk/OpticalC.pl +13 -0
  1007. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Oriya.pl +13 -0
  1008. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Osmanya.pl +13 -0
  1009. data/Slic3r/Linux/lib/std/unicore/lib/Blk/PhagsPa.pl +13 -0
  1010. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Phaistos.pl +13 -0
  1011. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Phoenici.pl +13 -0
  1012. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Phoneti2.pl +13 -0
  1013. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Phonetic.pl +13 -0
  1014. data/Slic3r/Linux/lib/std/unicore/lib/Blk/PlayingC.pl +13 -0
  1015. data/Slic3r/Linux/lib/std/unicore/lib/Blk/PrivateU.pl +13 -0
  1016. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Rejang.pl +13 -0
  1017. data/Slic3r/Linux/lib/std/unicore/lib/Blk/RumiNume.pl +13 -0
  1018. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Runic.pl +13 -0
  1019. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Samarita.pl +13 -0
  1020. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Saurasht.pl +13 -0
  1021. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Shavian.pl +13 -0
  1022. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Sinhala.pl +13 -0
  1023. data/Slic3r/Linux/lib/std/unicore/lib/Blk/SmallFor.pl +13 -0
  1024. data/Slic3r/Linux/lib/std/unicore/lib/Blk/SpacingM.pl +13 -0
  1025. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Specials.pl +13 -0
  1026. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Sundanes.pl +13 -0
  1027. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Superscr.pl +13 -0
  1028. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem2.pl +13 -0
  1029. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem3.pl +13 -0
  1030. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem4.pl +13 -0
  1031. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem5.pl +13 -0
  1032. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Supplem6.pl +13 -0
  1033. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Suppleme.pl +13 -0
  1034. data/Slic3r/Linux/lib/std/unicore/lib/Blk/SylotiNa.pl +13 -0
  1035. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Syriac.pl +13 -0
  1036. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tagalog.pl +13 -0
  1037. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tagbanwa.pl +13 -0
  1038. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tags.pl +13 -0
  1039. data/Slic3r/Linux/lib/std/unicore/lib/Blk/TaiLe.pl +13 -0
  1040. data/Slic3r/Linux/lib/std/unicore/lib/Blk/TaiTham.pl +13 -0
  1041. data/Slic3r/Linux/lib/std/unicore/lib/Blk/TaiViet.pl +13 -0
  1042. data/Slic3r/Linux/lib/std/unicore/lib/Blk/TaiXuanJ.pl +13 -0
  1043. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tamil.pl +13 -0
  1044. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Telugu.pl +13 -0
  1045. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Thaana.pl +13 -0
  1046. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Thai.pl +13 -0
  1047. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tibetan.pl +13 -0
  1048. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Tifinagh.pl +13 -0
  1049. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Transpor.pl +13 -0
  1050. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Ugaritic.pl +13 -0
  1051. data/Slic3r/Linux/lib/std/unicore/lib/Blk/UnifiedC.pl +13 -0
  1052. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Vai.pl +13 -0
  1053. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Variati2.pl +13 -0
  1054. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Variatio.pl +13 -0
  1055. data/Slic3r/Linux/lib/std/unicore/lib/Blk/VedicExt.pl +13 -0
  1056. data/Slic3r/Linux/lib/std/unicore/lib/Blk/Vertical.pl +13 -0
  1057. data/Slic3r/Linux/lib/std/unicore/lib/Blk/YiRadica.pl +13 -0
  1058. data/Slic3r/Linux/lib/std/unicore/lib/Blk/YiSyllab.pl +13 -0
  1059. data/Slic3r/Linux/lib/std/unicore/lib/Blk/YijingHe.pl +13 -0
  1060. data/Slic3r/Linux/lib/std/unicore/lib/CE/N.pl +46 -0
  1061. data/Slic3r/Linux/lib/std/unicore/lib/CE/Y.pl +45 -0
  1062. data/Slic3r/Linux/lib/std/unicore/lib/CI/N.pl +290 -0
  1063. data/Slic3r/Linux/lib/std/unicore/lib/CI/Y.pl +289 -0
  1064. data/Slic3r/Linux/lib/std/unicore/lib/CWCF/N.pl +590 -0
  1065. data/Slic3r/Linux/lib/std/unicore/lib/CWCF/Y.pl +589 -0
  1066. data/Slic3r/Linux/lib/std/unicore/lib/CWCM/N.pl +112 -0
  1067. data/Slic3r/Linux/lib/std/unicore/lib/CWCM/Y.pl +111 -0
  1068. data/Slic3r/Linux/lib/std/unicore/lib/CWKCF/N.pl +765 -0
  1069. data/Slic3r/Linux/lib/std/unicore/lib/CWKCF/Y.pl +764 -0
  1070. data/Slic3r/Linux/lib/std/unicore/lib/CWL/N.pl +579 -0
  1071. data/Slic3r/Linux/lib/std/unicore/lib/CWL/Y.pl +578 -0
  1072. data/Slic3r/Linux/lib/std/unicore/lib/CWT/N.pl +596 -0
  1073. data/Slic3r/Linux/lib/std/unicore/lib/CWT/Y.pl +595 -0
  1074. data/Slic3r/Linux/lib/std/unicore/lib/CWU/N.pl +595 -0
  1075. data/Slic3r/Linux/lib/std/unicore/lib/CWU/Y.pl +594 -0
  1076. data/Slic3r/Linux/lib/std/unicore/lib/Cased/N.pl +125 -0
  1077. data/Slic3r/Linux/lib/std/unicore/lib/Cased/Y.pl +124 -0
  1078. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/10.pl +13 -0
  1079. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/103.pl +13 -0
  1080. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/107.pl +13 -0
  1081. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/11.pl +13 -0
  1082. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/118.pl +13 -0
  1083. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/12.pl +13 -0
  1084. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/122.pl +13 -0
  1085. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/129.pl +13 -0
  1086. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/13.pl +13 -0
  1087. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/130.pl +15 -0
  1088. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/132.pl +13 -0
  1089. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/14.pl +13 -0
  1090. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/15.pl +13 -0
  1091. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/16.pl +13 -0
  1092. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/17.pl +13 -0
  1093. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/18.pl +14 -0
  1094. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/19.pl +13 -0
  1095. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/20.pl +13 -0
  1096. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/21.pl +13 -0
  1097. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/22.pl +13 -0
  1098. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/23.pl +13 -0
  1099. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/24.pl +13 -0
  1100. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/25.pl +13 -0
  1101. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/26.pl +13 -0
  1102. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/27.pl +13 -0
  1103. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/28.pl +13 -0
  1104. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/29.pl +13 -0
  1105. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/30.pl +14 -0
  1106. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/31.pl +14 -0
  1107. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/32.pl +14 -0
  1108. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/33.pl +13 -0
  1109. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/34.pl +13 -0
  1110. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/35.pl +13 -0
  1111. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/36.pl +13 -0
  1112. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/84.pl +13 -0
  1113. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/91.pl +13 -0
  1114. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/A.pl +96 -0
  1115. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/AL.pl +15 -0
  1116. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/AR.pl +16 -0
  1117. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/ATA.pl +13 -0
  1118. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/ATAR.pl +16 -0
  1119. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/ATB.pl +15 -0
  1120. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/ATBL.pl +13 -0
  1121. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/B.pl +71 -0
  1122. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/BL.pl +13 -0
  1123. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/BR.pl +16 -0
  1124. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/DA.pl +15 -0
  1125. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/DB.pl +16 -0
  1126. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/IS.pl +13 -0
  1127. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/KV.pl +13 -0
  1128. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/L.pl +13 -0
  1129. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/NK.pl +24 -0
  1130. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/NR.pl +135 -0
  1131. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/OV.pl +21 -0
  1132. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/R.pl +13 -0
  1133. data/Slic3r/Linux/lib/std/unicore/lib/Ccc/VR.pl +41 -0
  1134. data/Slic3r/Linux/lib/std/unicore/lib/CompEx/N.pl +87 -0
  1135. data/Slic3r/Linux/lib/std/unicore/lib/CompEx/Y.pl +86 -0
  1136. data/Slic3r/Linux/lib/std/unicore/lib/DI/N.pl +28 -0
  1137. data/Slic3r/Linux/lib/std/unicore/lib/DI/Y.pl +27 -0
  1138. data/Slic3r/Linux/lib/std/unicore/lib/Dash/N.pl +32 -0
  1139. data/Slic3r/Linux/lib/std/unicore/lib/Dash/Y.pl +31 -0
  1140. data/Slic3r/Linux/lib/std/unicore/lib/Dep/N.pl +22 -0
  1141. data/Slic3r/Linux/lib/std/unicore/lib/Dep/Y.pl +21 -0
  1142. data/Slic3r/Linux/lib/std/unicore/lib/Dia/N.pl +130 -0
  1143. data/Slic3r/Linux/lib/std/unicore/lib/Dia/Y.pl +129 -0
  1144. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Com.pl +86 -0
  1145. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Enc.pl +20 -0
  1146. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Fin.pl +125 -0
  1147. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Font.pl +46 -0
  1148. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Fra.pl +15 -0
  1149. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Init.pl +87 -0
  1150. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Iso.pl +110 -0
  1151. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Med.pl +66 -0
  1152. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Nar.pl +18 -0
  1153. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Nb.pl +17 -0
  1154. data/Slic3r/Linux/lib/std/unicore/lib/Dt/NonCanon.pl +161 -0
  1155. data/Slic3r/Linux/lib/std/unicore/lib/Dt/None.pl +362 -0
  1156. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Sml.pl +15 -0
  1157. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Sqr.pl +21 -0
  1158. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Sub.pl +16 -0
  1159. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Sup.pl +32 -0
  1160. data/Slic3r/Linux/lib/std/unicore/lib/Dt/Vert.pl +17 -0
  1161. data/Slic3r/Linux/lib/std/unicore/lib/Ea/A.pl +185 -0
  1162. data/Slic3r/Linux/lib/std/unicore/lib/Ea/F.pl +15 -0
  1163. data/Slic3r/Linux/lib/std/unicore/lib/Ea/H.pl +19 -0
  1164. data/Slic3r/Linux/lib/std/unicore/lib/Ea/N.pl +227 -0
  1165. data/Slic3r/Linux/lib/std/unicore/lib/Ea/Na.pl +19 -0
  1166. data/Slic3r/Linux/lib/std/unicore/lib/Ea/W.pl +49 -0
  1167. data/Slic3r/Linux/lib/std/unicore/lib/Ext/N.pl +33 -0
  1168. data/Slic3r/Linux/lib/std/unicore/lib/Ext/Y.pl +32 -0
  1169. data/Slic3r/Linux/lib/std/unicore/lib/GCB/CN.pl +32 -0
  1170. data/Slic3r/Linux/lib/std/unicore/lib/GCB/CR.pl +13 -0
  1171. data/Slic3r/Linux/lib/std/unicore/lib/GCB/EX.pl +227 -0
  1172. data/Slic3r/Linux/lib/std/unicore/lib/GCB/L.pl +14 -0
  1173. data/Slic3r/Linux/lib/std/unicore/lib/GCB/LF.pl +13 -0
  1174. data/Slic3r/Linux/lib/std/unicore/lib/GCB/LV.pl +411 -0
  1175. data/Slic3r/Linux/lib/std/unicore/lib/GCB/LVT.pl +411 -0
  1176. data/Slic3r/Linux/lib/std/unicore/lib/GCB/PP.pl +17 -0
  1177. data/Slic3r/Linux/lib/std/unicore/lib/GCB/SM.pl +125 -0
  1178. data/Slic3r/Linux/lib/std/unicore/lib/GCB/T.pl +14 -0
  1179. data/Slic3r/Linux/lib/std/unicore/lib/GCB/V.pl +14 -0
  1180. data/Slic3r/Linux/lib/std/unicore/lib/GCB/XX.pl +224 -0
  1181. data/Slic3r/Linux/lib/std/unicore/lib/Gc/C.pl +516 -0
  1182. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Cc.pl +14 -0
  1183. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Cf.pl +27 -0
  1184. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Cn.pl +513 -0
  1185. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Co.pl +15 -0
  1186. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Cs.pl +13 -0
  1187. data/Slic3r/Linux/lib/std/unicore/lib/Gc/L.pl +447 -0
  1188. data/Slic3r/Linux/lib/std/unicore/lib/Gc/LC.pl +122 -0
  1189. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Ll.pl +621 -0
  1190. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Lm.pl +61 -0
  1191. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Lo.pl +335 -0
  1192. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Lu.pl +615 -0
  1193. data/Slic3r/Linux/lib/std/unicore/lib/Gc/M.pl +205 -0
  1194. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Mc.pl +125 -0
  1195. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Me.pl +16 -0
  1196. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Mn.pl +215 -0
  1197. data/Slic3r/Linux/lib/std/unicore/lib/Gc/N.pl +95 -0
  1198. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Nl.pl +24 -0
  1199. data/Slic3r/Linux/lib/std/unicore/lib/Gc/No.pl +53 -0
  1200. data/Slic3r/Linux/lib/std/unicore/lib/Gc/P.pl +145 -0
  1201. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Pd.pl +27 -0
  1202. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Pe.pl +82 -0
  1203. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Pf.pl +22 -0
  1204. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Pi.pl +23 -0
  1205. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Po.pl +140 -0
  1206. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Ps.pl +84 -0
  1207. data/Slic3r/Linux/lib/std/unicore/lib/Gc/S.pl +220 -0
  1208. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Sc.pl +28 -0
  1209. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Sk.pl +39 -0
  1210. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Sm.pl +78 -0
  1211. data/Slic3r/Linux/lib/std/unicore/lib/Gc/So.pl +176 -0
  1212. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Z.pl +21 -0
  1213. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Zl.pl +13 -0
  1214. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Zp.pl +13 -0
  1215. data/Slic3r/Linux/lib/std/unicore/lib/Gc/Zs.pl +20 -0
  1216. data/Slic3r/Linux/lib/std/unicore/lib/GrBase/N.pl +609 -0
  1217. data/Slic3r/Linux/lib/std/unicore/lib/GrBase/Y.pl +608 -0
  1218. data/Slic3r/Linux/lib/std/unicore/lib/GrExt/N.pl +228 -0
  1219. data/Slic3r/Linux/lib/std/unicore/lib/Hex/N.pl +19 -0
  1220. data/Slic3r/Linux/lib/std/unicore/lib/Hex/Y.pl +18 -0
  1221. data/Slic3r/Linux/lib/std/unicore/lib/Hst/NA.pl +18 -0
  1222. data/Slic3r/Linux/lib/std/unicore/lib/Hyphen/N.pl +23 -0
  1223. data/Slic3r/Linux/lib/std/unicore/lib/Hyphen/Y.pl +22 -0
  1224. data/Slic3r/Linux/lib/std/unicore/lib/IDC/N.pl +527 -0
  1225. data/Slic3r/Linux/lib/std/unicore/lib/IDC/Y.pl +526 -0
  1226. data/Slic3r/Linux/lib/std/unicore/lib/IDS/N.pl +450 -0
  1227. data/Slic3r/Linux/lib/std/unicore/lib/IDS/Y.pl +449 -0
  1228. data/Slic3r/Linux/lib/std/unicore/lib/IDSB/N.pl +15 -0
  1229. data/Slic3r/Linux/lib/std/unicore/lib/IDSB/Y.pl +14 -0
  1230. data/Slic3r/Linux/lib/std/unicore/lib/IDST/N.pl +14 -0
  1231. data/Slic3r/Linux/lib/std/unicore/lib/IDST/Y.pl +13 -0
  1232. data/Slic3r/Linux/lib/std/unicore/lib/Ideo/N.pl +25 -0
  1233. data/Slic3r/Linux/lib/std/unicore/lib/Ideo/Y.pl +24 -0
  1234. data/Slic3r/Linux/lib/std/unicore/lib/In/2_0.pl +324 -0
  1235. data/Slic3r/Linux/lib/std/unicore/lib/In/2_1.pl +324 -0
  1236. data/Slic3r/Linux/lib/std/unicore/lib/In/3_0.pl +381 -0
  1237. data/Slic3r/Linux/lib/std/unicore/lib/In/3_1.pl +414 -0
  1238. data/Slic3r/Linux/lib/std/unicore/lib/In/3_2.pl +409 -0
  1239. data/Slic3r/Linux/lib/std/unicore/lib/In/4_0.pl +424 -0
  1240. data/Slic3r/Linux/lib/std/unicore/lib/In/4_1.pl +442 -0
  1241. data/Slic3r/Linux/lib/std/unicore/lib/In/5_0.pl +452 -0
  1242. data/Slic3r/Linux/lib/std/unicore/lib/In/5_1.pl +467 -0
  1243. data/Slic3r/Linux/lib/std/unicore/lib/In/5_2.pl +507 -0
  1244. data/Slic3r/Linux/lib/std/unicore/lib/In/6_0.pl +523 -0
  1245. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Ain.pl +16 -0
  1246. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Alaph.pl +13 -0
  1247. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Alef.pl +18 -0
  1248. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Beh.pl +17 -0
  1249. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Beth.pl +14 -0
  1250. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Burushas.pl +13 -0
  1251. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Dal.pl +16 -0
  1252. data/Slic3r/Linux/lib/std/unicore/lib/Jg/DalathRi.pl +15 -0
  1253. data/Slic3r/Linux/lib/std/unicore/lib/Jg/E.pl +13 -0
  1254. data/Slic3r/Linux/lib/std/unicore/lib/Jg/FarsiYeh.pl +16 -0
  1255. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Fe.pl +13 -0
  1256. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Feh.pl +15 -0
  1257. data/Slic3r/Linux/lib/std/unicore/lib/Jg/FinalSem.pl +13 -0
  1258. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Gaf.pl +17 -0
  1259. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Gamal.pl +14 -0
  1260. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Hah.pl +19 -0
  1261. data/Slic3r/Linux/lib/std/unicore/lib/Jg/He.pl +13 -0
  1262. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Heh.pl +13 -0
  1263. data/Slic3r/Linux/lib/std/unicore/lib/Jg/HehGoal.pl +13 -0
  1264. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Heth.pl +13 -0
  1265. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Kaf.pl +15 -0
  1266. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Kaph.pl +13 -0
  1267. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Khaph.pl +13 -0
  1268. data/Slic3r/Linux/lib/std/unicore/lib/Jg/KnottedH.pl +14 -0
  1269. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Lam.pl +15 -0
  1270. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Lamadh.pl +13 -0
  1271. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Meem.pl +14 -0
  1272. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Mim.pl +13 -0
  1273. data/Slic3r/Linux/lib/std/unicore/lib/Jg/NoJoinin.pl +26 -0
  1274. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Noon.pl +15 -0
  1275. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Nun.pl +13 -0
  1276. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Nya.pl +13 -0
  1277. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Pe.pl +13 -0
  1278. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Qaf.pl +15 -0
  1279. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Qaph.pl +13 -0
  1280. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Reh.pl +18 -0
  1281. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Reversed.pl +13 -0
  1282. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Sad.pl +15 -0
  1283. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Sadhe.pl +13 -0
  1284. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Seen.pl +19 -0
  1285. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Semkath.pl +13 -0
  1286. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Shin.pl +13 -0
  1287. data/Slic3r/Linux/lib/std/unicore/lib/Jg/SwashKaf.pl +13 -0
  1288. data/Slic3r/Linux/lib/std/unicore/lib/Jg/SyriacWa.pl +13 -0
  1289. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Tah.pl +14 -0
  1290. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Taw.pl +13 -0
  1291. data/Slic3r/Linux/lib/std/unicore/lib/Jg/TehMarb2.pl +13 -0
  1292. data/Slic3r/Linux/lib/std/unicore/lib/Jg/TehMarbu.pl +15 -0
  1293. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Teth.pl +13 -0
  1294. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Waw.pl +18 -0
  1295. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Yeh.pl +18 -0
  1296. data/Slic3r/Linux/lib/std/unicore/lib/Jg/YehBarre.pl +13 -0
  1297. data/Slic3r/Linux/lib/std/unicore/lib/Jg/YehWithT.pl +13 -0
  1298. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Yudh.pl +13 -0
  1299. data/Slic3r/Linux/lib/std/unicore/lib/Jg/YudhHe.pl +13 -0
  1300. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Zain.pl +13 -0
  1301. data/Slic3r/Linux/lib/std/unicore/lib/Jg/Zhain.pl +13 -0
  1302. data/Slic3r/Linux/lib/std/unicore/lib/JoinC/N.pl +14 -0
  1303. data/Slic3r/Linux/lib/std/unicore/lib/JoinC/Y.pl +13 -0
  1304. data/Slic3r/Linux/lib/std/unicore/lib/Jt/C.pl +15 -0
  1305. data/Slic3r/Linux/lib/std/unicore/lib/Jt/D.pl +41 -0
  1306. data/Slic3r/Linux/lib/std/unicore/lib/Jt/R.pl +40 -0
  1307. data/Slic3r/Linux/lib/std/unicore/lib/Jt/T.pl +226 -0
  1308. data/Slic3r/Linux/lib/std/unicore/lib/Jt/U.pl +231 -0
  1309. data/Slic3r/Linux/lib/std/unicore/lib/LOE/N.pl +18 -0
  1310. data/Slic3r/Linux/lib/std/unicore/lib/Lb/AI.pl +117 -0
  1311. data/Slic3r/Linux/lib/std/unicore/lib/Lb/AL.pl +576 -0
  1312. data/Slic3r/Linux/lib/std/unicore/lib/Lb/B2.pl +13 -0
  1313. data/Slic3r/Linux/lib/std/unicore/lib/Lb/BA.pl +74 -0
  1314. data/Slic3r/Linux/lib/std/unicore/lib/Lb/BB.pl +24 -0
  1315. data/Slic3r/Linux/lib/std/unicore/lib/Lb/BK.pl +14 -0
  1316. data/Slic3r/Linux/lib/std/unicore/lib/Lb/CB.pl +13 -0
  1317. data/Slic3r/Linux/lib/std/unicore/lib/Lb/CL.pl +91 -0
  1318. data/Slic3r/Linux/lib/std/unicore/lib/Lb/CM.pl +189 -0
  1319. data/Slic3r/Linux/lib/std/unicore/lib/Lb/CP.pl +14 -0
  1320. data/Slic3r/Linux/lib/std/unicore/lib/Lb/EX.pl +34 -0
  1321. data/Slic3r/Linux/lib/std/unicore/lib/Lb/GL.pl +23 -0
  1322. data/Slic3r/Linux/lib/std/unicore/lib/Lb/HY.pl +13 -0
  1323. data/Slic3r/Linux/lib/std/unicore/lib/Lb/ID.pl +85 -0
  1324. data/Slic3r/Linux/lib/std/unicore/lib/Lb/IN.pl +14 -0
  1325. data/Slic3r/Linux/lib/std/unicore/lib/Lb/IS.pl +22 -0
  1326. data/Slic3r/Linux/lib/std/unicore/lib/Lb/NL.pl +13 -0
  1327. data/Slic3r/Linux/lib/std/unicore/lib/Lb/NS.pl +49 -0
  1328. data/Slic3r/Linux/lib/std/unicore/lib/Lb/NU.pl +50 -0
  1329. data/Slic3r/Linux/lib/std/unicore/lib/Lb/OP.pl +91 -0
  1330. data/Slic3r/Linux/lib/std/unicore/lib/Lb/PO.pl +30 -0
  1331. data/Slic3r/Linux/lib/std/unicore/lib/Lb/PR.pl +31 -0
  1332. data/Slic3r/Linux/lib/std/unicore/lib/Lb/QU.pl +24 -0
  1333. data/Slic3r/Linux/lib/std/unicore/lib/Lb/SA.pl +49 -0
  1334. data/Slic3r/Linux/lib/std/unicore/lib/Lb/SG.pl +13 -0
  1335. data/Slic3r/Linux/lib/std/unicore/lib/Lb/SP.pl +13 -0
  1336. data/Slic3r/Linux/lib/std/unicore/lib/Lb/SY.pl +13 -0
  1337. data/Slic3r/Linux/lib/std/unicore/lib/Lb/WJ.pl +14 -0
  1338. data/Slic3r/Linux/lib/std/unicore/lib/Lb/XX.pl +505 -0
  1339. data/Slic3r/Linux/lib/std/unicore/lib/Lb/ZW.pl +13 -0
  1340. data/Slic3r/Linux/lib/std/unicore/lib/Lower/N.pl +625 -0
  1341. data/Slic3r/Linux/lib/std/unicore/lib/Lower/Y.pl +624 -0
  1342. data/Slic3r/Linux/lib/std/unicore/lib/Math/N.pl +119 -0
  1343. data/Slic3r/Linux/lib/std/unicore/lib/Math/Y.pl +118 -0
  1344. data/Slic3r/Linux/lib/std/unicore/lib/NChar/N.pl +30 -0
  1345. data/Slic3r/Linux/lib/std/unicore/lib/NChar/Y.pl +30 -0
  1346. data/Slic3r/Linux/lib/std/unicore/lib/NFCQC/Y.pl +118 -0
  1347. data/Slic3r/Linux/lib/std/unicore/lib/NFDQC/N.pl +239 -0
  1348. data/Slic3r/Linux/lib/std/unicore/lib/NFDQC/Y.pl +240 -0
  1349. data/Slic3r/Linux/lib/std/unicore/lib/NFKCQC/M.pl +46 -0
  1350. data/Slic3r/Linux/lib/std/unicore/lib/NFKCQC/N.pl +225 -0
  1351. data/Slic3r/Linux/lib/std/unicore/lib/NFKCQC/Y.pl +256 -0
  1352. data/Slic3r/Linux/lib/std/unicore/lib/NFKDQC/N.pl +361 -0
  1353. data/Slic3r/Linux/lib/std/unicore/lib/Nt/De.pl +50 -0
  1354. data/Slic3r/Linux/lib/std/unicore/lib/Nt/Di.pl +32 -0
  1355. data/Slic3r/Linux/lib/std/unicore/lib/Nt/Nu.pl +134 -0
  1356. data/Slic3r/Linux/lib/std/unicore/lib/Nv/0.pl +67 -0
  1357. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1.pl +102 -0
  1358. data/Slic3r/Linux/lib/std/unicore/lib/Nv/10.pl +47 -0
  1359. data/Slic3r/Linux/lib/std/unicore/lib/Nv/100.pl +32 -0
  1360. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1000.pl +28 -0
  1361. data/Slic3r/Linux/lib/std/unicore/lib/Nv/10000.pl +19 -0
  1362. data/Slic3r/Linux/lib/std/unicore/lib/Nv/100000.pl +13 -0
  1363. data/Slic3r/Linux/lib/std/unicore/lib/Nv/10000000.pl +14 -0
  1364. data/Slic3r/Linux/lib/std/unicore/lib/Nv/10000002.pl +13 -0
  1365. data/Slic3r/Linux/lib/std/unicore/lib/Nv/11.pl +18 -0
  1366. data/Slic3r/Linux/lib/std/unicore/lib/Nv/11_2.pl +13 -0
  1367. data/Slic3r/Linux/lib/std/unicore/lib/Nv/12.pl +18 -0
  1368. data/Slic3r/Linux/lib/std/unicore/lib/Nv/13.pl +16 -0
  1369. data/Slic3r/Linux/lib/std/unicore/lib/Nv/13_2.pl +13 -0
  1370. data/Slic3r/Linux/lib/std/unicore/lib/Nv/14.pl +16 -0
  1371. data/Slic3r/Linux/lib/std/unicore/lib/Nv/15.pl +16 -0
  1372. data/Slic3r/Linux/lib/std/unicore/lib/Nv/15_2.pl +13 -0
  1373. data/Slic3r/Linux/lib/std/unicore/lib/Nv/16.pl +17 -0
  1374. data/Slic3r/Linux/lib/std/unicore/lib/Nv/17.pl +17 -0
  1375. data/Slic3r/Linux/lib/std/unicore/lib/Nv/17_2.pl +13 -0
  1376. data/Slic3r/Linux/lib/std/unicore/lib/Nv/18.pl +17 -0
  1377. data/Slic3r/Linux/lib/std/unicore/lib/Nv/19.pl +17 -0
  1378. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_10.pl +13 -0
  1379. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_16.pl +15 -0
  1380. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_2.pl +21 -0
  1381. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_3.pl +16 -0
  1382. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_4.pl +21 -0
  1383. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_5.pl +13 -0
  1384. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_6.pl +14 -0
  1385. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_7.pl +13 -0
  1386. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_8.pl +17 -0
  1387. data/Slic3r/Linux/lib/std/unicore/lib/Nv/1_9.pl +13 -0
  1388. data/Slic3r/Linux/lib/std/unicore/lib/Nv/2.pl +105 -0
  1389. data/Slic3r/Linux/lib/std/unicore/lib/Nv/20.pl +30 -0
  1390. data/Slic3r/Linux/lib/std/unicore/lib/Nv/200.pl +14 -0
  1391. data/Slic3r/Linux/lib/std/unicore/lib/Nv/2000.pl +13 -0
  1392. data/Slic3r/Linux/lib/std/unicore/lib/Nv/20000.pl +13 -0
  1393. data/Slic3r/Linux/lib/std/unicore/lib/Nv/21.pl +13 -0
  1394. data/Slic3r/Linux/lib/std/unicore/lib/Nv/22.pl +13 -0
  1395. data/Slic3r/Linux/lib/std/unicore/lib/Nv/23.pl +13 -0
  1396. data/Slic3r/Linux/lib/std/unicore/lib/Nv/24.pl +13 -0
  1397. data/Slic3r/Linux/lib/std/unicore/lib/Nv/25.pl +13 -0
  1398. data/Slic3r/Linux/lib/std/unicore/lib/Nv/26.pl +13 -0
  1399. data/Slic3r/Linux/lib/std/unicore/lib/Nv/27.pl +13 -0
  1400. data/Slic3r/Linux/lib/std/unicore/lib/Nv/28.pl +13 -0
  1401. data/Slic3r/Linux/lib/std/unicore/lib/Nv/29.pl +13 -0
  1402. data/Slic3r/Linux/lib/std/unicore/lib/Nv/2_3.pl +17 -0
  1403. data/Slic3r/Linux/lib/std/unicore/lib/Nv/2_5.pl +13 -0
  1404. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3.pl +103 -0
  1405. data/Slic3r/Linux/lib/std/unicore/lib/Nv/30.pl +22 -0
  1406. data/Slic3r/Linux/lib/std/unicore/lib/Nv/300.pl +15 -0
  1407. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3000.pl +13 -0
  1408. data/Slic3r/Linux/lib/std/unicore/lib/Nv/30000.pl +13 -0
  1409. data/Slic3r/Linux/lib/std/unicore/lib/Nv/31.pl +13 -0
  1410. data/Slic3r/Linux/lib/std/unicore/lib/Nv/32.pl +13 -0
  1411. data/Slic3r/Linux/lib/std/unicore/lib/Nv/33.pl +13 -0
  1412. data/Slic3r/Linux/lib/std/unicore/lib/Nv/34.pl +13 -0
  1413. data/Slic3r/Linux/lib/std/unicore/lib/Nv/35.pl +13 -0
  1414. data/Slic3r/Linux/lib/std/unicore/lib/Nv/36.pl +13 -0
  1415. data/Slic3r/Linux/lib/std/unicore/lib/Nv/37.pl +13 -0
  1416. data/Slic3r/Linux/lib/std/unicore/lib/Nv/38.pl +13 -0
  1417. data/Slic3r/Linux/lib/std/unicore/lib/Nv/39.pl +13 -0
  1418. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_16.pl +15 -0
  1419. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_2.pl +13 -0
  1420. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_4.pl +18 -0
  1421. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_5.pl +13 -0
  1422. data/Slic3r/Linux/lib/std/unicore/lib/Nv/3_8.pl +13 -0
  1423. data/Slic3r/Linux/lib/std/unicore/lib/Nv/4.pl +97 -0
  1424. data/Slic3r/Linux/lib/std/unicore/lib/Nv/40.pl +21 -0
  1425. data/Slic3r/Linux/lib/std/unicore/lib/Nv/400.pl +14 -0
  1426. data/Slic3r/Linux/lib/std/unicore/lib/Nv/4000.pl +13 -0
  1427. data/Slic3r/Linux/lib/std/unicore/lib/Nv/40000.pl +13 -0
  1428. data/Slic3r/Linux/lib/std/unicore/lib/Nv/41.pl +13 -0
  1429. data/Slic3r/Linux/lib/std/unicore/lib/Nv/42.pl +13 -0
  1430. data/Slic3r/Linux/lib/std/unicore/lib/Nv/43.pl +13 -0
  1431. data/Slic3r/Linux/lib/std/unicore/lib/Nv/44.pl +13 -0
  1432. data/Slic3r/Linux/lib/std/unicore/lib/Nv/45.pl +13 -0
  1433. data/Slic3r/Linux/lib/std/unicore/lib/Nv/46.pl +13 -0
  1434. data/Slic3r/Linux/lib/std/unicore/lib/Nv/47.pl +13 -0
  1435. data/Slic3r/Linux/lib/std/unicore/lib/Nv/48.pl +13 -0
  1436. data/Slic3r/Linux/lib/std/unicore/lib/Nv/49.pl +13 -0
  1437. data/Slic3r/Linux/lib/std/unicore/lib/Nv/4_5.pl +13 -0
  1438. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5.pl +97 -0
  1439. data/Slic3r/Linux/lib/std/unicore/lib/Nv/50.pl +28 -0
  1440. data/Slic3r/Linux/lib/std/unicore/lib/Nv/500.pl +20 -0
  1441. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5000.pl +17 -0
  1442. data/Slic3r/Linux/lib/std/unicore/lib/Nv/50000.pl +16 -0
  1443. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5_2.pl +13 -0
  1444. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5_6.pl +14 -0
  1445. data/Slic3r/Linux/lib/std/unicore/lib/Nv/5_8.pl +13 -0
  1446. data/Slic3r/Linux/lib/std/unicore/lib/Nv/6.pl +90 -0
  1447. data/Slic3r/Linux/lib/std/unicore/lib/Nv/60.pl +17 -0
  1448. data/Slic3r/Linux/lib/std/unicore/lib/Nv/600.pl +14 -0
  1449. data/Slic3r/Linux/lib/std/unicore/lib/Nv/6000.pl +13 -0
  1450. data/Slic3r/Linux/lib/std/unicore/lib/Nv/60000.pl +13 -0
  1451. data/Slic3r/Linux/lib/std/unicore/lib/Nv/7.pl +87 -0
  1452. data/Slic3r/Linux/lib/std/unicore/lib/Nv/70.pl +17 -0
  1453. data/Slic3r/Linux/lib/std/unicore/lib/Nv/700.pl +14 -0
  1454. data/Slic3r/Linux/lib/std/unicore/lib/Nv/7000.pl +13 -0
  1455. data/Slic3r/Linux/lib/std/unicore/lib/Nv/70000.pl +13 -0
  1456. data/Slic3r/Linux/lib/std/unicore/lib/Nv/7_2.pl +13 -0
  1457. data/Slic3r/Linux/lib/std/unicore/lib/Nv/7_8.pl +13 -0
  1458. data/Slic3r/Linux/lib/std/unicore/lib/Nv/8.pl +84 -0
  1459. data/Slic3r/Linux/lib/std/unicore/lib/Nv/80.pl +17 -0
  1460. data/Slic3r/Linux/lib/std/unicore/lib/Nv/800.pl +14 -0
  1461. data/Slic3r/Linux/lib/std/unicore/lib/Nv/8000.pl +13 -0
  1462. data/Slic3r/Linux/lib/std/unicore/lib/Nv/80000.pl +13 -0
  1463. data/Slic3r/Linux/lib/std/unicore/lib/Nv/9.pl +86 -0
  1464. data/Slic3r/Linux/lib/std/unicore/lib/Nv/90.pl +18 -0
  1465. data/Slic3r/Linux/lib/std/unicore/lib/Nv/900.pl +15 -0
  1466. data/Slic3r/Linux/lib/std/unicore/lib/Nv/9000.pl +13 -0
  1467. data/Slic3r/Linux/lib/std/unicore/lib/Nv/90000.pl +13 -0
  1468. data/Slic3r/Linux/lib/std/unicore/lib/Nv/9_2.pl +13 -0
  1469. data/Slic3r/Linux/lib/std/unicore/lib/Nv/NaN.pl +170 -0
  1470. data/Slic3r/Linux/lib/std/unicore/lib/Nv/_1_2.pl +13 -0
  1471. data/Slic3r/Linux/lib/std/unicore/lib/OAlpha/N.pl +158 -0
  1472. data/Slic3r/Linux/lib/std/unicore/lib/OAlpha/Y.pl +157 -0
  1473. data/Slic3r/Linux/lib/std/unicore/lib/ODI/N.pl +23 -0
  1474. data/Slic3r/Linux/lib/std/unicore/lib/ODI/Y.pl +22 -0
  1475. data/Slic3r/Linux/lib/std/unicore/lib/OGrExt/N.pl +29 -0
  1476. data/Slic3r/Linux/lib/std/unicore/lib/OGrExt/Y.pl +28 -0
  1477. data/Slic3r/Linux/lib/std/unicore/lib/OIDC/N.pl +17 -0
  1478. data/Slic3r/Linux/lib/std/unicore/lib/OIDC/Y.pl +16 -0
  1479. data/Slic3r/Linux/lib/std/unicore/lib/OIDS/N.pl +16 -0
  1480. data/Slic3r/Linux/lib/std/unicore/lib/OIDS/Y.pl +15 -0
  1481. data/Slic3r/Linux/lib/std/unicore/lib/OLower/N.pl +26 -0
  1482. data/Slic3r/Linux/lib/std/unicore/lib/OLower/Y.pl +25 -0
  1483. data/Slic3r/Linux/lib/std/unicore/lib/OMath/N.pl +113 -0
  1484. data/Slic3r/Linux/lib/std/unicore/lib/OMath/Y.pl +112 -0
  1485. data/Slic3r/Linux/lib/std/unicore/lib/OUpper/N.pl +15 -0
  1486. data/Slic3r/Linux/lib/std/unicore/lib/OUpper/Y.pl +14 -0
  1487. data/Slic3r/Linux/lib/std/unicore/lib/PatSyn/N.pl +41 -0
  1488. data/Slic3r/Linux/lib/std/unicore/lib/PatSyn/Y.pl +40 -0
  1489. data/Slic3r/Linux/lib/std/unicore/lib/PatWS/N.pl +18 -0
  1490. data/Slic3r/Linux/lib/std/unicore/lib/PatWS/Y.pl +17 -0
  1491. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Alnum.pl +521 -0
  1492. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Any.pl +13 -0
  1493. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Assigned.pl +513 -0
  1494. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Blank.pl +21 -0
  1495. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Graph.pl +518 -0
  1496. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PerlSpac.pl +15 -0
  1497. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PerlWord.pl +16 -0
  1498. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixAln.pl +15 -0
  1499. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixAlp.pl +14 -0
  1500. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixBla.pl +14 -0
  1501. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixCnt.pl +14 -0
  1502. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixDig.pl +13 -0
  1503. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixGra.pl +13 -0
  1504. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixLow.pl +13 -0
  1505. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixPri.pl +13 -0
  1506. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixPun.pl +16 -0
  1507. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixSpa.pl +14 -0
  1508. data/Slic3r/Linux/lib/std/unicore/lib/Perl/PosixUpp.pl +13 -0
  1509. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Print.pl +515 -0
  1510. data/Slic3r/Linux/lib/std/unicore/lib/Perl/SpacePer.pl +24 -0
  1511. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Title.pl +22 -0
  1512. data/Slic3r/Linux/lib/std/unicore/lib/Perl/VertSpac.pl +15 -0
  1513. data/Slic3r/Linux/lib/std/unicore/lib/Perl/Word.pl +526 -0
  1514. data/Slic3r/Linux/lib/std/unicore/lib/Perl/XPosixPu.pl +140 -0
  1515. data/Slic3r/Linux/lib/std/unicore/lib/Perl/_XBegin.pl +30 -0
  1516. data/Slic3r/Linux/lib/std/unicore/lib/Perl/_XExtend.pl +206 -0
  1517. data/Slic3r/Linux/lib/std/unicore/lib/Perl/_XLVLVTV.pl +15 -0
  1518. data/Slic3r/Linux/lib/std/unicore/lib/QMark/N.pl +25 -0
  1519. data/Slic3r/Linux/lib/std/unicore/lib/QMark/Y.pl +24 -0
  1520. data/Slic3r/Linux/lib/std/unicore/lib/Radical/N.pl +16 -0
  1521. data/Slic3r/Linux/lib/std/unicore/lib/Radical/Y.pl +15 -0
  1522. data/Slic3r/Linux/lib/std/unicore/lib/SB/AT.pl +16 -0
  1523. data/Slic3r/Linux/lib/std/unicore/lib/SB/CL.pl +53 -0
  1524. data/Slic3r/Linux/lib/std/unicore/lib/SB/EX.pl +207 -0
  1525. data/Slic3r/Linux/lib/std/unicore/lib/SB/FO.pl +28 -0
  1526. data/Slic3r/Linux/lib/std/unicore/lib/SB/LE.pl +362 -0
  1527. data/Slic3r/Linux/lib/std/unicore/lib/SB/LO.pl +623 -0
  1528. data/Slic3r/Linux/lib/std/unicore/lib/SB/SC.pl +31 -0
  1529. data/Slic3r/Linux/lib/std/unicore/lib/SB/SE.pl +14 -0
  1530. data/Slic3r/Linux/lib/std/unicore/lib/SB/ST.pl +56 -0
  1531. data/Slic3r/Linux/lib/std/unicore/lib/SB/Sp.pl +22 -0
  1532. data/Slic3r/Linux/lib/std/unicore/lib/SB/UP.pl +620 -0
  1533. data/Slic3r/Linux/lib/std/unicore/lib/SB/XX.pl +584 -0
  1534. data/Slic3r/Linux/lib/std/unicore/lib/SD/N.pl +44 -0
  1535. data/Slic3r/Linux/lib/std/unicore/lib/SD/Y.pl +43 -0
  1536. data/Slic3r/Linux/lib/std/unicore/lib/STerm/N.pl +60 -0
  1537. data/Slic3r/Linux/lib/std/unicore/lib/STerm/Y.pl +59 -0
  1538. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Arab.pl +31 -0
  1539. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Armi.pl +14 -0
  1540. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Armn.pl +17 -0
  1541. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Avst.pl +14 -0
  1542. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Bali.pl +14 -0
  1543. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Bamu.pl +14 -0
  1544. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Batk.pl +14 -0
  1545. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Beng.pl +26 -0
  1546. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Bopo.pl +15 -0
  1547. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Brah.pl +14 -0
  1548. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Bugi.pl +14 -0
  1549. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Buhd.pl +13 -0
  1550. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cans.pl +14 -0
  1551. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cari.pl +13 -0
  1552. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cham.pl +16 -0
  1553. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cher.pl +13 -0
  1554. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Copt.pl +15 -0
  1555. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cprt.pl +18 -0
  1556. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Cyrl.pl +19 -0
  1557. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Deva.pl +18 -0
  1558. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Egyp.pl +13 -0
  1559. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Ethi.pl +44 -0
  1560. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Geor.pl +16 -0
  1561. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Glag.pl +14 -0
  1562. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Goth.pl +13 -0
  1563. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Grek.pl +45 -0
  1564. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Gujr.pl +26 -0
  1565. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Guru.pl +28 -0
  1566. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Han.pl +28 -0
  1567. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Hang.pl +26 -0
  1568. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Hano.pl +13 -0
  1569. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Hebr.pl +21 -0
  1570. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Hira.pl +16 -0
  1571. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Ital.pl +14 -0
  1572. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Java.pl +15 -0
  1573. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Kana.pl +20 -0
  1574. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Khar.pl +20 -0
  1575. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Khmr.pl +16 -0
  1576. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Knda.pl +26 -0
  1577. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Kthi.pl +13 -0
  1578. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lana.pl +17 -0
  1579. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lao.pl +30 -0
  1580. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Latn.pl +42 -0
  1581. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lepc.pl +15 -0
  1582. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Limb.pl +17 -0
  1583. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Linb.pl +19 -0
  1584. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lyci.pl +13 -0
  1585. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Lydi.pl +14 -0
  1586. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mand.pl +14 -0
  1587. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mlym.pl +23 -0
  1588. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mong.pl +18 -0
  1589. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mtei.pl +14 -0
  1590. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Mymr.pl +14 -0
  1591. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Nko.pl +13 -0
  1592. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Ogam.pl +13 -0
  1593. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Orkh.pl +13 -0
  1594. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Orya.pl +26 -0
  1595. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Osma.pl +14 -0
  1596. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Phag.pl +13 -0
  1597. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Phli.pl +14 -0
  1598. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Phnx.pl +14 -0
  1599. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Prti.pl +14 -0
  1600. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Rjng.pl +14 -0
  1601. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Runr.pl +14 -0
  1602. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Samr.pl +14 -0
  1603. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Saur.pl +14 -0
  1604. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Sinh.pl +23 -0
  1605. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Sund.pl +14 -0
  1606. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Sylo.pl +13 -0
  1607. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Syrc.pl +15 -0
  1608. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tagb.pl +15 -0
  1609. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tale.pl +14 -0
  1610. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Talu.pl +16 -0
  1611. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Taml.pl +28 -0
  1612. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tavt.pl +14 -0
  1613. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Telu.pl +26 -0
  1614. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tfng.pl +15 -0
  1615. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tglg.pl +14 -0
  1616. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Thaa.pl +13 -0
  1617. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Thai.pl +14 -0
  1618. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Tibt.pl +19 -0
  1619. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Ugar.pl +14 -0
  1620. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Vai.pl +13 -0
  1621. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Xpeo.pl +14 -0
  1622. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Xsux.pl +15 -0
  1623. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Yi.pl +14 -0
  1624. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Zinh.pl +36 -0
  1625. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Zyyy.pl +181 -0
  1626. data/Slic3r/Linux/lib/std/unicore/lib/Sc/Zzzz.pl +511 -0
  1627. data/Slic3r/Linux/lib/std/unicore/lib/Space/N.pl +24 -0
  1628. data/Slic3r/Linux/lib/std/unicore/lib/Space/Y.pl +23 -0
  1629. data/Slic3r/Linux/lib/std/unicore/lib/Term/N.pl +80 -0
  1630. data/Slic3r/Linux/lib/std/unicore/lib/Term/Y.pl +79 -0
  1631. data/Slic3r/Linux/lib/std/unicore/lib/UIdeo/N.pl +25 -0
  1632. data/Slic3r/Linux/lib/std/unicore/lib/UIdeo/Y.pl +24 -0
  1633. data/Slic3r/Linux/lib/std/unicore/lib/Upper/N.pl +618 -0
  1634. data/Slic3r/Linux/lib/std/unicore/lib/Upper/Y.pl +617 -0
  1635. data/Slic3r/Linux/lib/std/unicore/lib/VS/N.pl +16 -0
  1636. data/Slic3r/Linux/lib/std/unicore/lib/VS/Y.pl +15 -0
  1637. data/Slic3r/Linux/lib/std/unicore/lib/WB/EX.pl +18 -0
  1638. data/Slic3r/Linux/lib/std/unicore/lib/WB/FO.pl +27 -0
  1639. data/Slic3r/Linux/lib/std/unicore/lib/WB/KA.pl +21 -0
  1640. data/Slic3r/Linux/lib/std/unicore/lib/WB/LE.pl +388 -0
  1641. data/Slic3r/Linux/lib/std/unicore/lib/WB/MB.pl +19 -0
  1642. data/Slic3r/Linux/lib/std/unicore/lib/WB/ML.pl +20 -0
  1643. data/Slic3r/Linux/lib/std/unicore/lib/WB/MN.pl +26 -0
  1644. data/Slic3r/Linux/lib/std/unicore/lib/WB/NL.pl +15 -0
  1645. data/Slic3r/Linux/lib/std/unicore/lib/WB/NU.pl +50 -0
  1646. data/Slic3r/Linux/lib/std/unicore/lib/WB/XX.pl +539 -0
  1647. data/Slic3r/Linux/lib/std/unicore/lib/XIDC/N.pl +534 -0
  1648. data/Slic3r/Linux/lib/std/unicore/lib/XIDC/Y.pl +533 -0
  1649. data/Slic3r/Linux/lib/std/unicore/lib/XIDS/N.pl +457 -0
  1650. data/Slic3r/Linux/lib/std/unicore/lib/XIDS/Y.pl +456 -0
  1651. data/Slic3r/Linux/lib/std/utf8.pm +214 -0
  1652. data/Slic3r/Linux/lib/std/utf8_heavy.pl +550 -0
  1653. data/Slic3r/Linux/lib/vrt/528ccea98cad02a5f453a7135f9ca183/package.lib +0 -0
  1654. data/Slic3r/Linux/lib/vrt/804f15d0b003b04c3feb68e47adacf8d/package.lib +1 -0
  1655. data/Slic3r/Linux/lib/vrt/fa119178d164dcf97f19aecc876231c0/package.lib +0 -0
  1656. data/Slic3r/Linux/res/Slic3r.icns +0 -0
  1657. data/Slic3r/Linux/res/Slic3r.ico +0 -0
  1658. data/Slic3r/Linux/res/Slic3r.png +0 -0
  1659. data/Slic3r/Linux/res/Slic3r_128px.png +0 -0
  1660. data/Slic3r/Linux/res/Slic3r_192px.png +0 -0
  1661. data/Slic3r/Linux/res/Slic3r_192px_transparent.png +0 -0
  1662. data/Slic3r/Linux/res/add.png +0 -0
  1663. data/Slic3r/Linux/res/arrow_out.png +0 -0
  1664. data/Slic3r/Linux/res/arrow_rotate_anticlockwise.png +0 -0
  1665. data/Slic3r/Linux/res/arrow_rotate_clockwise.png +0 -0
  1666. data/Slic3r/Linux/res/arrow_up.png +0 -0
  1667. data/Slic3r/Linux/res/box.png +0 -0
  1668. data/Slic3r/Linux/res/brick.png +0 -0
  1669. data/Slic3r/Linux/res/brick_add.png +0 -0
  1670. data/Slic3r/Linux/res/brick_delete.png +0 -0
  1671. data/Slic3r/Linux/res/brick_go.png +0 -0
  1672. data/Slic3r/Linux/res/bricks.png +0 -0
  1673. data/Slic3r/Linux/res/building.png +0 -0
  1674. data/Slic3r/Linux/res/bullet_black.png +0 -0
  1675. data/Slic3r/Linux/res/bullet_blue.png +0 -0
  1676. data/Slic3r/Linux/res/bullet_white.png +0 -0
  1677. data/Slic3r/Linux/res/cog.png +0 -0
  1678. data/Slic3r/Linux/res/cog_go.png +0 -0
  1679. data/Slic3r/Linux/res/cross.png +0 -0
  1680. data/Slic3r/Linux/res/delete.png +0 -0
  1681. data/Slic3r/Linux/res/disk.png +0 -0
  1682. data/Slic3r/Linux/res/error.png +0 -0
  1683. data/Slic3r/Linux/res/funnel.png +0 -0
  1684. data/Slic3r/Linux/res/hourglass.png +0 -0
  1685. data/Slic3r/Linux/res/layers.png +0 -0
  1686. data/Slic3r/Linux/res/note.png +0 -0
  1687. data/Slic3r/Linux/res/package.png +0 -0
  1688. data/Slic3r/Linux/res/package_green.png +0 -0
  1689. data/Slic3r/Linux/res/page_white_go.png +0 -0
  1690. data/Slic3r/Linux/res/plugin.png +0 -0
  1691. data/Slic3r/Linux/res/printer_empty.png +0 -0
  1692. data/Slic3r/Linux/res/shading.png +0 -0
  1693. data/Slic3r/Linux/res/shape_ungroup.png +0 -0
  1694. data/Slic3r/Linux/res/spool.png +0 -0
  1695. data/Slic3r/Linux/res/tag_blue.png +0 -0
  1696. data/Slic3r/Linux/res/time.png +0 -0
  1697. data/Slic3r/Linux/res/wrench.png +0 -0
  1698. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libperl.dylib +0 -0
  1699. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu-2.9.3.0.0.dylib +0 -0
  1700. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu-2.9.3.dylib +1 -0
  1701. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu-2.9.dylib +1 -0
  1702. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu_net-2.9.3.0.0.dylib +0 -0
  1703. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu_net-2.9.3.dylib +1 -0
  1704. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_baseu_net-2.9.dylib +1 -0
  1705. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_adv-2.9.3.0.0.dylib +0 -0
  1706. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_adv-2.9.3.dylib +1 -0
  1707. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_adv-2.9.dylib +1 -0
  1708. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_core-2.9.3.0.0.dylib +0 -0
  1709. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_core-2.9.3.dylib +1 -0
  1710. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_core-2.9.dylib +1 -0
  1711. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_gl-2.9.3.0.0.dylib +0 -0
  1712. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_gl-2.9.3.dylib +1 -0
  1713. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_gl-2.9.dylib +1 -0
  1714. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_html-2.9.3.0.0.dylib +0 -0
  1715. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_html-2.9.3.dylib +1 -0
  1716. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_html-2.9.dylib +1 -0
  1717. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_media-2.9.3.0.0.dylib +0 -0
  1718. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_media-2.9.3.dylib +1 -0
  1719. data/Slic3r/Mac/Slic3r.app/Contents/Frameworks/libwx_osx_cocoau_media-2.9.dylib +1 -0
  1720. data/Slic3r/Mac/Slic3r.app/Contents/Info.plist +27 -0
  1721. data/Slic3r/Mac/Slic3r.app/Contents/MacOS/slic3r +0 -0
  1722. data/Slic3r/Mac/Slic3r.app/Contents/PkgInfo +1 -0
  1723. data/Slic3r/Mac/Slic3r.app/Contents/Resources/Slic3r.icns +0 -0
  1724. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/std/Mozilla/CA.pm +99 -0
  1725. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/std/Mozilla/CA/cacert.pem +3366 -0
  1726. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/std/XML/SAX/ParserDetails.ini +16 -0
  1727. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/00fe171e54eaa45f327269069a84261c/SHA.bundle +0 -0
  1728. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/01641a74022c3bbdcd3a4cd5ffa26f07/ExpatXS.bundle +0 -0
  1729. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/02275a9ba60dd2657ec564332cc8c8a6/mro.bundle +0 -0
  1730. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/0599c4249af65dd82091e4b41e75dcac/GLCanvas.bundle +0 -0
  1731. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/0b007f4858c19ac489b6482dc8d8e973/Base64.bundle +0 -0
  1732. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/11897113663a72e0cf3a40f86569d0d3/package.lib +437 -0
  1733. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/181b750c50b989ea215e0c9788700590/scalar.bundle +0 -0
  1734. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/18e56ac547628015c934d8e62b2e59fb/shared.bundle +0 -0
  1735. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/193e996343c27253990f34ec93d7ae14/XS.bundle +0 -0
  1736. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/1e7eafa7ded7f14757bba03f9721336f/MD5.bundle +0 -0
  1737. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/2203e7a3df69c390965a2aa240378b54/FastCalc.bundle +0 -0
  1738. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/3b0e1864ce168232981b0e0b6e4ba639/Zlib.bundle +0 -0
  1739. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/4219a41428dfbeccc0004f15dc4778d8/Unicode.bundle +0 -0
  1740. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/42c3d19347a691f255d231da3d91f1ab/package.lib +332 -0
  1741. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/446150103e8711b6887777b796b96e92/Storable.bundle +0 -0
  1742. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/471029ae61c0427e58f24ac9e5a0cca5/package.lib +41 -0
  1743. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/4b2be1b5f4e6e6643e35d2fcdd27000d/Fcntl.bundle +0 -0
  1744. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/4c8cb4098e6eacc0dda716777c02e08e/Print.bundle +0 -0
  1745. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/51a64b55f893bfcb317be27527adb1c6/XSAccessor.bundle +0 -0
  1746. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/528ccea98cad02a5f453a7135f9ca183/package.lib +0 -0
  1747. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/5abe14a55ea43955299905c968f6b868/NamedCapture.bundle +0 -0
  1748. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/5da723b19d0784844a5d9228c25b1022/IO.bundle +0 -0
  1749. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/5efcd6c8c536b3b2d25ffece18e6cc7f/Byte.bundle +0 -0
  1750. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/62d4f6d2fa13586d2f8d48e80fcaad8d/re.bundle +0 -0
  1751. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/65951cec1d16610098f09e209050a4e5/encoding.bundle +0 -0
  1752. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/72315e121508feb38a782d3bd60cf0e1/Encode.bundle +0 -0
  1753. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/72f45450977a0f098e76b5b1270fb1fa/TW.bundle +0 -0
  1754. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/74f1151ea68af8b93e28a8d7b59bc6f1/Util.bundle +0 -0
  1755. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/7a1d45f404be604381d8b95f374ecae2/POSIX.bundle +0 -0
  1756. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/7a9108dfb82f49ad15e339776671a0c9/KR.bundle +0 -0
  1757. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/7e549424075365bb7bac11a08b208145/XS.bundle +0 -0
  1758. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/7e7926fce7d528168853b8dab2c9ccd2/Socket.bundle +0 -0
  1759. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/804f15d0b003b04c3feb68e47adacf8d/package.lib +1 -0
  1760. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/826014915c535a7285f886166a778440/Cwd.bundle +0 -0
  1761. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/83e7bddbda22f4666134d95e35b3292e/Grid.bundle +0 -0
  1762. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/8efb4e8160ee47f9e953900fd189e72c/Symbol.bundle +0 -0
  1763. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/9077b3800b946e19da99a53a92321f77/JP.bundle +0 -0
  1764. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/9425135f44548a4e211eabfbba86fdf7/B.bundle +0 -0
  1765. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/94c9b361d23d6847d023b9e82acbc595/UUID.bundle +0 -0
  1766. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/953dbc6f080a921c10f4fb4adf0a6ea7/SealRequireHints.bundle +0 -0
  1767. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/9f303c03e9bb3b3307210ed1399034f4/Dumper.bundle +0 -0
  1768. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a3809d03e71342d25daf495917654688/indirect.bundle +0 -0
  1769. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a499207f115577de989dae697bccf1f7/via.bundle +0 -0
  1770. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a4ff00c6243840a7c5a181800d0a0e9f/Glob.bundle +0 -0
  1771. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a8a5488c950b4ae4ab726834ab1f4629/Parser.bundle +0 -0
  1772. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/a927c16eae43f6d2d1fcbca4288c2613/Bzip2.bundle +0 -0
  1773. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/b2467e1e23f7295c8b0e819807403777/Check.bundle +0 -0
  1774. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/b75af51104891e1861cf27a85a06248f/SSLeay.bundle +0 -0
  1775. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c04409d610134c279178eaab1c0cd45e/multidimensional.bundle +0 -0
  1776. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c37c19e69c64f01f83616050a4290081/filehandles.bundle +0 -0
  1777. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c63ee2950efe3f9517034e269406a6f1/Call.bundle +0 -0
  1778. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c8b43a9fa99c2589e0af3851636037ae/threads.bundle +0 -0
  1779. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/c9bc0bb4eaabb8b3b85268094134ae30/SSLeay.bundle +0 -0
  1780. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/cb9c4ab6b50a6ba6e9a1c58866acb842/HiRes.bundle +0 -0
  1781. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/d73dc34729c26340077a511c9aeae54c/Langinfo.bundle +0 -0
  1782. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/e0833c18d9957e5ef93fd12ea63dc88c/Libm.bundle +0 -0
  1783. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/e4596f5a53563fc95d87c9738c6ed3f1/attributes.bundle +0 -0
  1784. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/e69ac1437c1fe7ba8a391d4a6e017895/DND.bundle +0 -0
  1785. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/f0daa614fb85c8dc08ddd86ef81f8546/EBCDIC.bundle +0 -0
  1786. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/f3d865c9882d669a56d9890365558ef3/Wx.bundle +0 -0
  1787. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/f77494368a2754d99fc9ae63725241b9/CN.bundle +0 -0
  1788. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/f7b6e5c51850d9c5b8f9f118bf8c79e5/OpenGL.bundle +0 -0
  1789. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/fa119178d164dcf97f19aecc876231c0/package.lib +0 -0
  1790. data/Slic3r/Mac/Slic3r.app/Contents/Resources/lib/vrt/ff1c32bbf4efed322b40618fa6cc887f/Html.bundle +0 -0
  1791. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r.icns +0 -0
  1792. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r.ico +0 -0
  1793. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r.png +0 -0
  1794. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r_128px.png +0 -0
  1795. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r_192px.png +0 -0
  1796. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/Slic3r_192px_transparent.png +0 -0
  1797. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/add.png +0 -0
  1798. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/arrow_out.png +0 -0
  1799. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/arrow_rotate_anticlockwise.png +0 -0
  1800. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/arrow_rotate_clockwise.png +0 -0
  1801. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/arrow_up.png +0 -0
  1802. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/box.png +0 -0
  1803. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/brick.png +0 -0
  1804. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/brick_add.png +0 -0
  1805. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/brick_delete.png +0 -0
  1806. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/brick_go.png +0 -0
  1807. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/bricks.png +0 -0
  1808. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/building.png +0 -0
  1809. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/bullet_black.png +0 -0
  1810. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/bullet_blue.png +0 -0
  1811. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/bullet_white.png +0 -0
  1812. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/cog.png +0 -0
  1813. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/cog_go.png +0 -0
  1814. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/cross.png +0 -0
  1815. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/delete.png +0 -0
  1816. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/disk.png +0 -0
  1817. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/error.png +0 -0
  1818. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/funnel.png +0 -0
  1819. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/hourglass.png +0 -0
  1820. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/layers.png +0 -0
  1821. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/note.png +0 -0
  1822. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/package.png +0 -0
  1823. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/package_green.png +0 -0
  1824. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/page_white_go.png +0 -0
  1825. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/plugin.png +0 -0
  1826. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/printer_empty.png +0 -0
  1827. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/shading.png +0 -0
  1828. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/shape_ungroup.png +0 -0
  1829. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/spool.png +0 -0
  1830. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/tag_blue.png +0 -0
  1831. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/time.png +0 -0
  1832. data/Slic3r/Mac/Slic3r.app/Contents/Resources/res/wrench.png +0 -0
  1833. data/Slic3r/Win/bin/cpfworkrt/cpfworkrt.manifest +8 -0
  1834. data/Slic3r/Win/bin/cpfworkrt/libgcc_s_sjlj-1.dll +0 -0
  1835. data/Slic3r/Win/bin/cpfworkrt/libstdc++-6.dll +0 -0
  1836. data/Slic3r/Win/bin/cpfworkrt/perl514.dll +0 -0
  1837. data/Slic3r/Win/cpfworkrt/cpfworkrt.manifest +8 -0
  1838. data/Slic3r/Win/cpfworkrt/libgcc_s_sjlj-1.dll +0 -0
  1839. data/Slic3r/Win/cpfworkrt/libstdc++-6.dll +0 -0
  1840. data/Slic3r/Win/cpfworkrt/perl514.dll +0 -0
  1841. data/Slic3r/Win/dll/cpwgui.exe +0 -0
  1842. data/Slic3r/Win/dll/wxbase293u_gcc_citrusperl.dll +0 -0
  1843. data/Slic3r/Win/dll/wxbase293u_net_gcc_citrusperl.dll +0 -0
  1844. data/Slic3r/Win/dll/wxmsw293u_adv_gcc_citrusperl.dll +0 -0
  1845. data/Slic3r/Win/dll/wxmsw293u_core_gcc_citrusperl.dll +0 -0
  1846. data/Slic3r/Win/dll/wxmsw293u_gl_gcc_citrusperl.dll +0 -0
  1847. data/Slic3r/Win/dll/wxmsw293u_html_gcc_citrusperl.dll +0 -0
  1848. data/Slic3r/Win/lib/std/Mozilla/CA.pm +99 -0
  1849. data/Slic3r/Win/lib/std/Mozilla/CA/cacert.pem +3366 -0
  1850. data/Slic3r/Win/lib/std/XML/SAX/ParserDetails.ini +16 -0
  1851. data/Slic3r/Win/lib/vrt/00065b3cc7c31741588c51da0ebf7cfc/Storable.dll +0 -0
  1852. data/Slic3r/Win/lib/vrt/0e211ef5300e42b7129e72ce6934dd03/File.dll +0 -0
  1853. data/Slic3r/Win/lib/vrt/11897113663a72e0cf3a40f86569d0d3/package.lib +437 -0
  1854. data/Slic3r/Win/lib/vrt/13887bf5057dfc645e73f9cbc2107b0b/shared.dll +0 -0
  1855. data/Slic3r/Win/lib/vrt/13b74231834b96c1b29d9bb7ff9fc803/XSAccessor.dll +0 -0
  1856. data/Slic3r/Win/lib/vrt/17a8fd354d07706b1d8e07133653aefe/Unicode.dll +0 -0
  1857. data/Slic3r/Win/lib/vrt/1ff31eb32e672b10095dc07142eda94e/Byte.dll +0 -0
  1858. data/Slic3r/Win/lib/vrt/212acdb3b0d578c6c31b6f5b102aaf9f/OpenGL.dll +0 -0
  1859. data/Slic3r/Win/lib/vrt/212acdb3b0d578c6c31b6f5b102aaf9f/freeglut.dll +0 -0
  1860. data/Slic3r/Win/lib/vrt/2b09d17ec43a6c01f265254b54d60739/Dumper.dll +0 -0
  1861. data/Slic3r/Win/lib/vrt/2ce0a6f8648060f015cf6b795bedf11d/SHA.dll +0 -0
  1862. data/Slic3r/Win/lib/vrt/3545b2d83c9d9a29194f9ab80ec5474b/Fcntl.dll +0 -0
  1863. data/Slic3r/Win/lib/vrt/38786f297f552b7038b60152ad9b90fc/ExpatXS.dll +0 -0
  1864. data/Slic3r/Win/lib/vrt/3d306f1634430f34d0521f8ea684e9ec/SSLeay.dll +0 -0
  1865. data/Slic3r/Win/lib/vrt/3ea9b1cd80f790518c416324dd069ebd/encoding.dll +0 -0
  1866. data/Slic3r/Win/lib/vrt/41c42900fc0d462e9a31e174ac8a654c/Html.dll +0 -0
  1867. data/Slic3r/Win/lib/vrt/42c3d19347a691f255d231da3d91f1ab/package.lib +332 -0
  1868. data/Slic3r/Win/lib/vrt/4699e2a2c6a572106b4070861d78c22a/Parser.dll +0 -0
  1869. data/Slic3r/Win/lib/vrt/46c688003f4a63abb5816f68b951f727/MD5.dll +0 -0
  1870. data/Slic3r/Win/lib/vrt/471029ae61c0427e58f24ac9e5a0cca5/package.lib +41 -0
  1871. data/Slic3r/Win/lib/vrt/49bdccea41102e6d90906b74653d30ab/HiRes.dll +0 -0
  1872. data/Slic3r/Win/lib/vrt/4c9065158b425703c56336bd7fd5bbf2/SSLeay.dll +0 -0
  1873. data/Slic3r/Win/lib/vrt/50e0982503943dcf3f001fc2d17d4075/JP.dll +0 -0
  1874. data/Slic3r/Win/lib/vrt/528ccea98cad02a5f453a7135f9ca183/package.lib +0 -0
  1875. data/Slic3r/Win/lib/vrt/6419170f57dff2f058fefa3f8f37c897/EBCDIC.dll +0 -0
  1876. data/Slic3r/Win/lib/vrt/655af4e236089eadb910a60a39fbe815/attributes.dll +0 -0
  1877. data/Slic3r/Win/lib/vrt/6c123a3a5b411759cc21a293df5bed0e/SealRequireHints.dll +0 -0
  1878. data/Slic3r/Win/lib/vrt/7ba0890aa8ff0eed7abb9f76181bd637/Console.dll +0 -0
  1879. data/Slic3r/Win/lib/vrt/7ef678fd3db32983bdf488c788a3a763/IO.dll +0 -0
  1880. data/Slic3r/Win/lib/vrt/804f15d0b003b04c3feb68e47adacf8d/package.lib +1 -0
  1881. data/Slic3r/Win/lib/vrt/8f7c428c727a7d81643b50b598197734/API.dll +0 -0
  1882. data/Slic3r/Win/lib/vrt/8fa3f50b03f9cb0203031cf516aa3973/B.dll +0 -0
  1883. data/Slic3r/Win/lib/vrt/9573d0f8956394a9448b7cb70a24fed3/CN.dll +0 -0
  1884. data/Slic3r/Win/lib/vrt/9a02fe0b6c8a35ffbf56e88f9910abeb/Base64.dll +0 -0
  1885. data/Slic3r/Win/lib/vrt/9cc90b876890f13970933c948cbb4b2e/Print.dll +0 -0
  1886. data/Slic3r/Win/lib/vrt/9d4869e43aaebbcbfc9baec70819f444/indirect.dll +0 -0
  1887. data/Slic3r/Win/lib/vrt/a3600f18eb88b7c4835e2438eeda19b1/Symbol.dll +0 -0
  1888. data/Slic3r/Win/lib/vrt/a3719ad0fa76c06423d0397090ec4ed9/Libm.dll +0 -0
  1889. data/Slic3r/Win/lib/vrt/a40249e26296df558fcddd2c8cbfb2f6/UUID.dll +0 -0
  1890. data/Slic3r/Win/lib/vrt/aa455d4af51625c2acacb6716c0a6e01/scalar.dll +0 -0
  1891. data/Slic3r/Win/lib/vrt/aa976c80169f479f0613ff5283377098/Win32.dll +0 -0
  1892. data/Slic3r/Win/lib/vrt/ad648dbf31179700b4efd00b04f50dab/multidimensional.dll +0 -0
  1893. data/Slic3r/Win/lib/vrt/b48cd6cc5170110b04444736f8ca1a04/mro.dll +0 -0
  1894. data/Slic3r/Win/lib/vrt/b6a5c6ef2abf4a7046bb88d7a8b220ff/GLCanvas.dll +0 -0
  1895. data/Slic3r/Win/lib/vrt/bd26fbb8f6447c2e98cf359976a3c1a7/POSIX.dll +0 -0
  1896. data/Slic3r/Win/lib/vrt/c23df991c561704a8913289bdfea9462/Zlib.dll +0 -0
  1897. data/Slic3r/Win/lib/vrt/c8786c44f0a905ffe6d5d8a4068a75c2/Call.dll +0 -0
  1898. data/Slic3r/Win/lib/vrt/cbbb6d80da8c62ee893a65195943b803/re.dll +0 -0
  1899. data/Slic3r/Win/lib/vrt/cbfee14465f0627fbadfcc84b97d402b/KR.dll +0 -0
  1900. data/Slic3r/Win/lib/vrt/cd0b5b2fa854963191ca9718e26a0abc/Grid.dll +0 -0
  1901. data/Slic3r/Win/lib/vrt/ceb3487499a2d7f0edbcc6aa0c0536c1/NamedCapture.dll +0 -0
  1902. data/Slic3r/Win/lib/vrt/cfbd454ca865af139a419af806f1d4c7/DND.dll +0 -0
  1903. data/Slic3r/Win/lib/vrt/cfcde55111d441748de61cc95acb240e/Check.dll +0 -0
  1904. data/Slic3r/Win/lib/vrt/d0b4c3dceefb5d08dbe60f0e68d0da76/filehandles.dll +0 -0
  1905. data/Slic3r/Win/lib/vrt/d9c3e3943b3f28bc1f09e2f713cc6afb/Glob.dll +0 -0
  1906. data/Slic3r/Win/lib/vrt/da3813f7e06d5ace75632aaf1738303a/Cwd.dll +0 -0
  1907. data/Slic3r/Win/lib/vrt/e29b9764cd99fd442815834972733f63/Encode.dll +0 -0
  1908. data/Slic3r/Win/lib/vrt/e51409fbea61e7f44156de0a7d61ce6e/FastCalc.dll +0 -0
  1909. data/Slic3r/Win/lib/vrt/eaa3f41565bf2fe58068d68f47a06165/Bzip2.dll +0 -0
  1910. data/Slic3r/Win/lib/vrt/eb8576fa2c159886e7f37945c9fb302c/Util.dll +0 -0
  1911. data/Slic3r/Win/lib/vrt/ef0a1b3a50dcc9984703f576320986af/Socket.dll +0 -0
  1912. data/Slic3r/Win/lib/vrt/efa78e66d1d123d9a6f5890b6ca9167a/TW.dll +0 -0
  1913. data/Slic3r/Win/lib/vrt/f490c3f60de8989339da70e91e2faf32/threads.dll +0 -0
  1914. data/Slic3r/Win/lib/vrt/f6025e058c0367c56e8eed568e60077b/Clone.dll +0 -0
  1915. data/Slic3r/Win/lib/vrt/f8d8299b70fb38b8f4ba594e6f23c91f/XS.dll +0 -0
  1916. data/Slic3r/Win/lib/vrt/fa119178d164dcf97f19aecc876231c0/package.lib +0 -0
  1917. data/Slic3r/Win/lib/vrt/fadbe2ebaf950eb9e5e3c3d65739aa92/via.dll +0 -0
  1918. data/Slic3r/Win/lib/vrt/fb078e7d1a272046eb7bd617bd3ed5c4/Wx.dll +0 -0
  1919. data/Slic3r/Win/lib/vrt/ffa8ccc0f7f886ba695e841a491bce9a/XS.dll +0 -0
  1920. data/Slic3r/Win/res/Slic3r.icns +0 -0
  1921. data/Slic3r/Win/res/Slic3r.ico +0 -0
  1922. data/Slic3r/Win/res/Slic3r.png +0 -0
  1923. data/Slic3r/Win/res/Slic3r_128px.png +0 -0
  1924. data/Slic3r/Win/res/Slic3r_192px.png +0 -0
  1925. data/Slic3r/Win/res/Slic3r_192px_transparent.png +0 -0
  1926. data/Slic3r/Win/res/add.png +0 -0
  1927. data/Slic3r/Win/res/arrow_out.png +0 -0
  1928. data/Slic3r/Win/res/arrow_rotate_anticlockwise.png +0 -0
  1929. data/Slic3r/Win/res/arrow_rotate_clockwise.png +0 -0
  1930. data/Slic3r/Win/res/arrow_up.png +0 -0
  1931. data/Slic3r/Win/res/box.png +0 -0
  1932. data/Slic3r/Win/res/brick.png +0 -0
  1933. data/Slic3r/Win/res/brick_add.png +0 -0
  1934. data/Slic3r/Win/res/brick_delete.png +0 -0
  1935. data/Slic3r/Win/res/brick_go.png +0 -0
  1936. data/Slic3r/Win/res/bricks.png +0 -0
  1937. data/Slic3r/Win/res/building.png +0 -0
  1938. data/Slic3r/Win/res/bullet_black.png +0 -0
  1939. data/Slic3r/Win/res/bullet_blue.png +0 -0
  1940. data/Slic3r/Win/res/bullet_white.png +0 -0
  1941. data/Slic3r/Win/res/cog.png +0 -0
  1942. data/Slic3r/Win/res/cog_go.png +0 -0
  1943. data/Slic3r/Win/res/cross.png +0 -0
  1944. data/Slic3r/Win/res/delete.png +0 -0
  1945. data/Slic3r/Win/res/disk.png +0 -0
  1946. data/Slic3r/Win/res/error.png +0 -0
  1947. data/Slic3r/Win/res/funnel.png +0 -0
  1948. data/Slic3r/Win/res/hourglass.png +0 -0
  1949. data/Slic3r/Win/res/layers.png +0 -0
  1950. data/Slic3r/Win/res/note.png +0 -0
  1951. data/Slic3r/Win/res/package.png +0 -0
  1952. data/Slic3r/Win/res/package_green.png +0 -0
  1953. data/Slic3r/Win/res/page_white_go.png +0 -0
  1954. data/Slic3r/Win/res/plugin.png +0 -0
  1955. data/Slic3r/Win/res/printer_empty.png +0 -0
  1956. data/Slic3r/Win/res/shading.png +0 -0
  1957. data/Slic3r/Win/res/shape_ungroup.png +0 -0
  1958. data/Slic3r/Win/res/spool.png +0 -0
  1959. data/Slic3r/Win/res/tag_blue.png +0 -0
  1960. data/Slic3r/Win/res/time.png +0 -0
  1961. data/Slic3r/Win/res/wrench.png +0 -0
  1962. data/Slic3r/Win/slic3r-console.exe +0 -0
  1963. data/Slic3r/Win/slic3r.exe +0 -0
  1964. data/Slic3r/Win/temp.txt +278 -0
  1965. data/lib/STLExtract.rb +155 -0
  1966. data/lib/STLExtract/version.rb +3 -0
  1967. metadata +2044 -0
@@ -0,0 +1,379 @@
1
+ # $Id$
2
+
3
+ package XML::SAX;
4
+
5
+ use strict;
6
+ use vars qw($VERSION @ISA @EXPORT_OK);
7
+
8
+ $VERSION = '0.99';
9
+
10
+ use Exporter ();
11
+ @ISA = ('Exporter');
12
+
13
+ @EXPORT_OK = qw(Namespaces Validation);
14
+
15
+ use File::Basename qw(dirname);
16
+ use File::Spec ();
17
+ use Symbol qw(gensym);
18
+ use XML::SAX::ParserFactory (); # loaded for simplicity
19
+
20
+ use constant PARSER_DETAILS => "ParserDetails.ini";
21
+
22
+ use constant Namespaces => "http://xml.org/sax/features/namespaces";
23
+ use constant Validation => "http://xml.org/sax/features/validation";
24
+
25
+ my $known_parsers = undef;
26
+
27
+ # load_parsers takes the ParserDetails.ini file out of the same directory
28
+ # that XML::SAX is in, and looks at it. Format in POD below
29
+
30
+ =begin EXAMPLE
31
+
32
+ [XML::SAX::PurePerl]
33
+ http://xml.org/sax/features/namespaces = 1
34
+ http://xml.org/sax/features/validation = 0
35
+ # a comment
36
+
37
+ # blank lines ignored
38
+
39
+ [XML::SAX::AnotherParser]
40
+ http://xml.org/sax/features/namespaces = 0
41
+ http://xml.org/sax/features/validation = 1
42
+
43
+ =end EXAMPLE
44
+
45
+ =cut
46
+
47
+ sub load_parsers {
48
+ my $class = shift;
49
+ my $dir = shift;
50
+
51
+ # reset parsers
52
+ $known_parsers = [];
53
+
54
+ # get directory from wherever XML::SAX is installed
55
+ if (!$dir) {
56
+ $dir = $INC{'XML/SAX.pm'};
57
+ $dir = dirname($dir);
58
+ }
59
+
60
+ my $fh = gensym();
61
+ if (!open($fh, File::Spec->catfile($dir, "SAX", PARSER_DETAILS))) {
62
+ XML::SAX->do_warn("could not find " . PARSER_DETAILS . " in $dir/SAX\n");
63
+ return $class;
64
+ }
65
+
66
+ $known_parsers = $class->_parse_ini_file($fh);
67
+
68
+ return $class;
69
+ }
70
+
71
+ sub _parse_ini_file {
72
+ my $class = shift;
73
+ my ($fh) = @_;
74
+
75
+ my @config;
76
+
77
+ my $lineno = 0;
78
+ while (defined(my $line = <$fh>)) {
79
+ $lineno++;
80
+ my $original = $line;
81
+ # strip whitespace
82
+ $line =~ s/\s*$//m;
83
+ $line =~ s/^\s*//m;
84
+ # strip comments
85
+ $line =~ s/[#;].*$//m;
86
+ # ignore blanks
87
+ next if $line =~ /^$/m;
88
+
89
+ # heading
90
+ if ($line =~ /^\[\s*(.*)\s*\]$/m) {
91
+ push @config, { Name => $1 };
92
+ next;
93
+ }
94
+
95
+ # instruction
96
+ elsif ($line =~ /^(.*?)\s*?=\s*(.*)$/) {
97
+ unless(@config) {
98
+ push @config, { Name => '' };
99
+ }
100
+ $config[-1]{Features}{$1} = $2;
101
+ }
102
+
103
+ # not whitespace, comment, or instruction
104
+ else {
105
+ die "Invalid line in ini: $lineno\n>>> $original\n";
106
+ }
107
+ }
108
+
109
+ return \@config;
110
+ }
111
+
112
+ sub parsers {
113
+ my $class = shift;
114
+ if (!$known_parsers) {
115
+ $class->load_parsers();
116
+ }
117
+ return $known_parsers;
118
+ }
119
+
120
+ sub remove_parser {
121
+ my $class = shift;
122
+ my ($parser_module) = @_;
123
+
124
+ if (!$known_parsers) {
125
+ $class->load_parsers();
126
+ }
127
+
128
+ @$known_parsers = grep { $_->{Name} ne $parser_module } @$known_parsers;
129
+
130
+ return $class;
131
+ }
132
+
133
+ sub add_parser {
134
+ my $class = shift;
135
+ my ($parser_module) = @_;
136
+
137
+ if (!$known_parsers) {
138
+ $class->load_parsers();
139
+ }
140
+
141
+ # first load module, then query features, then push onto known_parsers,
142
+
143
+ my $parser_file = $parser_module;
144
+ $parser_file =~ s/::/\//g;
145
+ $parser_file .= ".pm";
146
+
147
+ require $parser_file;
148
+
149
+ my @features = $parser_module->supported_features();
150
+
151
+ my $new = { Name => $parser_module };
152
+ foreach my $feature (@features) {
153
+ $new->{Features}{$feature} = 1;
154
+ }
155
+
156
+ # If exists in list already, move to end.
157
+ my $done = 0;
158
+ my $pos = undef;
159
+ for (my $i = 0; $i < @$known_parsers; $i++) {
160
+ my $p = $known_parsers->[$i];
161
+ if ($p->{Name} eq $parser_module) {
162
+ $pos = $i;
163
+ }
164
+ }
165
+ if (defined $pos) {
166
+ splice(@$known_parsers, $pos, 1);
167
+ push @$known_parsers, $new;
168
+ $done++;
169
+ }
170
+
171
+ # Otherwise (not in list), add at end of list.
172
+ if (!$done) {
173
+ push @$known_parsers, $new;
174
+ }
175
+
176
+ return $class;
177
+ }
178
+
179
+ sub save_parsers {
180
+ my $class = shift;
181
+
182
+ # get directory from wherever XML::SAX is installed
183
+ my $dir = $INC{'XML/SAX.pm'};
184
+ $dir = dirname($dir);
185
+
186
+ my $file = File::Spec->catfile($dir, "SAX", PARSER_DETAILS);
187
+ chmod 0644, $file;
188
+ unlink($file);
189
+
190
+ my $fh = gensym();
191
+ open($fh, ">$file") ||
192
+ die "Cannot write to $file: $!";
193
+
194
+ foreach my $p (@$known_parsers) {
195
+ print $fh "[$p->{Name}]\n";
196
+ foreach my $key (keys %{$p->{Features}}) {
197
+ print $fh "$key = $p->{Features}{$key}\n";
198
+ }
199
+ print $fh "\n";
200
+ }
201
+
202
+ print $fh "\n";
203
+
204
+ close $fh;
205
+
206
+ return $class;
207
+ }
208
+
209
+ sub do_warn {
210
+ my $class = shift;
211
+ # Don't output warnings if running under Test::Harness
212
+ warn(@_) unless $ENV{HARNESS_ACTIVE};
213
+ }
214
+
215
+ 1;
216
+ __END__
217
+
218
+ =head1 NAME
219
+
220
+ XML::SAX - Simple API for XML
221
+
222
+ =head1 SYNOPSIS
223
+
224
+ use XML::SAX;
225
+
226
+ # get a list of known parsers
227
+ my $parsers = XML::SAX->parsers();
228
+
229
+ # add/update a parser
230
+ XML::SAX->add_parser(q(XML::SAX::PurePerl));
231
+
232
+ # remove parser
233
+ XML::SAX->remove_parser(q(XML::SAX::Foodelberry));
234
+
235
+ # save parsers
236
+ XML::SAX->save_parsers();
237
+
238
+ =head1 DESCRIPTION
239
+
240
+ XML::SAX is a SAX parser access API for Perl. It includes classes
241
+ and APIs required for implementing SAX drivers, along with a factory
242
+ class for returning any SAX parser installed on the user's system.
243
+
244
+ =head1 USING A SAX2 PARSER
245
+
246
+ The factory class is XML::SAX::ParserFactory. Please see the
247
+ documentation of that module for how to instantiate a SAX parser:
248
+ L<XML::SAX::ParserFactory>. However if you don't want to load up
249
+ another manual page, here's a short synopsis:
250
+
251
+ use XML::SAX::ParserFactory;
252
+ use XML::SAX::XYZHandler;
253
+ my $handler = XML::SAX::XYZHandler->new();
254
+ my $p = XML::SAX::ParserFactory->parser(Handler => $handler);
255
+ $p->parse_uri("foo.xml");
256
+ # or $p->parse_string("<foo/>") or $p->parse_file($fh);
257
+
258
+ This will automatically load a SAX2 parser (defaulting to
259
+ XML::SAX::PurePerl if no others are found) and return it to you.
260
+
261
+ In order to learn how to use SAX to parse XML, you will need to read
262
+ L<XML::SAX::Intro> and for reference, L<XML::SAX::Specification>.
263
+
264
+ =head1 WRITING A SAX2 PARSER
265
+
266
+ The first thing to remember in writing a SAX2 parser is to subclass
267
+ XML::SAX::Base. This will make your life infinitely easier, by providing
268
+ a number of methods automagically for you. See L<XML::SAX::Base> for more
269
+ details.
270
+
271
+ When writing a SAX2 parser that is compatible with XML::SAX, you need
272
+ to inform XML::SAX of the presence of that driver when you install it.
273
+ In order to do that, XML::SAX contains methods for saving the fact that
274
+ the parser exists on your system to a "INI" file, which is then loaded
275
+ to determine which parsers are installed.
276
+
277
+ The best way to do this is to follow these rules:
278
+
279
+ =over 4
280
+
281
+ =item * Add XML::SAX as a prerequisite in Makefile.PL:
282
+
283
+ WriteMakefile(
284
+ ...
285
+ PREREQ_PM => { 'XML::SAX' => 0 },
286
+ ...
287
+ );
288
+
289
+ Alternatively you may wish to check for it in other ways that will
290
+ cause more than just a warning.
291
+
292
+ =item * Add the following code snippet to your Makefile.PL:
293
+
294
+ sub MY::install {
295
+ package MY;
296
+ my $script = shift->SUPER::install(@_);
297
+ if (ExtUtils::MakeMaker::prompt(
298
+ "Do you want to modify ParserDetails.ini?", 'Y')
299
+ =~ /^y/i) {
300
+ $script =~ s/install :: (.*)$/install :: $1 install_sax_driver/m;
301
+ $script .= <<"INSTALL";
302
+
303
+ install_sax_driver :
304
+ \t\@\$(PERL) -MXML::SAX -e "XML::SAX->add_parser(q(\$(NAME)))->save_parsers()"
305
+
306
+ INSTALL
307
+ }
308
+ return $script;
309
+ }
310
+
311
+ Note that you should check the output of this - \$(NAME) will use the name of
312
+ your distribution, which may not be exactly what you want. For example XML::LibXML
313
+ has a driver called XML::LibXML::SAX::Generator, which is used in place of
314
+ \$(NAME) in the above.
315
+
316
+ =item * Add an XML::SAX test:
317
+
318
+ A test file should be added to your t/ directory containing something like the
319
+ following:
320
+
321
+ use Test;
322
+ BEGIN { plan tests => 3 }
323
+ use XML::SAX;
324
+ use XML::SAX::PurePerl::DebugHandler;
325
+ XML::SAX->add_parser(q(XML::SAX::MyDriver));
326
+ local $XML::SAX::ParserPackage = 'XML::SAX::MyDriver';
327
+ eval {
328
+ my $handler = XML::SAX::PurePerl::DebugHandler->new();
329
+ ok($handler);
330
+ my $parser = XML::SAX::ParserFactory->parser(Handler => $handler);
331
+ ok($parser);
332
+ ok($parser->isa('XML::SAX::MyDriver');
333
+ $parser->parse_string("<tag/>");
334
+ ok($handler->{seen}{start_element});
335
+ };
336
+
337
+ =back
338
+
339
+ =head1 EXPORTS
340
+
341
+ By default, XML::SAX exports nothing into the caller's namespace. However you
342
+ can request the symbols C<Namespaces> and C<Validation> which are the
343
+ URIs for those features, allowing an easier way to request those features
344
+ via ParserFactory:
345
+
346
+ use XML::SAX qw(Namespaces Validation);
347
+ my $factory = XML::SAX::ParserFactory->new();
348
+ $factory->require_feature(Namespaces);
349
+ $factory->require_feature(Validation);
350
+ my $parser = $factory->parser();
351
+
352
+ =head1 AUTHOR
353
+
354
+ Current maintainer: Grant McLean, grantm@cpan.org
355
+
356
+ Originally written by:
357
+
358
+ Matt Sergeant, matt@sergeant.org
359
+
360
+ Kip Hampton, khampton@totalcinema.com
361
+
362
+ Robin Berjon, robin@knowscape.com
363
+
364
+ =head1 LICENSE
365
+
366
+ This is free software, you may use it and distribute it under
367
+ the same terms as Perl itself.
368
+
369
+ =head1 SEE ALSO
370
+
371
+ L<XML::SAX::Base> for writing SAX Filters and Parsers
372
+
373
+ L<XML::SAX::PurePerl> for an XML parser written in 100%
374
+ pure perl.
375
+
376
+ L<XML::SAX::Exception> for details on exception handling
377
+
378
+ =cut
379
+
@@ -0,0 +1,3176 @@
1
+ package XML::SAX::Base;
2
+ BEGIN {
3
+ $XML::SAX::Base::VERSION = '1.08';
4
+ }
5
+
6
+ # version 0.10 - Kip Hampton <khampton@totalcinema.com>
7
+ # version 0.13 - Robin Berjon <robin@knowscape.com>
8
+ # version 0.15 - Kip Hampton <khampton@totalcinema.com>
9
+ # version 0.17 - Kip Hampton <khampton@totalcinema.com>
10
+ # version 0.19 - Kip Hampton <khampton@totalcinema.com>
11
+ # version 0.21 - Kip Hampton <khampton@totalcinema.com>
12
+ # version 0.22 - Robin Berjon <robin@knowscape.com>
13
+ # version 0.23 - Matt Sergeant <matt@sergeant.org>
14
+ # version 0.24 - Robin Berjon <robin@knowscape.com>
15
+ # version 0.25 - Kip Hampton <khampton@totalcinema.com>
16
+ # version 1.00 - Kip Hampton <khampton@totalcinema.com>
17
+ # version 1.01 - Kip Hampton <khampton@totalcinema.com>
18
+ # version 1.02 - Robin Berjon <robin@knowscape.com>
19
+ # version 1.03 - Matt Sergeant <matt@sergeant.org>
20
+ # version 1.04 - Kip Hampton <khampton@totalcinema.com>
21
+ # version 1.05 - Grant McLean <grantm@cpan.org>
22
+ # version 1.06 - Grant McLean <grantm@cpan.org>
23
+ # version 1.07 - Grant McLean <grantm@cpan.org>
24
+ # version 1.08 - Grant McLean <grantm@cpan.org>
25
+
26
+ #-----------------------------------------------------#
27
+ # STOP!!!!!
28
+ #
29
+ # This file is generated by the 'BuildSAXBase.pl' file
30
+ # that ships with the XML::SAX::Base distribution.
31
+ # If you need to make changes, patch that file NOT
32
+ # XML/SAX/Base.pm Better yet, fork the git repository
33
+ # commit your changes and send a pull request:
34
+ # https://github.com/grantm/XML-SAX-Base
35
+ #-----------------------------------------------------#
36
+
37
+ use strict;
38
+
39
+ use XML::SAX::Exception qw();
40
+
41
+ sub end_prefix_mapping {
42
+ my $self = shift;
43
+ if (defined $self->{Methods}->{'end_prefix_mapping'}) {
44
+ $self->{Methods}->{'end_prefix_mapping'}->(@_);
45
+ }
46
+ else {
47
+ my $method;
48
+ my $callbacks;
49
+ if (exists $self->{ParseOptions}) {
50
+ $callbacks = $self->{ParseOptions};
51
+ }
52
+ else {
53
+ $callbacks = $self;
54
+ }
55
+ if (0) { # dummy to make elsif's below compile
56
+ }
57
+ elsif (defined $callbacks->{'ContentHandler'} and $method = $callbacks->{'ContentHandler'}->can('end_prefix_mapping') ) {
58
+ my $handler = $callbacks->{'ContentHandler'};
59
+ $self->{Methods}->{'end_prefix_mapping'} = sub { $method->($handler, @_) };
60
+ return $method->($handler, @_);
61
+ }
62
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('end_prefix_mapping') ) {
63
+ my $handler = $callbacks->{'Handler'};
64
+ $self->{Methods}->{'end_prefix_mapping'} = sub { $method->($handler, @_) };
65
+ return $method->($handler, @_);
66
+ }
67
+ elsif (defined $callbacks->{'ContentHandler'}
68
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD')
69
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
70
+ )
71
+ {
72
+ my $res = eval { $callbacks->{'ContentHandler'}->end_prefix_mapping(@_) };
73
+ if ($@) {
74
+ die $@;
75
+ }
76
+ else {
77
+ # I think there's a buggette here...
78
+ # if the first call throws an exception, we don't set it up right.
79
+ # Not fatal, but we might want to address it.
80
+ my $handler = $callbacks->{'ContentHandler'};
81
+ $self->{Methods}->{'end_prefix_mapping'} = sub { $handler->end_prefix_mapping(@_) };
82
+ }
83
+ return $res;
84
+ }
85
+ elsif (defined $callbacks->{'Handler'}
86
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
87
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
88
+ )
89
+ {
90
+ my $res = eval { $callbacks->{'Handler'}->end_prefix_mapping(@_) };
91
+ if ($@) {
92
+ die $@;
93
+ }
94
+ else {
95
+ # I think there's a buggette here...
96
+ # if the first call throws an exception, we don't set it up right.
97
+ # Not fatal, but we might want to address it.
98
+ my $handler = $callbacks->{'Handler'};
99
+ $self->{Methods}->{'end_prefix_mapping'} = sub { $handler->end_prefix_mapping(@_) };
100
+ }
101
+ return $res;
102
+ }
103
+ else {
104
+ $self->{Methods}->{'end_prefix_mapping'} = sub { };
105
+ }
106
+ }
107
+
108
+ }
109
+
110
+ sub internal_entity_decl {
111
+ my $self = shift;
112
+ if (defined $self->{Methods}->{'internal_entity_decl'}) {
113
+ $self->{Methods}->{'internal_entity_decl'}->(@_);
114
+ }
115
+ else {
116
+ my $method;
117
+ my $callbacks;
118
+ if (exists $self->{ParseOptions}) {
119
+ $callbacks = $self->{ParseOptions};
120
+ }
121
+ else {
122
+ $callbacks = $self;
123
+ }
124
+ if (0) { # dummy to make elsif's below compile
125
+ }
126
+ elsif (defined $callbacks->{'DeclHandler'} and $method = $callbacks->{'DeclHandler'}->can('internal_entity_decl') ) {
127
+ my $handler = $callbacks->{'DeclHandler'};
128
+ $self->{Methods}->{'internal_entity_decl'} = sub { $method->($handler, @_) };
129
+ return $method->($handler, @_);
130
+ }
131
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('internal_entity_decl') ) {
132
+ my $handler = $callbacks->{'Handler'};
133
+ $self->{Methods}->{'internal_entity_decl'} = sub { $method->($handler, @_) };
134
+ return $method->($handler, @_);
135
+ }
136
+ elsif (defined $callbacks->{'DeclHandler'}
137
+ and $callbacks->{'DeclHandler'}->can('AUTOLOAD')
138
+ and $callbacks->{'DeclHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
139
+ )
140
+ {
141
+ my $res = eval { $callbacks->{'DeclHandler'}->internal_entity_decl(@_) };
142
+ if ($@) {
143
+ die $@;
144
+ }
145
+ else {
146
+ # I think there's a buggette here...
147
+ # if the first call throws an exception, we don't set it up right.
148
+ # Not fatal, but we might want to address it.
149
+ my $handler = $callbacks->{'DeclHandler'};
150
+ $self->{Methods}->{'internal_entity_decl'} = sub { $handler->internal_entity_decl(@_) };
151
+ }
152
+ return $res;
153
+ }
154
+ elsif (defined $callbacks->{'Handler'}
155
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
156
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
157
+ )
158
+ {
159
+ my $res = eval { $callbacks->{'Handler'}->internal_entity_decl(@_) };
160
+ if ($@) {
161
+ die $@;
162
+ }
163
+ else {
164
+ # I think there's a buggette here...
165
+ # if the first call throws an exception, we don't set it up right.
166
+ # Not fatal, but we might want to address it.
167
+ my $handler = $callbacks->{'Handler'};
168
+ $self->{Methods}->{'internal_entity_decl'} = sub { $handler->internal_entity_decl(@_) };
169
+ }
170
+ return $res;
171
+ }
172
+ else {
173
+ $self->{Methods}->{'internal_entity_decl'} = sub { };
174
+ }
175
+ }
176
+
177
+ }
178
+
179
+ sub characters {
180
+ my $self = shift;
181
+ if (defined $self->{Methods}->{'characters'}) {
182
+ $self->{Methods}->{'characters'}->(@_);
183
+ }
184
+ else {
185
+ my $method;
186
+ my $callbacks;
187
+ if (exists $self->{ParseOptions}) {
188
+ $callbacks = $self->{ParseOptions};
189
+ }
190
+ else {
191
+ $callbacks = $self;
192
+ }
193
+ if (0) { # dummy to make elsif's below compile
194
+ }
195
+ elsif (defined $callbacks->{'ContentHandler'} and $method = $callbacks->{'ContentHandler'}->can('characters') ) {
196
+ my $handler = $callbacks->{'ContentHandler'};
197
+ $self->{Methods}->{'characters'} = sub { $method->($handler, @_) };
198
+ return $method->($handler, @_);
199
+ }
200
+ elsif (defined $callbacks->{'DocumentHandler'} and $method = $callbacks->{'DocumentHandler'}->can('characters') ) {
201
+ my $handler = $callbacks->{'DocumentHandler'};
202
+ $self->{Methods}->{'characters'} = sub { $method->($handler, @_) };
203
+ return $method->($handler, @_);
204
+ }
205
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('characters') ) {
206
+ my $handler = $callbacks->{'Handler'};
207
+ $self->{Methods}->{'characters'} = sub { $method->($handler, @_) };
208
+ return $method->($handler, @_);
209
+ }
210
+ elsif (defined $callbacks->{'ContentHandler'}
211
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD')
212
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
213
+ )
214
+ {
215
+ my $res = eval { $callbacks->{'ContentHandler'}->characters(@_) };
216
+ if ($@) {
217
+ die $@;
218
+ }
219
+ else {
220
+ # I think there's a buggette here...
221
+ # if the first call throws an exception, we don't set it up right.
222
+ # Not fatal, but we might want to address it.
223
+ my $handler = $callbacks->{'ContentHandler'};
224
+ $self->{Methods}->{'characters'} = sub { $handler->characters(@_) };
225
+ }
226
+ return $res;
227
+ }
228
+ elsif (defined $callbacks->{'DocumentHandler'}
229
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD')
230
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
231
+ )
232
+ {
233
+ my $res = eval { $callbacks->{'DocumentHandler'}->characters(@_) };
234
+ if ($@) {
235
+ die $@;
236
+ }
237
+ else {
238
+ # I think there's a buggette here...
239
+ # if the first call throws an exception, we don't set it up right.
240
+ # Not fatal, but we might want to address it.
241
+ my $handler = $callbacks->{'DocumentHandler'};
242
+ $self->{Methods}->{'characters'} = sub { $handler->characters(@_) };
243
+ }
244
+ return $res;
245
+ }
246
+ elsif (defined $callbacks->{'Handler'}
247
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
248
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
249
+ )
250
+ {
251
+ my $res = eval { $callbacks->{'Handler'}->characters(@_) };
252
+ if ($@) {
253
+ die $@;
254
+ }
255
+ else {
256
+ # I think there's a buggette here...
257
+ # if the first call throws an exception, we don't set it up right.
258
+ # Not fatal, but we might want to address it.
259
+ my $handler = $callbacks->{'Handler'};
260
+ $self->{Methods}->{'characters'} = sub { $handler->characters(@_) };
261
+ }
262
+ return $res;
263
+ }
264
+ else {
265
+ $self->{Methods}->{'characters'} = sub { };
266
+ }
267
+ }
268
+
269
+ }
270
+
271
+ sub start_element {
272
+ my $self = shift;
273
+ if (defined $self->{Methods}->{'start_element'}) {
274
+ $self->{Methods}->{'start_element'}->(@_);
275
+ }
276
+ else {
277
+ my $method;
278
+ my $callbacks;
279
+ if (exists $self->{ParseOptions}) {
280
+ $callbacks = $self->{ParseOptions};
281
+ }
282
+ else {
283
+ $callbacks = $self;
284
+ }
285
+ if (0) { # dummy to make elsif's below compile
286
+ }
287
+ elsif (defined $callbacks->{'ContentHandler'} and $method = $callbacks->{'ContentHandler'}->can('start_element') ) {
288
+ my $handler = $callbacks->{'ContentHandler'};
289
+ $self->{Methods}->{'start_element'} = sub { $method->($handler, @_) };
290
+ return $method->($handler, @_);
291
+ }
292
+ elsif (defined $callbacks->{'DocumentHandler'} and $method = $callbacks->{'DocumentHandler'}->can('start_element') ) {
293
+ my $handler = $callbacks->{'DocumentHandler'};
294
+ $self->{Methods}->{'start_element'} = sub { $method->($handler, @_) };
295
+ return $method->($handler, @_);
296
+ }
297
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('start_element') ) {
298
+ my $handler = $callbacks->{'Handler'};
299
+ $self->{Methods}->{'start_element'} = sub { $method->($handler, @_) };
300
+ return $method->($handler, @_);
301
+ }
302
+ elsif (defined $callbacks->{'ContentHandler'}
303
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD')
304
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
305
+ )
306
+ {
307
+ my $res = eval { $callbacks->{'ContentHandler'}->start_element(@_) };
308
+ if ($@) {
309
+ die $@;
310
+ }
311
+ else {
312
+ # I think there's a buggette here...
313
+ # if the first call throws an exception, we don't set it up right.
314
+ # Not fatal, but we might want to address it.
315
+ my $handler = $callbacks->{'ContentHandler'};
316
+ $self->{Methods}->{'start_element'} = sub { $handler->start_element(@_) };
317
+ }
318
+ return $res;
319
+ }
320
+ elsif (defined $callbacks->{'DocumentHandler'}
321
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD')
322
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
323
+ )
324
+ {
325
+ my $res = eval { $callbacks->{'DocumentHandler'}->start_element(@_) };
326
+ if ($@) {
327
+ die $@;
328
+ }
329
+ else {
330
+ # I think there's a buggette here...
331
+ # if the first call throws an exception, we don't set it up right.
332
+ # Not fatal, but we might want to address it.
333
+ my $handler = $callbacks->{'DocumentHandler'};
334
+ $self->{Methods}->{'start_element'} = sub { $handler->start_element(@_) };
335
+ }
336
+ return $res;
337
+ }
338
+ elsif (defined $callbacks->{'Handler'}
339
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
340
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
341
+ )
342
+ {
343
+ my $res = eval { $callbacks->{'Handler'}->start_element(@_) };
344
+ if ($@) {
345
+ die $@;
346
+ }
347
+ else {
348
+ # I think there's a buggette here...
349
+ # if the first call throws an exception, we don't set it up right.
350
+ # Not fatal, but we might want to address it.
351
+ my $handler = $callbacks->{'Handler'};
352
+ $self->{Methods}->{'start_element'} = sub { $handler->start_element(@_) };
353
+ }
354
+ return $res;
355
+ }
356
+ else {
357
+ $self->{Methods}->{'start_element'} = sub { };
358
+ }
359
+ }
360
+
361
+ }
362
+
363
+ sub external_entity_decl {
364
+ my $self = shift;
365
+ if (defined $self->{Methods}->{'external_entity_decl'}) {
366
+ $self->{Methods}->{'external_entity_decl'}->(@_);
367
+ }
368
+ else {
369
+ my $method;
370
+ my $callbacks;
371
+ if (exists $self->{ParseOptions}) {
372
+ $callbacks = $self->{ParseOptions};
373
+ }
374
+ else {
375
+ $callbacks = $self;
376
+ }
377
+ if (0) { # dummy to make elsif's below compile
378
+ }
379
+ elsif (defined $callbacks->{'DeclHandler'} and $method = $callbacks->{'DeclHandler'}->can('external_entity_decl') ) {
380
+ my $handler = $callbacks->{'DeclHandler'};
381
+ $self->{Methods}->{'external_entity_decl'} = sub { $method->($handler, @_) };
382
+ return $method->($handler, @_);
383
+ }
384
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('external_entity_decl') ) {
385
+ my $handler = $callbacks->{'Handler'};
386
+ $self->{Methods}->{'external_entity_decl'} = sub { $method->($handler, @_) };
387
+ return $method->($handler, @_);
388
+ }
389
+ elsif (defined $callbacks->{'DeclHandler'}
390
+ and $callbacks->{'DeclHandler'}->can('AUTOLOAD')
391
+ and $callbacks->{'DeclHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
392
+ )
393
+ {
394
+ my $res = eval { $callbacks->{'DeclHandler'}->external_entity_decl(@_) };
395
+ if ($@) {
396
+ die $@;
397
+ }
398
+ else {
399
+ # I think there's a buggette here...
400
+ # if the first call throws an exception, we don't set it up right.
401
+ # Not fatal, but we might want to address it.
402
+ my $handler = $callbacks->{'DeclHandler'};
403
+ $self->{Methods}->{'external_entity_decl'} = sub { $handler->external_entity_decl(@_) };
404
+ }
405
+ return $res;
406
+ }
407
+ elsif (defined $callbacks->{'Handler'}
408
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
409
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
410
+ )
411
+ {
412
+ my $res = eval { $callbacks->{'Handler'}->external_entity_decl(@_) };
413
+ if ($@) {
414
+ die $@;
415
+ }
416
+ else {
417
+ # I think there's a buggette here...
418
+ # if the first call throws an exception, we don't set it up right.
419
+ # Not fatal, but we might want to address it.
420
+ my $handler = $callbacks->{'Handler'};
421
+ $self->{Methods}->{'external_entity_decl'} = sub { $handler->external_entity_decl(@_) };
422
+ }
423
+ return $res;
424
+ }
425
+ else {
426
+ $self->{Methods}->{'external_entity_decl'} = sub { };
427
+ }
428
+ }
429
+
430
+ }
431
+
432
+ sub xml_decl {
433
+ my $self = shift;
434
+ if (defined $self->{Methods}->{'xml_decl'}) {
435
+ $self->{Methods}->{'xml_decl'}->(@_);
436
+ }
437
+ else {
438
+ my $method;
439
+ my $callbacks;
440
+ if (exists $self->{ParseOptions}) {
441
+ $callbacks = $self->{ParseOptions};
442
+ }
443
+ else {
444
+ $callbacks = $self;
445
+ }
446
+ if (0) { # dummy to make elsif's below compile
447
+ }
448
+ elsif (defined $callbacks->{'DTDHandler'} and $method = $callbacks->{'DTDHandler'}->can('xml_decl') ) {
449
+ my $handler = $callbacks->{'DTDHandler'};
450
+ $self->{Methods}->{'xml_decl'} = sub { $method->($handler, @_) };
451
+ return $method->($handler, @_);
452
+ }
453
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('xml_decl') ) {
454
+ my $handler = $callbacks->{'Handler'};
455
+ $self->{Methods}->{'xml_decl'} = sub { $method->($handler, @_) };
456
+ return $method->($handler, @_);
457
+ }
458
+ elsif (defined $callbacks->{'DTDHandler'}
459
+ and $callbacks->{'DTDHandler'}->can('AUTOLOAD')
460
+ and $callbacks->{'DTDHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
461
+ )
462
+ {
463
+ my $res = eval { $callbacks->{'DTDHandler'}->xml_decl(@_) };
464
+ if ($@) {
465
+ die $@;
466
+ }
467
+ else {
468
+ # I think there's a buggette here...
469
+ # if the first call throws an exception, we don't set it up right.
470
+ # Not fatal, but we might want to address it.
471
+ my $handler = $callbacks->{'DTDHandler'};
472
+ $self->{Methods}->{'xml_decl'} = sub { $handler->xml_decl(@_) };
473
+ }
474
+ return $res;
475
+ }
476
+ elsif (defined $callbacks->{'Handler'}
477
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
478
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
479
+ )
480
+ {
481
+ my $res = eval { $callbacks->{'Handler'}->xml_decl(@_) };
482
+ if ($@) {
483
+ die $@;
484
+ }
485
+ else {
486
+ # I think there's a buggette here...
487
+ # if the first call throws an exception, we don't set it up right.
488
+ # Not fatal, but we might want to address it.
489
+ my $handler = $callbacks->{'Handler'};
490
+ $self->{Methods}->{'xml_decl'} = sub { $handler->xml_decl(@_) };
491
+ }
492
+ return $res;
493
+ }
494
+ else {
495
+ $self->{Methods}->{'xml_decl'} = sub { };
496
+ }
497
+ }
498
+
499
+ }
500
+
501
+ sub entity_decl {
502
+ my $self = shift;
503
+ if (defined $self->{Methods}->{'entity_decl'}) {
504
+ $self->{Methods}->{'entity_decl'}->(@_);
505
+ }
506
+ else {
507
+ my $method;
508
+ my $callbacks;
509
+ if (exists $self->{ParseOptions}) {
510
+ $callbacks = $self->{ParseOptions};
511
+ }
512
+ else {
513
+ $callbacks = $self;
514
+ }
515
+ if (0) { # dummy to make elsif's below compile
516
+ }
517
+ elsif (defined $callbacks->{'DTDHandler'} and $method = $callbacks->{'DTDHandler'}->can('entity_decl') ) {
518
+ my $handler = $callbacks->{'DTDHandler'};
519
+ $self->{Methods}->{'entity_decl'} = sub { $method->($handler, @_) };
520
+ return $method->($handler, @_);
521
+ }
522
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('entity_decl') ) {
523
+ my $handler = $callbacks->{'Handler'};
524
+ $self->{Methods}->{'entity_decl'} = sub { $method->($handler, @_) };
525
+ return $method->($handler, @_);
526
+ }
527
+ elsif (defined $callbacks->{'DTDHandler'}
528
+ and $callbacks->{'DTDHandler'}->can('AUTOLOAD')
529
+ and $callbacks->{'DTDHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
530
+ )
531
+ {
532
+ my $res = eval { $callbacks->{'DTDHandler'}->entity_decl(@_) };
533
+ if ($@) {
534
+ die $@;
535
+ }
536
+ else {
537
+ # I think there's a buggette here...
538
+ # if the first call throws an exception, we don't set it up right.
539
+ # Not fatal, but we might want to address it.
540
+ my $handler = $callbacks->{'DTDHandler'};
541
+ $self->{Methods}->{'entity_decl'} = sub { $handler->entity_decl(@_) };
542
+ }
543
+ return $res;
544
+ }
545
+ elsif (defined $callbacks->{'Handler'}
546
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
547
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
548
+ )
549
+ {
550
+ my $res = eval { $callbacks->{'Handler'}->entity_decl(@_) };
551
+ if ($@) {
552
+ die $@;
553
+ }
554
+ else {
555
+ # I think there's a buggette here...
556
+ # if the first call throws an exception, we don't set it up right.
557
+ # Not fatal, but we might want to address it.
558
+ my $handler = $callbacks->{'Handler'};
559
+ $self->{Methods}->{'entity_decl'} = sub { $handler->entity_decl(@_) };
560
+ }
561
+ return $res;
562
+ }
563
+ else {
564
+ $self->{Methods}->{'entity_decl'} = sub { };
565
+ }
566
+ }
567
+
568
+ }
569
+
570
+ sub end_dtd {
571
+ my $self = shift;
572
+ if (defined $self->{Methods}->{'end_dtd'}) {
573
+ $self->{Methods}->{'end_dtd'}->(@_);
574
+ }
575
+ else {
576
+ my $method;
577
+ my $callbacks;
578
+ if (exists $self->{ParseOptions}) {
579
+ $callbacks = $self->{ParseOptions};
580
+ }
581
+ else {
582
+ $callbacks = $self;
583
+ }
584
+ if (0) { # dummy to make elsif's below compile
585
+ }
586
+ elsif (defined $callbacks->{'LexicalHandler'} and $method = $callbacks->{'LexicalHandler'}->can('end_dtd') ) {
587
+ my $handler = $callbacks->{'LexicalHandler'};
588
+ $self->{Methods}->{'end_dtd'} = sub { $method->($handler, @_) };
589
+ return $method->($handler, @_);
590
+ }
591
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('end_dtd') ) {
592
+ my $handler = $callbacks->{'Handler'};
593
+ $self->{Methods}->{'end_dtd'} = sub { $method->($handler, @_) };
594
+ return $method->($handler, @_);
595
+ }
596
+ elsif (defined $callbacks->{'LexicalHandler'}
597
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD')
598
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
599
+ )
600
+ {
601
+ my $res = eval { $callbacks->{'LexicalHandler'}->end_dtd(@_) };
602
+ if ($@) {
603
+ die $@;
604
+ }
605
+ else {
606
+ # I think there's a buggette here...
607
+ # if the first call throws an exception, we don't set it up right.
608
+ # Not fatal, but we might want to address it.
609
+ my $handler = $callbacks->{'LexicalHandler'};
610
+ $self->{Methods}->{'end_dtd'} = sub { $handler->end_dtd(@_) };
611
+ }
612
+ return $res;
613
+ }
614
+ elsif (defined $callbacks->{'Handler'}
615
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
616
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
617
+ )
618
+ {
619
+ my $res = eval { $callbacks->{'Handler'}->end_dtd(@_) };
620
+ if ($@) {
621
+ die $@;
622
+ }
623
+ else {
624
+ # I think there's a buggette here...
625
+ # if the first call throws an exception, we don't set it up right.
626
+ # Not fatal, but we might want to address it.
627
+ my $handler = $callbacks->{'Handler'};
628
+ $self->{Methods}->{'end_dtd'} = sub { $handler->end_dtd(@_) };
629
+ }
630
+ return $res;
631
+ }
632
+ else {
633
+ $self->{Methods}->{'end_dtd'} = sub { };
634
+ }
635
+ }
636
+
637
+ }
638
+
639
+ sub unparsed_entity_decl {
640
+ my $self = shift;
641
+ if (defined $self->{Methods}->{'unparsed_entity_decl'}) {
642
+ $self->{Methods}->{'unparsed_entity_decl'}->(@_);
643
+ }
644
+ else {
645
+ my $method;
646
+ my $callbacks;
647
+ if (exists $self->{ParseOptions}) {
648
+ $callbacks = $self->{ParseOptions};
649
+ }
650
+ else {
651
+ $callbacks = $self;
652
+ }
653
+ if (0) { # dummy to make elsif's below compile
654
+ }
655
+ elsif (defined $callbacks->{'DTDHandler'} and $method = $callbacks->{'DTDHandler'}->can('unparsed_entity_decl') ) {
656
+ my $handler = $callbacks->{'DTDHandler'};
657
+ $self->{Methods}->{'unparsed_entity_decl'} = sub { $method->($handler, @_) };
658
+ return $method->($handler, @_);
659
+ }
660
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('unparsed_entity_decl') ) {
661
+ my $handler = $callbacks->{'Handler'};
662
+ $self->{Methods}->{'unparsed_entity_decl'} = sub { $method->($handler, @_) };
663
+ return $method->($handler, @_);
664
+ }
665
+ elsif (defined $callbacks->{'DTDHandler'}
666
+ and $callbacks->{'DTDHandler'}->can('AUTOLOAD')
667
+ and $callbacks->{'DTDHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
668
+ )
669
+ {
670
+ my $res = eval { $callbacks->{'DTDHandler'}->unparsed_entity_decl(@_) };
671
+ if ($@) {
672
+ die $@;
673
+ }
674
+ else {
675
+ # I think there's a buggette here...
676
+ # if the first call throws an exception, we don't set it up right.
677
+ # Not fatal, but we might want to address it.
678
+ my $handler = $callbacks->{'DTDHandler'};
679
+ $self->{Methods}->{'unparsed_entity_decl'} = sub { $handler->unparsed_entity_decl(@_) };
680
+ }
681
+ return $res;
682
+ }
683
+ elsif (defined $callbacks->{'Handler'}
684
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
685
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
686
+ )
687
+ {
688
+ my $res = eval { $callbacks->{'Handler'}->unparsed_entity_decl(@_) };
689
+ if ($@) {
690
+ die $@;
691
+ }
692
+ else {
693
+ # I think there's a buggette here...
694
+ # if the first call throws an exception, we don't set it up right.
695
+ # Not fatal, but we might want to address it.
696
+ my $handler = $callbacks->{'Handler'};
697
+ $self->{Methods}->{'unparsed_entity_decl'} = sub { $handler->unparsed_entity_decl(@_) };
698
+ }
699
+ return $res;
700
+ }
701
+ else {
702
+ $self->{Methods}->{'unparsed_entity_decl'} = sub { };
703
+ }
704
+ }
705
+
706
+ }
707
+
708
+ sub processing_instruction {
709
+ my $self = shift;
710
+ if (defined $self->{Methods}->{'processing_instruction'}) {
711
+ $self->{Methods}->{'processing_instruction'}->(@_);
712
+ }
713
+ else {
714
+ my $method;
715
+ my $callbacks;
716
+ if (exists $self->{ParseOptions}) {
717
+ $callbacks = $self->{ParseOptions};
718
+ }
719
+ else {
720
+ $callbacks = $self;
721
+ }
722
+ if (0) { # dummy to make elsif's below compile
723
+ }
724
+ elsif (defined $callbacks->{'ContentHandler'} and $method = $callbacks->{'ContentHandler'}->can('processing_instruction') ) {
725
+ my $handler = $callbacks->{'ContentHandler'};
726
+ $self->{Methods}->{'processing_instruction'} = sub { $method->($handler, @_) };
727
+ return $method->($handler, @_);
728
+ }
729
+ elsif (defined $callbacks->{'DocumentHandler'} and $method = $callbacks->{'DocumentHandler'}->can('processing_instruction') ) {
730
+ my $handler = $callbacks->{'DocumentHandler'};
731
+ $self->{Methods}->{'processing_instruction'} = sub { $method->($handler, @_) };
732
+ return $method->($handler, @_);
733
+ }
734
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('processing_instruction') ) {
735
+ my $handler = $callbacks->{'Handler'};
736
+ $self->{Methods}->{'processing_instruction'} = sub { $method->($handler, @_) };
737
+ return $method->($handler, @_);
738
+ }
739
+ elsif (defined $callbacks->{'ContentHandler'}
740
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD')
741
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
742
+ )
743
+ {
744
+ my $res = eval { $callbacks->{'ContentHandler'}->processing_instruction(@_) };
745
+ if ($@) {
746
+ die $@;
747
+ }
748
+ else {
749
+ # I think there's a buggette here...
750
+ # if the first call throws an exception, we don't set it up right.
751
+ # Not fatal, but we might want to address it.
752
+ my $handler = $callbacks->{'ContentHandler'};
753
+ $self->{Methods}->{'processing_instruction'} = sub { $handler->processing_instruction(@_) };
754
+ }
755
+ return $res;
756
+ }
757
+ elsif (defined $callbacks->{'DocumentHandler'}
758
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD')
759
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
760
+ )
761
+ {
762
+ my $res = eval { $callbacks->{'DocumentHandler'}->processing_instruction(@_) };
763
+ if ($@) {
764
+ die $@;
765
+ }
766
+ else {
767
+ # I think there's a buggette here...
768
+ # if the first call throws an exception, we don't set it up right.
769
+ # Not fatal, but we might want to address it.
770
+ my $handler = $callbacks->{'DocumentHandler'};
771
+ $self->{Methods}->{'processing_instruction'} = sub { $handler->processing_instruction(@_) };
772
+ }
773
+ return $res;
774
+ }
775
+ elsif (defined $callbacks->{'Handler'}
776
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
777
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
778
+ )
779
+ {
780
+ my $res = eval { $callbacks->{'Handler'}->processing_instruction(@_) };
781
+ if ($@) {
782
+ die $@;
783
+ }
784
+ else {
785
+ # I think there's a buggette here...
786
+ # if the first call throws an exception, we don't set it up right.
787
+ # Not fatal, but we might want to address it.
788
+ my $handler = $callbacks->{'Handler'};
789
+ $self->{Methods}->{'processing_instruction'} = sub { $handler->processing_instruction(@_) };
790
+ }
791
+ return $res;
792
+ }
793
+ else {
794
+ $self->{Methods}->{'processing_instruction'} = sub { };
795
+ }
796
+ }
797
+
798
+ }
799
+
800
+ sub attribute_decl {
801
+ my $self = shift;
802
+ if (defined $self->{Methods}->{'attribute_decl'}) {
803
+ $self->{Methods}->{'attribute_decl'}->(@_);
804
+ }
805
+ else {
806
+ my $method;
807
+ my $callbacks;
808
+ if (exists $self->{ParseOptions}) {
809
+ $callbacks = $self->{ParseOptions};
810
+ }
811
+ else {
812
+ $callbacks = $self;
813
+ }
814
+ if (0) { # dummy to make elsif's below compile
815
+ }
816
+ elsif (defined $callbacks->{'DeclHandler'} and $method = $callbacks->{'DeclHandler'}->can('attribute_decl') ) {
817
+ my $handler = $callbacks->{'DeclHandler'};
818
+ $self->{Methods}->{'attribute_decl'} = sub { $method->($handler, @_) };
819
+ return $method->($handler, @_);
820
+ }
821
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('attribute_decl') ) {
822
+ my $handler = $callbacks->{'Handler'};
823
+ $self->{Methods}->{'attribute_decl'} = sub { $method->($handler, @_) };
824
+ return $method->($handler, @_);
825
+ }
826
+ elsif (defined $callbacks->{'DeclHandler'}
827
+ and $callbacks->{'DeclHandler'}->can('AUTOLOAD')
828
+ and $callbacks->{'DeclHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
829
+ )
830
+ {
831
+ my $res = eval { $callbacks->{'DeclHandler'}->attribute_decl(@_) };
832
+ if ($@) {
833
+ die $@;
834
+ }
835
+ else {
836
+ # I think there's a buggette here...
837
+ # if the first call throws an exception, we don't set it up right.
838
+ # Not fatal, but we might want to address it.
839
+ my $handler = $callbacks->{'DeclHandler'};
840
+ $self->{Methods}->{'attribute_decl'} = sub { $handler->attribute_decl(@_) };
841
+ }
842
+ return $res;
843
+ }
844
+ elsif (defined $callbacks->{'Handler'}
845
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
846
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
847
+ )
848
+ {
849
+ my $res = eval { $callbacks->{'Handler'}->attribute_decl(@_) };
850
+ if ($@) {
851
+ die $@;
852
+ }
853
+ else {
854
+ # I think there's a buggette here...
855
+ # if the first call throws an exception, we don't set it up right.
856
+ # Not fatal, but we might want to address it.
857
+ my $handler = $callbacks->{'Handler'};
858
+ $self->{Methods}->{'attribute_decl'} = sub { $handler->attribute_decl(@_) };
859
+ }
860
+ return $res;
861
+ }
862
+ else {
863
+ $self->{Methods}->{'attribute_decl'} = sub { };
864
+ }
865
+ }
866
+
867
+ }
868
+
869
+ sub fatal_error {
870
+ my $self = shift;
871
+ if (defined $self->{Methods}->{'fatal_error'}) {
872
+ $self->{Methods}->{'fatal_error'}->(@_);
873
+ }
874
+ else {
875
+ my $method;
876
+ my $callbacks;
877
+ if (exists $self->{ParseOptions}) {
878
+ $callbacks = $self->{ParseOptions};
879
+ }
880
+ else {
881
+ $callbacks = $self;
882
+ }
883
+ if (0) { # dummy to make elsif's below compile
884
+ }
885
+ elsif (defined $callbacks->{'ErrorHandler'} and $method = $callbacks->{'ErrorHandler'}->can('fatal_error') ) {
886
+ my $handler = $callbacks->{'ErrorHandler'};
887
+ $self->{Methods}->{'fatal_error'} = sub { $method->($handler, @_) };
888
+ return $method->($handler, @_);
889
+ }
890
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('fatal_error') ) {
891
+ my $handler = $callbacks->{'Handler'};
892
+ $self->{Methods}->{'fatal_error'} = sub { $method->($handler, @_) };
893
+ return $method->($handler, @_);
894
+ }
895
+ elsif (defined $callbacks->{'ErrorHandler'}
896
+ and $callbacks->{'ErrorHandler'}->can('AUTOLOAD')
897
+ and $callbacks->{'ErrorHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
898
+ )
899
+ {
900
+ my $res = eval { $callbacks->{'ErrorHandler'}->fatal_error(@_) };
901
+ if ($@) {
902
+ die $@;
903
+ }
904
+ else {
905
+ # I think there's a buggette here...
906
+ # if the first call throws an exception, we don't set it up right.
907
+ # Not fatal, but we might want to address it.
908
+ my $handler = $callbacks->{'ErrorHandler'};
909
+ $self->{Methods}->{'fatal_error'} = sub { $handler->fatal_error(@_) };
910
+ }
911
+ return $res;
912
+ }
913
+ elsif (defined $callbacks->{'Handler'}
914
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
915
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
916
+ )
917
+ {
918
+ my $res = eval { $callbacks->{'Handler'}->fatal_error(@_) };
919
+ if ($@) {
920
+ die $@;
921
+ }
922
+ else {
923
+ # I think there's a buggette here...
924
+ # if the first call throws an exception, we don't set it up right.
925
+ # Not fatal, but we might want to address it.
926
+ my $handler = $callbacks->{'Handler'};
927
+ $self->{Methods}->{'fatal_error'} = sub { $handler->fatal_error(@_) };
928
+ }
929
+ return $res;
930
+ }
931
+ else {
932
+ $self->{Methods}->{'fatal_error'} = sub { };
933
+ }
934
+ }
935
+
936
+ }
937
+
938
+ sub end_cdata {
939
+ my $self = shift;
940
+ if (defined $self->{Methods}->{'end_cdata'}) {
941
+ $self->{Methods}->{'end_cdata'}->(@_);
942
+ }
943
+ else {
944
+ my $method;
945
+ my $callbacks;
946
+ if (exists $self->{ParseOptions}) {
947
+ $callbacks = $self->{ParseOptions};
948
+ }
949
+ else {
950
+ $callbacks = $self;
951
+ }
952
+ if (0) { # dummy to make elsif's below compile
953
+ }
954
+ elsif (defined $callbacks->{'DocumentHandler'} and $method = $callbacks->{'DocumentHandler'}->can('end_cdata') ) {
955
+ my $handler = $callbacks->{'DocumentHandler'};
956
+ $self->{Methods}->{'end_cdata'} = sub { $method->($handler, @_) };
957
+ return $method->($handler, @_);
958
+ }
959
+ elsif (defined $callbacks->{'LexicalHandler'} and $method = $callbacks->{'LexicalHandler'}->can('end_cdata') ) {
960
+ my $handler = $callbacks->{'LexicalHandler'};
961
+ $self->{Methods}->{'end_cdata'} = sub { $method->($handler, @_) };
962
+ return $method->($handler, @_);
963
+ }
964
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('end_cdata') ) {
965
+ my $handler = $callbacks->{'Handler'};
966
+ $self->{Methods}->{'end_cdata'} = sub { $method->($handler, @_) };
967
+ return $method->($handler, @_);
968
+ }
969
+ elsif (defined $callbacks->{'DocumentHandler'}
970
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD')
971
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
972
+ )
973
+ {
974
+ my $res = eval { $callbacks->{'DocumentHandler'}->end_cdata(@_) };
975
+ if ($@) {
976
+ die $@;
977
+ }
978
+ else {
979
+ # I think there's a buggette here...
980
+ # if the first call throws an exception, we don't set it up right.
981
+ # Not fatal, but we might want to address it.
982
+ my $handler = $callbacks->{'DocumentHandler'};
983
+ $self->{Methods}->{'end_cdata'} = sub { $handler->end_cdata(@_) };
984
+ }
985
+ return $res;
986
+ }
987
+ elsif (defined $callbacks->{'LexicalHandler'}
988
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD')
989
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
990
+ )
991
+ {
992
+ my $res = eval { $callbacks->{'LexicalHandler'}->end_cdata(@_) };
993
+ if ($@) {
994
+ die $@;
995
+ }
996
+ else {
997
+ # I think there's a buggette here...
998
+ # if the first call throws an exception, we don't set it up right.
999
+ # Not fatal, but we might want to address it.
1000
+ my $handler = $callbacks->{'LexicalHandler'};
1001
+ $self->{Methods}->{'end_cdata'} = sub { $handler->end_cdata(@_) };
1002
+ }
1003
+ return $res;
1004
+ }
1005
+ elsif (defined $callbacks->{'Handler'}
1006
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
1007
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1008
+ )
1009
+ {
1010
+ my $res = eval { $callbacks->{'Handler'}->end_cdata(@_) };
1011
+ if ($@) {
1012
+ die $@;
1013
+ }
1014
+ else {
1015
+ # I think there's a buggette here...
1016
+ # if the first call throws an exception, we don't set it up right.
1017
+ # Not fatal, but we might want to address it.
1018
+ my $handler = $callbacks->{'Handler'};
1019
+ $self->{Methods}->{'end_cdata'} = sub { $handler->end_cdata(@_) };
1020
+ }
1021
+ return $res;
1022
+ }
1023
+ else {
1024
+ $self->{Methods}->{'end_cdata'} = sub { };
1025
+ }
1026
+ }
1027
+
1028
+ }
1029
+
1030
+ sub start_entity {
1031
+ my $self = shift;
1032
+ if (defined $self->{Methods}->{'start_entity'}) {
1033
+ $self->{Methods}->{'start_entity'}->(@_);
1034
+ }
1035
+ else {
1036
+ my $method;
1037
+ my $callbacks;
1038
+ if (exists $self->{ParseOptions}) {
1039
+ $callbacks = $self->{ParseOptions};
1040
+ }
1041
+ else {
1042
+ $callbacks = $self;
1043
+ }
1044
+ if (0) { # dummy to make elsif's below compile
1045
+ }
1046
+ elsif (defined $callbacks->{'LexicalHandler'} and $method = $callbacks->{'LexicalHandler'}->can('start_entity') ) {
1047
+ my $handler = $callbacks->{'LexicalHandler'};
1048
+ $self->{Methods}->{'start_entity'} = sub { $method->($handler, @_) };
1049
+ return $method->($handler, @_);
1050
+ }
1051
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('start_entity') ) {
1052
+ my $handler = $callbacks->{'Handler'};
1053
+ $self->{Methods}->{'start_entity'} = sub { $method->($handler, @_) };
1054
+ return $method->($handler, @_);
1055
+ }
1056
+ elsif (defined $callbacks->{'LexicalHandler'}
1057
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD')
1058
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1059
+ )
1060
+ {
1061
+ my $res = eval { $callbacks->{'LexicalHandler'}->start_entity(@_) };
1062
+ if ($@) {
1063
+ die $@;
1064
+ }
1065
+ else {
1066
+ # I think there's a buggette here...
1067
+ # if the first call throws an exception, we don't set it up right.
1068
+ # Not fatal, but we might want to address it.
1069
+ my $handler = $callbacks->{'LexicalHandler'};
1070
+ $self->{Methods}->{'start_entity'} = sub { $handler->start_entity(@_) };
1071
+ }
1072
+ return $res;
1073
+ }
1074
+ elsif (defined $callbacks->{'Handler'}
1075
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
1076
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1077
+ )
1078
+ {
1079
+ my $res = eval { $callbacks->{'Handler'}->start_entity(@_) };
1080
+ if ($@) {
1081
+ die $@;
1082
+ }
1083
+ else {
1084
+ # I think there's a buggette here...
1085
+ # if the first call throws an exception, we don't set it up right.
1086
+ # Not fatal, but we might want to address it.
1087
+ my $handler = $callbacks->{'Handler'};
1088
+ $self->{Methods}->{'start_entity'} = sub { $handler->start_entity(@_) };
1089
+ }
1090
+ return $res;
1091
+ }
1092
+ else {
1093
+ $self->{Methods}->{'start_entity'} = sub { };
1094
+ }
1095
+ }
1096
+
1097
+ }
1098
+
1099
+ sub start_prefix_mapping {
1100
+ my $self = shift;
1101
+ if (defined $self->{Methods}->{'start_prefix_mapping'}) {
1102
+ $self->{Methods}->{'start_prefix_mapping'}->(@_);
1103
+ }
1104
+ else {
1105
+ my $method;
1106
+ my $callbacks;
1107
+ if (exists $self->{ParseOptions}) {
1108
+ $callbacks = $self->{ParseOptions};
1109
+ }
1110
+ else {
1111
+ $callbacks = $self;
1112
+ }
1113
+ if (0) { # dummy to make elsif's below compile
1114
+ }
1115
+ elsif (defined $callbacks->{'ContentHandler'} and $method = $callbacks->{'ContentHandler'}->can('start_prefix_mapping') ) {
1116
+ my $handler = $callbacks->{'ContentHandler'};
1117
+ $self->{Methods}->{'start_prefix_mapping'} = sub { $method->($handler, @_) };
1118
+ return $method->($handler, @_);
1119
+ }
1120
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('start_prefix_mapping') ) {
1121
+ my $handler = $callbacks->{'Handler'};
1122
+ $self->{Methods}->{'start_prefix_mapping'} = sub { $method->($handler, @_) };
1123
+ return $method->($handler, @_);
1124
+ }
1125
+ elsif (defined $callbacks->{'ContentHandler'}
1126
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD')
1127
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1128
+ )
1129
+ {
1130
+ my $res = eval { $callbacks->{'ContentHandler'}->start_prefix_mapping(@_) };
1131
+ if ($@) {
1132
+ die $@;
1133
+ }
1134
+ else {
1135
+ # I think there's a buggette here...
1136
+ # if the first call throws an exception, we don't set it up right.
1137
+ # Not fatal, but we might want to address it.
1138
+ my $handler = $callbacks->{'ContentHandler'};
1139
+ $self->{Methods}->{'start_prefix_mapping'} = sub { $handler->start_prefix_mapping(@_) };
1140
+ }
1141
+ return $res;
1142
+ }
1143
+ elsif (defined $callbacks->{'Handler'}
1144
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
1145
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1146
+ )
1147
+ {
1148
+ my $res = eval { $callbacks->{'Handler'}->start_prefix_mapping(@_) };
1149
+ if ($@) {
1150
+ die $@;
1151
+ }
1152
+ else {
1153
+ # I think there's a buggette here...
1154
+ # if the first call throws an exception, we don't set it up right.
1155
+ # Not fatal, but we might want to address it.
1156
+ my $handler = $callbacks->{'Handler'};
1157
+ $self->{Methods}->{'start_prefix_mapping'} = sub { $handler->start_prefix_mapping(@_) };
1158
+ }
1159
+ return $res;
1160
+ }
1161
+ else {
1162
+ $self->{Methods}->{'start_prefix_mapping'} = sub { };
1163
+ }
1164
+ }
1165
+
1166
+ }
1167
+
1168
+ sub error {
1169
+ my $self = shift;
1170
+ if (defined $self->{Methods}->{'error'}) {
1171
+ $self->{Methods}->{'error'}->(@_);
1172
+ }
1173
+ else {
1174
+ my $method;
1175
+ my $callbacks;
1176
+ if (exists $self->{ParseOptions}) {
1177
+ $callbacks = $self->{ParseOptions};
1178
+ }
1179
+ else {
1180
+ $callbacks = $self;
1181
+ }
1182
+ if (0) { # dummy to make elsif's below compile
1183
+ }
1184
+ elsif (defined $callbacks->{'ErrorHandler'} and $method = $callbacks->{'ErrorHandler'}->can('error') ) {
1185
+ my $handler = $callbacks->{'ErrorHandler'};
1186
+ $self->{Methods}->{'error'} = sub { $method->($handler, @_) };
1187
+ return $method->($handler, @_);
1188
+ }
1189
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('error') ) {
1190
+ my $handler = $callbacks->{'Handler'};
1191
+ $self->{Methods}->{'error'} = sub { $method->($handler, @_) };
1192
+ return $method->($handler, @_);
1193
+ }
1194
+ elsif (defined $callbacks->{'ErrorHandler'}
1195
+ and $callbacks->{'ErrorHandler'}->can('AUTOLOAD')
1196
+ and $callbacks->{'ErrorHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1197
+ )
1198
+ {
1199
+ my $res = eval { $callbacks->{'ErrorHandler'}->error(@_) };
1200
+ if ($@) {
1201
+ die $@;
1202
+ }
1203
+ else {
1204
+ # I think there's a buggette here...
1205
+ # if the first call throws an exception, we don't set it up right.
1206
+ # Not fatal, but we might want to address it.
1207
+ my $handler = $callbacks->{'ErrorHandler'};
1208
+ $self->{Methods}->{'error'} = sub { $handler->error(@_) };
1209
+ }
1210
+ return $res;
1211
+ }
1212
+ elsif (defined $callbacks->{'Handler'}
1213
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
1214
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1215
+ )
1216
+ {
1217
+ my $res = eval { $callbacks->{'Handler'}->error(@_) };
1218
+ if ($@) {
1219
+ die $@;
1220
+ }
1221
+ else {
1222
+ # I think there's a buggette here...
1223
+ # if the first call throws an exception, we don't set it up right.
1224
+ # Not fatal, but we might want to address it.
1225
+ my $handler = $callbacks->{'Handler'};
1226
+ $self->{Methods}->{'error'} = sub { $handler->error(@_) };
1227
+ }
1228
+ return $res;
1229
+ }
1230
+ else {
1231
+ $self->{Methods}->{'error'} = sub { };
1232
+ }
1233
+ }
1234
+
1235
+ }
1236
+
1237
+ sub start_document {
1238
+ my $self = shift;
1239
+ if (defined $self->{Methods}->{'start_document'}) {
1240
+ $self->{Methods}->{'start_document'}->(@_);
1241
+ }
1242
+ else {
1243
+ my $method;
1244
+ my $callbacks;
1245
+ if (exists $self->{ParseOptions}) {
1246
+ $callbacks = $self->{ParseOptions};
1247
+ }
1248
+ else {
1249
+ $callbacks = $self;
1250
+ }
1251
+ if (0) { # dummy to make elsif's below compile
1252
+ }
1253
+ elsif (defined $callbacks->{'ContentHandler'} and $method = $callbacks->{'ContentHandler'}->can('start_document') ) {
1254
+ my $handler = $callbacks->{'ContentHandler'};
1255
+ $self->{Methods}->{'start_document'} = sub { $method->($handler, @_) };
1256
+ return $method->($handler, @_);
1257
+ }
1258
+ elsif (defined $callbacks->{'DocumentHandler'} and $method = $callbacks->{'DocumentHandler'}->can('start_document') ) {
1259
+ my $handler = $callbacks->{'DocumentHandler'};
1260
+ $self->{Methods}->{'start_document'} = sub { $method->($handler, @_) };
1261
+ return $method->($handler, @_);
1262
+ }
1263
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('start_document') ) {
1264
+ my $handler = $callbacks->{'Handler'};
1265
+ $self->{Methods}->{'start_document'} = sub { $method->($handler, @_) };
1266
+ return $method->($handler, @_);
1267
+ }
1268
+ elsif (defined $callbacks->{'ContentHandler'}
1269
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD')
1270
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1271
+ )
1272
+ {
1273
+ my $res = eval { $callbacks->{'ContentHandler'}->start_document(@_) };
1274
+ if ($@) {
1275
+ die $@;
1276
+ }
1277
+ else {
1278
+ # I think there's a buggette here...
1279
+ # if the first call throws an exception, we don't set it up right.
1280
+ # Not fatal, but we might want to address it.
1281
+ my $handler = $callbacks->{'ContentHandler'};
1282
+ $self->{Methods}->{'start_document'} = sub { $handler->start_document(@_) };
1283
+ }
1284
+ return $res;
1285
+ }
1286
+ elsif (defined $callbacks->{'DocumentHandler'}
1287
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD')
1288
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1289
+ )
1290
+ {
1291
+ my $res = eval { $callbacks->{'DocumentHandler'}->start_document(@_) };
1292
+ if ($@) {
1293
+ die $@;
1294
+ }
1295
+ else {
1296
+ # I think there's a buggette here...
1297
+ # if the first call throws an exception, we don't set it up right.
1298
+ # Not fatal, but we might want to address it.
1299
+ my $handler = $callbacks->{'DocumentHandler'};
1300
+ $self->{Methods}->{'start_document'} = sub { $handler->start_document(@_) };
1301
+ }
1302
+ return $res;
1303
+ }
1304
+ elsif (defined $callbacks->{'Handler'}
1305
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
1306
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1307
+ )
1308
+ {
1309
+ my $res = eval { $callbacks->{'Handler'}->start_document(@_) };
1310
+ if ($@) {
1311
+ die $@;
1312
+ }
1313
+ else {
1314
+ # I think there's a buggette here...
1315
+ # if the first call throws an exception, we don't set it up right.
1316
+ # Not fatal, but we might want to address it.
1317
+ my $handler = $callbacks->{'Handler'};
1318
+ $self->{Methods}->{'start_document'} = sub { $handler->start_document(@_) };
1319
+ }
1320
+ return $res;
1321
+ }
1322
+ else {
1323
+ $self->{Methods}->{'start_document'} = sub { };
1324
+ }
1325
+ }
1326
+
1327
+ }
1328
+
1329
+ sub ignorable_whitespace {
1330
+ my $self = shift;
1331
+ if (defined $self->{Methods}->{'ignorable_whitespace'}) {
1332
+ $self->{Methods}->{'ignorable_whitespace'}->(@_);
1333
+ }
1334
+ else {
1335
+ my $method;
1336
+ my $callbacks;
1337
+ if (exists $self->{ParseOptions}) {
1338
+ $callbacks = $self->{ParseOptions};
1339
+ }
1340
+ else {
1341
+ $callbacks = $self;
1342
+ }
1343
+ if (0) { # dummy to make elsif's below compile
1344
+ }
1345
+ elsif (defined $callbacks->{'ContentHandler'} and $method = $callbacks->{'ContentHandler'}->can('ignorable_whitespace') ) {
1346
+ my $handler = $callbacks->{'ContentHandler'};
1347
+ $self->{Methods}->{'ignorable_whitespace'} = sub { $method->($handler, @_) };
1348
+ return $method->($handler, @_);
1349
+ }
1350
+ elsif (defined $callbacks->{'DocumentHandler'} and $method = $callbacks->{'DocumentHandler'}->can('ignorable_whitespace') ) {
1351
+ my $handler = $callbacks->{'DocumentHandler'};
1352
+ $self->{Methods}->{'ignorable_whitespace'} = sub { $method->($handler, @_) };
1353
+ return $method->($handler, @_);
1354
+ }
1355
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('ignorable_whitespace') ) {
1356
+ my $handler = $callbacks->{'Handler'};
1357
+ $self->{Methods}->{'ignorable_whitespace'} = sub { $method->($handler, @_) };
1358
+ return $method->($handler, @_);
1359
+ }
1360
+ elsif (defined $callbacks->{'ContentHandler'}
1361
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD')
1362
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1363
+ )
1364
+ {
1365
+ my $res = eval { $callbacks->{'ContentHandler'}->ignorable_whitespace(@_) };
1366
+ if ($@) {
1367
+ die $@;
1368
+ }
1369
+ else {
1370
+ # I think there's a buggette here...
1371
+ # if the first call throws an exception, we don't set it up right.
1372
+ # Not fatal, but we might want to address it.
1373
+ my $handler = $callbacks->{'ContentHandler'};
1374
+ $self->{Methods}->{'ignorable_whitespace'} = sub { $handler->ignorable_whitespace(@_) };
1375
+ }
1376
+ return $res;
1377
+ }
1378
+ elsif (defined $callbacks->{'DocumentHandler'}
1379
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD')
1380
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1381
+ )
1382
+ {
1383
+ my $res = eval { $callbacks->{'DocumentHandler'}->ignorable_whitespace(@_) };
1384
+ if ($@) {
1385
+ die $@;
1386
+ }
1387
+ else {
1388
+ # I think there's a buggette here...
1389
+ # if the first call throws an exception, we don't set it up right.
1390
+ # Not fatal, but we might want to address it.
1391
+ my $handler = $callbacks->{'DocumentHandler'};
1392
+ $self->{Methods}->{'ignorable_whitespace'} = sub { $handler->ignorable_whitespace(@_) };
1393
+ }
1394
+ return $res;
1395
+ }
1396
+ elsif (defined $callbacks->{'Handler'}
1397
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
1398
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1399
+ )
1400
+ {
1401
+ my $res = eval { $callbacks->{'Handler'}->ignorable_whitespace(@_) };
1402
+ if ($@) {
1403
+ die $@;
1404
+ }
1405
+ else {
1406
+ # I think there's a buggette here...
1407
+ # if the first call throws an exception, we don't set it up right.
1408
+ # Not fatal, but we might want to address it.
1409
+ my $handler = $callbacks->{'Handler'};
1410
+ $self->{Methods}->{'ignorable_whitespace'} = sub { $handler->ignorable_whitespace(@_) };
1411
+ }
1412
+ return $res;
1413
+ }
1414
+ else {
1415
+ $self->{Methods}->{'ignorable_whitespace'} = sub { };
1416
+ }
1417
+ }
1418
+
1419
+ }
1420
+
1421
+ sub end_document {
1422
+ my $self = shift;
1423
+ if (defined $self->{Methods}->{'end_document'}) {
1424
+ $self->{Methods}->{'end_document'}->(@_);
1425
+ }
1426
+ else {
1427
+ my $method;
1428
+ my $callbacks;
1429
+ if (exists $self->{ParseOptions}) {
1430
+ $callbacks = $self->{ParseOptions};
1431
+ }
1432
+ else {
1433
+ $callbacks = $self;
1434
+ }
1435
+ if (0) { # dummy to make elsif's below compile
1436
+ }
1437
+ elsif (defined $callbacks->{'ContentHandler'} and $method = $callbacks->{'ContentHandler'}->can('end_document') ) {
1438
+ my $handler = $callbacks->{'ContentHandler'};
1439
+ $self->{Methods}->{'end_document'} = sub { $method->($handler, @_) };
1440
+ return $method->($handler, @_);
1441
+ }
1442
+ elsif (defined $callbacks->{'DocumentHandler'} and $method = $callbacks->{'DocumentHandler'}->can('end_document') ) {
1443
+ my $handler = $callbacks->{'DocumentHandler'};
1444
+ $self->{Methods}->{'end_document'} = sub { $method->($handler, @_) };
1445
+ return $method->($handler, @_);
1446
+ }
1447
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('end_document') ) {
1448
+ my $handler = $callbacks->{'Handler'};
1449
+ $self->{Methods}->{'end_document'} = sub { $method->($handler, @_) };
1450
+ return $method->($handler, @_);
1451
+ }
1452
+ elsif (defined $callbacks->{'ContentHandler'}
1453
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD')
1454
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1455
+ )
1456
+ {
1457
+ my $res = eval { $callbacks->{'ContentHandler'}->end_document(@_) };
1458
+ if ($@) {
1459
+ die $@;
1460
+ }
1461
+ else {
1462
+ # I think there's a buggette here...
1463
+ # if the first call throws an exception, we don't set it up right.
1464
+ # Not fatal, but we might want to address it.
1465
+ my $handler = $callbacks->{'ContentHandler'};
1466
+ $self->{Methods}->{'end_document'} = sub { $handler->end_document(@_) };
1467
+ }
1468
+ return $res;
1469
+ }
1470
+ elsif (defined $callbacks->{'DocumentHandler'}
1471
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD')
1472
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1473
+ )
1474
+ {
1475
+ my $res = eval { $callbacks->{'DocumentHandler'}->end_document(@_) };
1476
+ if ($@) {
1477
+ die $@;
1478
+ }
1479
+ else {
1480
+ # I think there's a buggette here...
1481
+ # if the first call throws an exception, we don't set it up right.
1482
+ # Not fatal, but we might want to address it.
1483
+ my $handler = $callbacks->{'DocumentHandler'};
1484
+ $self->{Methods}->{'end_document'} = sub { $handler->end_document(@_) };
1485
+ }
1486
+ return $res;
1487
+ }
1488
+ elsif (defined $callbacks->{'Handler'}
1489
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
1490
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1491
+ )
1492
+ {
1493
+ my $res = eval { $callbacks->{'Handler'}->end_document(@_) };
1494
+ if ($@) {
1495
+ die $@;
1496
+ }
1497
+ else {
1498
+ # I think there's a buggette here...
1499
+ # if the first call throws an exception, we don't set it up right.
1500
+ # Not fatal, but we might want to address it.
1501
+ my $handler = $callbacks->{'Handler'};
1502
+ $self->{Methods}->{'end_document'} = sub { $handler->end_document(@_) };
1503
+ }
1504
+ return $res;
1505
+ }
1506
+ else {
1507
+ $self->{Methods}->{'end_document'} = sub { };
1508
+ }
1509
+ }
1510
+
1511
+ }
1512
+
1513
+ sub start_cdata {
1514
+ my $self = shift;
1515
+ if (defined $self->{Methods}->{'start_cdata'}) {
1516
+ $self->{Methods}->{'start_cdata'}->(@_);
1517
+ }
1518
+ else {
1519
+ my $method;
1520
+ my $callbacks;
1521
+ if (exists $self->{ParseOptions}) {
1522
+ $callbacks = $self->{ParseOptions};
1523
+ }
1524
+ else {
1525
+ $callbacks = $self;
1526
+ }
1527
+ if (0) { # dummy to make elsif's below compile
1528
+ }
1529
+ elsif (defined $callbacks->{'DocumentHandler'} and $method = $callbacks->{'DocumentHandler'}->can('start_cdata') ) {
1530
+ my $handler = $callbacks->{'DocumentHandler'};
1531
+ $self->{Methods}->{'start_cdata'} = sub { $method->($handler, @_) };
1532
+ return $method->($handler, @_);
1533
+ }
1534
+ elsif (defined $callbacks->{'LexicalHandler'} and $method = $callbacks->{'LexicalHandler'}->can('start_cdata') ) {
1535
+ my $handler = $callbacks->{'LexicalHandler'};
1536
+ $self->{Methods}->{'start_cdata'} = sub { $method->($handler, @_) };
1537
+ return $method->($handler, @_);
1538
+ }
1539
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('start_cdata') ) {
1540
+ my $handler = $callbacks->{'Handler'};
1541
+ $self->{Methods}->{'start_cdata'} = sub { $method->($handler, @_) };
1542
+ return $method->($handler, @_);
1543
+ }
1544
+ elsif (defined $callbacks->{'DocumentHandler'}
1545
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD')
1546
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1547
+ )
1548
+ {
1549
+ my $res = eval { $callbacks->{'DocumentHandler'}->start_cdata(@_) };
1550
+ if ($@) {
1551
+ die $@;
1552
+ }
1553
+ else {
1554
+ # I think there's a buggette here...
1555
+ # if the first call throws an exception, we don't set it up right.
1556
+ # Not fatal, but we might want to address it.
1557
+ my $handler = $callbacks->{'DocumentHandler'};
1558
+ $self->{Methods}->{'start_cdata'} = sub { $handler->start_cdata(@_) };
1559
+ }
1560
+ return $res;
1561
+ }
1562
+ elsif (defined $callbacks->{'LexicalHandler'}
1563
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD')
1564
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1565
+ )
1566
+ {
1567
+ my $res = eval { $callbacks->{'LexicalHandler'}->start_cdata(@_) };
1568
+ if ($@) {
1569
+ die $@;
1570
+ }
1571
+ else {
1572
+ # I think there's a buggette here...
1573
+ # if the first call throws an exception, we don't set it up right.
1574
+ # Not fatal, but we might want to address it.
1575
+ my $handler = $callbacks->{'LexicalHandler'};
1576
+ $self->{Methods}->{'start_cdata'} = sub { $handler->start_cdata(@_) };
1577
+ }
1578
+ return $res;
1579
+ }
1580
+ elsif (defined $callbacks->{'Handler'}
1581
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
1582
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1583
+ )
1584
+ {
1585
+ my $res = eval { $callbacks->{'Handler'}->start_cdata(@_) };
1586
+ if ($@) {
1587
+ die $@;
1588
+ }
1589
+ else {
1590
+ # I think there's a buggette here...
1591
+ # if the first call throws an exception, we don't set it up right.
1592
+ # Not fatal, but we might want to address it.
1593
+ my $handler = $callbacks->{'Handler'};
1594
+ $self->{Methods}->{'start_cdata'} = sub { $handler->start_cdata(@_) };
1595
+ }
1596
+ return $res;
1597
+ }
1598
+ else {
1599
+ $self->{Methods}->{'start_cdata'} = sub { };
1600
+ }
1601
+ }
1602
+
1603
+ }
1604
+
1605
+ sub set_document_locator {
1606
+ my $self = shift;
1607
+ if (defined $self->{Methods}->{'set_document_locator'}) {
1608
+ $self->{Methods}->{'set_document_locator'}->(@_);
1609
+ }
1610
+ else {
1611
+ my $method;
1612
+ my $callbacks;
1613
+ if (exists $self->{ParseOptions}) {
1614
+ $callbacks = $self->{ParseOptions};
1615
+ }
1616
+ else {
1617
+ $callbacks = $self;
1618
+ }
1619
+ if (0) { # dummy to make elsif's below compile
1620
+ }
1621
+ elsif (defined $callbacks->{'ContentHandler'} and $method = $callbacks->{'ContentHandler'}->can('set_document_locator') ) {
1622
+ my $handler = $callbacks->{'ContentHandler'};
1623
+ $self->{Methods}->{'set_document_locator'} = sub { $method->($handler, @_) };
1624
+ return $method->($handler, @_);
1625
+ }
1626
+ elsif (defined $callbacks->{'DocumentHandler'} and $method = $callbacks->{'DocumentHandler'}->can('set_document_locator') ) {
1627
+ my $handler = $callbacks->{'DocumentHandler'};
1628
+ $self->{Methods}->{'set_document_locator'} = sub { $method->($handler, @_) };
1629
+ return $method->($handler, @_);
1630
+ }
1631
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('set_document_locator') ) {
1632
+ my $handler = $callbacks->{'Handler'};
1633
+ $self->{Methods}->{'set_document_locator'} = sub { $method->($handler, @_) };
1634
+ return $method->($handler, @_);
1635
+ }
1636
+ elsif (defined $callbacks->{'ContentHandler'}
1637
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD')
1638
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1639
+ )
1640
+ {
1641
+ my $res = eval { $callbacks->{'ContentHandler'}->set_document_locator(@_) };
1642
+ if ($@) {
1643
+ die $@;
1644
+ }
1645
+ else {
1646
+ # I think there's a buggette here...
1647
+ # if the first call throws an exception, we don't set it up right.
1648
+ # Not fatal, but we might want to address it.
1649
+ my $handler = $callbacks->{'ContentHandler'};
1650
+ $self->{Methods}->{'set_document_locator'} = sub { $handler->set_document_locator(@_) };
1651
+ }
1652
+ return $res;
1653
+ }
1654
+ elsif (defined $callbacks->{'DocumentHandler'}
1655
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD')
1656
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1657
+ )
1658
+ {
1659
+ my $res = eval { $callbacks->{'DocumentHandler'}->set_document_locator(@_) };
1660
+ if ($@) {
1661
+ die $@;
1662
+ }
1663
+ else {
1664
+ # I think there's a buggette here...
1665
+ # if the first call throws an exception, we don't set it up right.
1666
+ # Not fatal, but we might want to address it.
1667
+ my $handler = $callbacks->{'DocumentHandler'};
1668
+ $self->{Methods}->{'set_document_locator'} = sub { $handler->set_document_locator(@_) };
1669
+ }
1670
+ return $res;
1671
+ }
1672
+ elsif (defined $callbacks->{'Handler'}
1673
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
1674
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1675
+ )
1676
+ {
1677
+ my $res = eval { $callbacks->{'Handler'}->set_document_locator(@_) };
1678
+ if ($@) {
1679
+ die $@;
1680
+ }
1681
+ else {
1682
+ # I think there's a buggette here...
1683
+ # if the first call throws an exception, we don't set it up right.
1684
+ # Not fatal, but we might want to address it.
1685
+ my $handler = $callbacks->{'Handler'};
1686
+ $self->{Methods}->{'set_document_locator'} = sub { $handler->set_document_locator(@_) };
1687
+ }
1688
+ return $res;
1689
+ }
1690
+ else {
1691
+ $self->{Methods}->{'set_document_locator'} = sub { };
1692
+ }
1693
+ }
1694
+
1695
+ }
1696
+
1697
+ sub attlist_decl {
1698
+ my $self = shift;
1699
+ if (defined $self->{Methods}->{'attlist_decl'}) {
1700
+ $self->{Methods}->{'attlist_decl'}->(@_);
1701
+ }
1702
+ else {
1703
+ my $method;
1704
+ my $callbacks;
1705
+ if (exists $self->{ParseOptions}) {
1706
+ $callbacks = $self->{ParseOptions};
1707
+ }
1708
+ else {
1709
+ $callbacks = $self;
1710
+ }
1711
+ if (0) { # dummy to make elsif's below compile
1712
+ }
1713
+ elsif (defined $callbacks->{'DTDHandler'} and $method = $callbacks->{'DTDHandler'}->can('attlist_decl') ) {
1714
+ my $handler = $callbacks->{'DTDHandler'};
1715
+ $self->{Methods}->{'attlist_decl'} = sub { $method->($handler, @_) };
1716
+ return $method->($handler, @_);
1717
+ }
1718
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('attlist_decl') ) {
1719
+ my $handler = $callbacks->{'Handler'};
1720
+ $self->{Methods}->{'attlist_decl'} = sub { $method->($handler, @_) };
1721
+ return $method->($handler, @_);
1722
+ }
1723
+ elsif (defined $callbacks->{'DTDHandler'}
1724
+ and $callbacks->{'DTDHandler'}->can('AUTOLOAD')
1725
+ and $callbacks->{'DTDHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1726
+ )
1727
+ {
1728
+ my $res = eval { $callbacks->{'DTDHandler'}->attlist_decl(@_) };
1729
+ if ($@) {
1730
+ die $@;
1731
+ }
1732
+ else {
1733
+ # I think there's a buggette here...
1734
+ # if the first call throws an exception, we don't set it up right.
1735
+ # Not fatal, but we might want to address it.
1736
+ my $handler = $callbacks->{'DTDHandler'};
1737
+ $self->{Methods}->{'attlist_decl'} = sub { $handler->attlist_decl(@_) };
1738
+ }
1739
+ return $res;
1740
+ }
1741
+ elsif (defined $callbacks->{'Handler'}
1742
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
1743
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1744
+ )
1745
+ {
1746
+ my $res = eval { $callbacks->{'Handler'}->attlist_decl(@_) };
1747
+ if ($@) {
1748
+ die $@;
1749
+ }
1750
+ else {
1751
+ # I think there's a buggette here...
1752
+ # if the first call throws an exception, we don't set it up right.
1753
+ # Not fatal, but we might want to address it.
1754
+ my $handler = $callbacks->{'Handler'};
1755
+ $self->{Methods}->{'attlist_decl'} = sub { $handler->attlist_decl(@_) };
1756
+ }
1757
+ return $res;
1758
+ }
1759
+ else {
1760
+ $self->{Methods}->{'attlist_decl'} = sub { };
1761
+ }
1762
+ }
1763
+
1764
+ }
1765
+
1766
+ sub start_dtd {
1767
+ my $self = shift;
1768
+ if (defined $self->{Methods}->{'start_dtd'}) {
1769
+ $self->{Methods}->{'start_dtd'}->(@_);
1770
+ }
1771
+ else {
1772
+ my $method;
1773
+ my $callbacks;
1774
+ if (exists $self->{ParseOptions}) {
1775
+ $callbacks = $self->{ParseOptions};
1776
+ }
1777
+ else {
1778
+ $callbacks = $self;
1779
+ }
1780
+ if (0) { # dummy to make elsif's below compile
1781
+ }
1782
+ elsif (defined $callbacks->{'LexicalHandler'} and $method = $callbacks->{'LexicalHandler'}->can('start_dtd') ) {
1783
+ my $handler = $callbacks->{'LexicalHandler'};
1784
+ $self->{Methods}->{'start_dtd'} = sub { $method->($handler, @_) };
1785
+ return $method->($handler, @_);
1786
+ }
1787
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('start_dtd') ) {
1788
+ my $handler = $callbacks->{'Handler'};
1789
+ $self->{Methods}->{'start_dtd'} = sub { $method->($handler, @_) };
1790
+ return $method->($handler, @_);
1791
+ }
1792
+ elsif (defined $callbacks->{'LexicalHandler'}
1793
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD')
1794
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1795
+ )
1796
+ {
1797
+ my $res = eval { $callbacks->{'LexicalHandler'}->start_dtd(@_) };
1798
+ if ($@) {
1799
+ die $@;
1800
+ }
1801
+ else {
1802
+ # I think there's a buggette here...
1803
+ # if the first call throws an exception, we don't set it up right.
1804
+ # Not fatal, but we might want to address it.
1805
+ my $handler = $callbacks->{'LexicalHandler'};
1806
+ $self->{Methods}->{'start_dtd'} = sub { $handler->start_dtd(@_) };
1807
+ }
1808
+ return $res;
1809
+ }
1810
+ elsif (defined $callbacks->{'Handler'}
1811
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
1812
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1813
+ )
1814
+ {
1815
+ my $res = eval { $callbacks->{'Handler'}->start_dtd(@_) };
1816
+ if ($@) {
1817
+ die $@;
1818
+ }
1819
+ else {
1820
+ # I think there's a buggette here...
1821
+ # if the first call throws an exception, we don't set it up right.
1822
+ # Not fatal, but we might want to address it.
1823
+ my $handler = $callbacks->{'Handler'};
1824
+ $self->{Methods}->{'start_dtd'} = sub { $handler->start_dtd(@_) };
1825
+ }
1826
+ return $res;
1827
+ }
1828
+ else {
1829
+ $self->{Methods}->{'start_dtd'} = sub { };
1830
+ }
1831
+ }
1832
+
1833
+ }
1834
+
1835
+ sub resolve_entity {
1836
+ my $self = shift;
1837
+ if (defined $self->{Methods}->{'resolve_entity'}) {
1838
+ $self->{Methods}->{'resolve_entity'}->(@_);
1839
+ }
1840
+ else {
1841
+ my $method;
1842
+ my $callbacks;
1843
+ if (exists $self->{ParseOptions}) {
1844
+ $callbacks = $self->{ParseOptions};
1845
+ }
1846
+ else {
1847
+ $callbacks = $self;
1848
+ }
1849
+ if (0) { # dummy to make elsif's below compile
1850
+ }
1851
+ elsif (defined $callbacks->{'EntityResolver'} and $method = $callbacks->{'EntityResolver'}->can('resolve_entity') ) {
1852
+ my $handler = $callbacks->{'EntityResolver'};
1853
+ $self->{Methods}->{'resolve_entity'} = sub { $method->($handler, @_) };
1854
+ return $method->($handler, @_);
1855
+ }
1856
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('resolve_entity') ) {
1857
+ my $handler = $callbacks->{'Handler'};
1858
+ $self->{Methods}->{'resolve_entity'} = sub { $method->($handler, @_) };
1859
+ return $method->($handler, @_);
1860
+ }
1861
+ elsif (defined $callbacks->{'EntityResolver'}
1862
+ and $callbacks->{'EntityResolver'}->can('AUTOLOAD')
1863
+ and $callbacks->{'EntityResolver'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1864
+ )
1865
+ {
1866
+ my $res = eval { $callbacks->{'EntityResolver'}->resolve_entity(@_) };
1867
+ if ($@) {
1868
+ die $@;
1869
+ }
1870
+ else {
1871
+ # I think there's a buggette here...
1872
+ # if the first call throws an exception, we don't set it up right.
1873
+ # Not fatal, but we might want to address it.
1874
+ my $handler = $callbacks->{'EntityResolver'};
1875
+ $self->{Methods}->{'resolve_entity'} = sub { $handler->resolve_entity(@_) };
1876
+ }
1877
+ return $res;
1878
+ }
1879
+ elsif (defined $callbacks->{'Handler'}
1880
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
1881
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1882
+ )
1883
+ {
1884
+ my $res = eval { $callbacks->{'Handler'}->resolve_entity(@_) };
1885
+ if ($@) {
1886
+ die $@;
1887
+ }
1888
+ else {
1889
+ # I think there's a buggette here...
1890
+ # if the first call throws an exception, we don't set it up right.
1891
+ # Not fatal, but we might want to address it.
1892
+ my $handler = $callbacks->{'Handler'};
1893
+ $self->{Methods}->{'resolve_entity'} = sub { $handler->resolve_entity(@_) };
1894
+ }
1895
+ return $res;
1896
+ }
1897
+ else {
1898
+ $self->{Methods}->{'resolve_entity'} = sub { };
1899
+ }
1900
+ }
1901
+
1902
+ }
1903
+
1904
+ sub entity_reference {
1905
+ my $self = shift;
1906
+ if (defined $self->{Methods}->{'entity_reference'}) {
1907
+ $self->{Methods}->{'entity_reference'}->(@_);
1908
+ }
1909
+ else {
1910
+ my $method;
1911
+ my $callbacks;
1912
+ if (exists $self->{ParseOptions}) {
1913
+ $callbacks = $self->{ParseOptions};
1914
+ }
1915
+ else {
1916
+ $callbacks = $self;
1917
+ }
1918
+ if (0) { # dummy to make elsif's below compile
1919
+ }
1920
+ elsif (defined $callbacks->{'DocumentHandler'} and $method = $callbacks->{'DocumentHandler'}->can('entity_reference') ) {
1921
+ my $handler = $callbacks->{'DocumentHandler'};
1922
+ $self->{Methods}->{'entity_reference'} = sub { $method->($handler, @_) };
1923
+ return $method->($handler, @_);
1924
+ }
1925
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('entity_reference') ) {
1926
+ my $handler = $callbacks->{'Handler'};
1927
+ $self->{Methods}->{'entity_reference'} = sub { $method->($handler, @_) };
1928
+ return $method->($handler, @_);
1929
+ }
1930
+ elsif (defined $callbacks->{'DocumentHandler'}
1931
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD')
1932
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1933
+ )
1934
+ {
1935
+ my $res = eval { $callbacks->{'DocumentHandler'}->entity_reference(@_) };
1936
+ if ($@) {
1937
+ die $@;
1938
+ }
1939
+ else {
1940
+ # I think there's a buggette here...
1941
+ # if the first call throws an exception, we don't set it up right.
1942
+ # Not fatal, but we might want to address it.
1943
+ my $handler = $callbacks->{'DocumentHandler'};
1944
+ $self->{Methods}->{'entity_reference'} = sub { $handler->entity_reference(@_) };
1945
+ }
1946
+ return $res;
1947
+ }
1948
+ elsif (defined $callbacks->{'Handler'}
1949
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
1950
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
1951
+ )
1952
+ {
1953
+ my $res = eval { $callbacks->{'Handler'}->entity_reference(@_) };
1954
+ if ($@) {
1955
+ die $@;
1956
+ }
1957
+ else {
1958
+ # I think there's a buggette here...
1959
+ # if the first call throws an exception, we don't set it up right.
1960
+ # Not fatal, but we might want to address it.
1961
+ my $handler = $callbacks->{'Handler'};
1962
+ $self->{Methods}->{'entity_reference'} = sub { $handler->entity_reference(@_) };
1963
+ }
1964
+ return $res;
1965
+ }
1966
+ else {
1967
+ $self->{Methods}->{'entity_reference'} = sub { };
1968
+ }
1969
+ }
1970
+
1971
+ }
1972
+
1973
+ sub element_decl {
1974
+ my $self = shift;
1975
+ if (defined $self->{Methods}->{'element_decl'}) {
1976
+ $self->{Methods}->{'element_decl'}->(@_);
1977
+ }
1978
+ else {
1979
+ my $method;
1980
+ my $callbacks;
1981
+ if (exists $self->{ParseOptions}) {
1982
+ $callbacks = $self->{ParseOptions};
1983
+ }
1984
+ else {
1985
+ $callbacks = $self;
1986
+ }
1987
+ if (0) { # dummy to make elsif's below compile
1988
+ }
1989
+ elsif (defined $callbacks->{'DeclHandler'} and $method = $callbacks->{'DeclHandler'}->can('element_decl') ) {
1990
+ my $handler = $callbacks->{'DeclHandler'};
1991
+ $self->{Methods}->{'element_decl'} = sub { $method->($handler, @_) };
1992
+ return $method->($handler, @_);
1993
+ }
1994
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('element_decl') ) {
1995
+ my $handler = $callbacks->{'Handler'};
1996
+ $self->{Methods}->{'element_decl'} = sub { $method->($handler, @_) };
1997
+ return $method->($handler, @_);
1998
+ }
1999
+ elsif (defined $callbacks->{'DeclHandler'}
2000
+ and $callbacks->{'DeclHandler'}->can('AUTOLOAD')
2001
+ and $callbacks->{'DeclHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2002
+ )
2003
+ {
2004
+ my $res = eval { $callbacks->{'DeclHandler'}->element_decl(@_) };
2005
+ if ($@) {
2006
+ die $@;
2007
+ }
2008
+ else {
2009
+ # I think there's a buggette here...
2010
+ # if the first call throws an exception, we don't set it up right.
2011
+ # Not fatal, but we might want to address it.
2012
+ my $handler = $callbacks->{'DeclHandler'};
2013
+ $self->{Methods}->{'element_decl'} = sub { $handler->element_decl(@_) };
2014
+ }
2015
+ return $res;
2016
+ }
2017
+ elsif (defined $callbacks->{'Handler'}
2018
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
2019
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2020
+ )
2021
+ {
2022
+ my $res = eval { $callbacks->{'Handler'}->element_decl(@_) };
2023
+ if ($@) {
2024
+ die $@;
2025
+ }
2026
+ else {
2027
+ # I think there's a buggette here...
2028
+ # if the first call throws an exception, we don't set it up right.
2029
+ # Not fatal, but we might want to address it.
2030
+ my $handler = $callbacks->{'Handler'};
2031
+ $self->{Methods}->{'element_decl'} = sub { $handler->element_decl(@_) };
2032
+ }
2033
+ return $res;
2034
+ }
2035
+ else {
2036
+ $self->{Methods}->{'element_decl'} = sub { };
2037
+ }
2038
+ }
2039
+
2040
+ }
2041
+
2042
+ sub notation_decl {
2043
+ my $self = shift;
2044
+ if (defined $self->{Methods}->{'notation_decl'}) {
2045
+ $self->{Methods}->{'notation_decl'}->(@_);
2046
+ }
2047
+ else {
2048
+ my $method;
2049
+ my $callbacks;
2050
+ if (exists $self->{ParseOptions}) {
2051
+ $callbacks = $self->{ParseOptions};
2052
+ }
2053
+ else {
2054
+ $callbacks = $self;
2055
+ }
2056
+ if (0) { # dummy to make elsif's below compile
2057
+ }
2058
+ elsif (defined $callbacks->{'DTDHandler'} and $method = $callbacks->{'DTDHandler'}->can('notation_decl') ) {
2059
+ my $handler = $callbacks->{'DTDHandler'};
2060
+ $self->{Methods}->{'notation_decl'} = sub { $method->($handler, @_) };
2061
+ return $method->($handler, @_);
2062
+ }
2063
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('notation_decl') ) {
2064
+ my $handler = $callbacks->{'Handler'};
2065
+ $self->{Methods}->{'notation_decl'} = sub { $method->($handler, @_) };
2066
+ return $method->($handler, @_);
2067
+ }
2068
+ elsif (defined $callbacks->{'DTDHandler'}
2069
+ and $callbacks->{'DTDHandler'}->can('AUTOLOAD')
2070
+ and $callbacks->{'DTDHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2071
+ )
2072
+ {
2073
+ my $res = eval { $callbacks->{'DTDHandler'}->notation_decl(@_) };
2074
+ if ($@) {
2075
+ die $@;
2076
+ }
2077
+ else {
2078
+ # I think there's a buggette here...
2079
+ # if the first call throws an exception, we don't set it up right.
2080
+ # Not fatal, but we might want to address it.
2081
+ my $handler = $callbacks->{'DTDHandler'};
2082
+ $self->{Methods}->{'notation_decl'} = sub { $handler->notation_decl(@_) };
2083
+ }
2084
+ return $res;
2085
+ }
2086
+ elsif (defined $callbacks->{'Handler'}
2087
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
2088
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2089
+ )
2090
+ {
2091
+ my $res = eval { $callbacks->{'Handler'}->notation_decl(@_) };
2092
+ if ($@) {
2093
+ die $@;
2094
+ }
2095
+ else {
2096
+ # I think there's a buggette here...
2097
+ # if the first call throws an exception, we don't set it up right.
2098
+ # Not fatal, but we might want to address it.
2099
+ my $handler = $callbacks->{'Handler'};
2100
+ $self->{Methods}->{'notation_decl'} = sub { $handler->notation_decl(@_) };
2101
+ }
2102
+ return $res;
2103
+ }
2104
+ else {
2105
+ $self->{Methods}->{'notation_decl'} = sub { };
2106
+ }
2107
+ }
2108
+
2109
+ }
2110
+
2111
+ sub skipped_entity {
2112
+ my $self = shift;
2113
+ if (defined $self->{Methods}->{'skipped_entity'}) {
2114
+ $self->{Methods}->{'skipped_entity'}->(@_);
2115
+ }
2116
+ else {
2117
+ my $method;
2118
+ my $callbacks;
2119
+ if (exists $self->{ParseOptions}) {
2120
+ $callbacks = $self->{ParseOptions};
2121
+ }
2122
+ else {
2123
+ $callbacks = $self;
2124
+ }
2125
+ if (0) { # dummy to make elsif's below compile
2126
+ }
2127
+ elsif (defined $callbacks->{'ContentHandler'} and $method = $callbacks->{'ContentHandler'}->can('skipped_entity') ) {
2128
+ my $handler = $callbacks->{'ContentHandler'};
2129
+ $self->{Methods}->{'skipped_entity'} = sub { $method->($handler, @_) };
2130
+ return $method->($handler, @_);
2131
+ }
2132
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('skipped_entity') ) {
2133
+ my $handler = $callbacks->{'Handler'};
2134
+ $self->{Methods}->{'skipped_entity'} = sub { $method->($handler, @_) };
2135
+ return $method->($handler, @_);
2136
+ }
2137
+ elsif (defined $callbacks->{'ContentHandler'}
2138
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD')
2139
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2140
+ )
2141
+ {
2142
+ my $res = eval { $callbacks->{'ContentHandler'}->skipped_entity(@_) };
2143
+ if ($@) {
2144
+ die $@;
2145
+ }
2146
+ else {
2147
+ # I think there's a buggette here...
2148
+ # if the first call throws an exception, we don't set it up right.
2149
+ # Not fatal, but we might want to address it.
2150
+ my $handler = $callbacks->{'ContentHandler'};
2151
+ $self->{Methods}->{'skipped_entity'} = sub { $handler->skipped_entity(@_) };
2152
+ }
2153
+ return $res;
2154
+ }
2155
+ elsif (defined $callbacks->{'Handler'}
2156
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
2157
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2158
+ )
2159
+ {
2160
+ my $res = eval { $callbacks->{'Handler'}->skipped_entity(@_) };
2161
+ if ($@) {
2162
+ die $@;
2163
+ }
2164
+ else {
2165
+ # I think there's a buggette here...
2166
+ # if the first call throws an exception, we don't set it up right.
2167
+ # Not fatal, but we might want to address it.
2168
+ my $handler = $callbacks->{'Handler'};
2169
+ $self->{Methods}->{'skipped_entity'} = sub { $handler->skipped_entity(@_) };
2170
+ }
2171
+ return $res;
2172
+ }
2173
+ else {
2174
+ $self->{Methods}->{'skipped_entity'} = sub { };
2175
+ }
2176
+ }
2177
+
2178
+ }
2179
+
2180
+ sub end_element {
2181
+ my $self = shift;
2182
+ if (defined $self->{Methods}->{'end_element'}) {
2183
+ $self->{Methods}->{'end_element'}->(@_);
2184
+ }
2185
+ else {
2186
+ my $method;
2187
+ my $callbacks;
2188
+ if (exists $self->{ParseOptions}) {
2189
+ $callbacks = $self->{ParseOptions};
2190
+ }
2191
+ else {
2192
+ $callbacks = $self;
2193
+ }
2194
+ if (0) { # dummy to make elsif's below compile
2195
+ }
2196
+ elsif (defined $callbacks->{'ContentHandler'} and $method = $callbacks->{'ContentHandler'}->can('end_element') ) {
2197
+ my $handler = $callbacks->{'ContentHandler'};
2198
+ $self->{Methods}->{'end_element'} = sub { $method->($handler, @_) };
2199
+ return $method->($handler, @_);
2200
+ }
2201
+ elsif (defined $callbacks->{'DocumentHandler'} and $method = $callbacks->{'DocumentHandler'}->can('end_element') ) {
2202
+ my $handler = $callbacks->{'DocumentHandler'};
2203
+ $self->{Methods}->{'end_element'} = sub { $method->($handler, @_) };
2204
+ return $method->($handler, @_);
2205
+ }
2206
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('end_element') ) {
2207
+ my $handler = $callbacks->{'Handler'};
2208
+ $self->{Methods}->{'end_element'} = sub { $method->($handler, @_) };
2209
+ return $method->($handler, @_);
2210
+ }
2211
+ elsif (defined $callbacks->{'ContentHandler'}
2212
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD')
2213
+ and $callbacks->{'ContentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2214
+ )
2215
+ {
2216
+ my $res = eval { $callbacks->{'ContentHandler'}->end_element(@_) };
2217
+ if ($@) {
2218
+ die $@;
2219
+ }
2220
+ else {
2221
+ # I think there's a buggette here...
2222
+ # if the first call throws an exception, we don't set it up right.
2223
+ # Not fatal, but we might want to address it.
2224
+ my $handler = $callbacks->{'ContentHandler'};
2225
+ $self->{Methods}->{'end_element'} = sub { $handler->end_element(@_) };
2226
+ }
2227
+ return $res;
2228
+ }
2229
+ elsif (defined $callbacks->{'DocumentHandler'}
2230
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD')
2231
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2232
+ )
2233
+ {
2234
+ my $res = eval { $callbacks->{'DocumentHandler'}->end_element(@_) };
2235
+ if ($@) {
2236
+ die $@;
2237
+ }
2238
+ else {
2239
+ # I think there's a buggette here...
2240
+ # if the first call throws an exception, we don't set it up right.
2241
+ # Not fatal, but we might want to address it.
2242
+ my $handler = $callbacks->{'DocumentHandler'};
2243
+ $self->{Methods}->{'end_element'} = sub { $handler->end_element(@_) };
2244
+ }
2245
+ return $res;
2246
+ }
2247
+ elsif (defined $callbacks->{'Handler'}
2248
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
2249
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2250
+ )
2251
+ {
2252
+ my $res = eval { $callbacks->{'Handler'}->end_element(@_) };
2253
+ if ($@) {
2254
+ die $@;
2255
+ }
2256
+ else {
2257
+ # I think there's a buggette here...
2258
+ # if the first call throws an exception, we don't set it up right.
2259
+ # Not fatal, but we might want to address it.
2260
+ my $handler = $callbacks->{'Handler'};
2261
+ $self->{Methods}->{'end_element'} = sub { $handler->end_element(@_) };
2262
+ }
2263
+ return $res;
2264
+ }
2265
+ else {
2266
+ $self->{Methods}->{'end_element'} = sub { };
2267
+ }
2268
+ }
2269
+
2270
+ }
2271
+
2272
+ sub doctype_decl {
2273
+ my $self = shift;
2274
+ if (defined $self->{Methods}->{'doctype_decl'}) {
2275
+ $self->{Methods}->{'doctype_decl'}->(@_);
2276
+ }
2277
+ else {
2278
+ my $method;
2279
+ my $callbacks;
2280
+ if (exists $self->{ParseOptions}) {
2281
+ $callbacks = $self->{ParseOptions};
2282
+ }
2283
+ else {
2284
+ $callbacks = $self;
2285
+ }
2286
+ if (0) { # dummy to make elsif's below compile
2287
+ }
2288
+ elsif (defined $callbacks->{'DTDHandler'} and $method = $callbacks->{'DTDHandler'}->can('doctype_decl') ) {
2289
+ my $handler = $callbacks->{'DTDHandler'};
2290
+ $self->{Methods}->{'doctype_decl'} = sub { $method->($handler, @_) };
2291
+ return $method->($handler, @_);
2292
+ }
2293
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('doctype_decl') ) {
2294
+ my $handler = $callbacks->{'Handler'};
2295
+ $self->{Methods}->{'doctype_decl'} = sub { $method->($handler, @_) };
2296
+ return $method->($handler, @_);
2297
+ }
2298
+ elsif (defined $callbacks->{'DTDHandler'}
2299
+ and $callbacks->{'DTDHandler'}->can('AUTOLOAD')
2300
+ and $callbacks->{'DTDHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2301
+ )
2302
+ {
2303
+ my $res = eval { $callbacks->{'DTDHandler'}->doctype_decl(@_) };
2304
+ if ($@) {
2305
+ die $@;
2306
+ }
2307
+ else {
2308
+ # I think there's a buggette here...
2309
+ # if the first call throws an exception, we don't set it up right.
2310
+ # Not fatal, but we might want to address it.
2311
+ my $handler = $callbacks->{'DTDHandler'};
2312
+ $self->{Methods}->{'doctype_decl'} = sub { $handler->doctype_decl(@_) };
2313
+ }
2314
+ return $res;
2315
+ }
2316
+ elsif (defined $callbacks->{'Handler'}
2317
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
2318
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2319
+ )
2320
+ {
2321
+ my $res = eval { $callbacks->{'Handler'}->doctype_decl(@_) };
2322
+ if ($@) {
2323
+ die $@;
2324
+ }
2325
+ else {
2326
+ # I think there's a buggette here...
2327
+ # if the first call throws an exception, we don't set it up right.
2328
+ # Not fatal, but we might want to address it.
2329
+ my $handler = $callbacks->{'Handler'};
2330
+ $self->{Methods}->{'doctype_decl'} = sub { $handler->doctype_decl(@_) };
2331
+ }
2332
+ return $res;
2333
+ }
2334
+ else {
2335
+ $self->{Methods}->{'doctype_decl'} = sub { };
2336
+ }
2337
+ }
2338
+
2339
+ }
2340
+
2341
+ sub comment {
2342
+ my $self = shift;
2343
+ if (defined $self->{Methods}->{'comment'}) {
2344
+ $self->{Methods}->{'comment'}->(@_);
2345
+ }
2346
+ else {
2347
+ my $method;
2348
+ my $callbacks;
2349
+ if (exists $self->{ParseOptions}) {
2350
+ $callbacks = $self->{ParseOptions};
2351
+ }
2352
+ else {
2353
+ $callbacks = $self;
2354
+ }
2355
+ if (0) { # dummy to make elsif's below compile
2356
+ }
2357
+ elsif (defined $callbacks->{'DocumentHandler'} and $method = $callbacks->{'DocumentHandler'}->can('comment') ) {
2358
+ my $handler = $callbacks->{'DocumentHandler'};
2359
+ $self->{Methods}->{'comment'} = sub { $method->($handler, @_) };
2360
+ return $method->($handler, @_);
2361
+ }
2362
+ elsif (defined $callbacks->{'LexicalHandler'} and $method = $callbacks->{'LexicalHandler'}->can('comment') ) {
2363
+ my $handler = $callbacks->{'LexicalHandler'};
2364
+ $self->{Methods}->{'comment'} = sub { $method->($handler, @_) };
2365
+ return $method->($handler, @_);
2366
+ }
2367
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('comment') ) {
2368
+ my $handler = $callbacks->{'Handler'};
2369
+ $self->{Methods}->{'comment'} = sub { $method->($handler, @_) };
2370
+ return $method->($handler, @_);
2371
+ }
2372
+ elsif (defined $callbacks->{'DocumentHandler'}
2373
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD')
2374
+ and $callbacks->{'DocumentHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2375
+ )
2376
+ {
2377
+ my $res = eval { $callbacks->{'DocumentHandler'}->comment(@_) };
2378
+ if ($@) {
2379
+ die $@;
2380
+ }
2381
+ else {
2382
+ # I think there's a buggette here...
2383
+ # if the first call throws an exception, we don't set it up right.
2384
+ # Not fatal, but we might want to address it.
2385
+ my $handler = $callbacks->{'DocumentHandler'};
2386
+ $self->{Methods}->{'comment'} = sub { $handler->comment(@_) };
2387
+ }
2388
+ return $res;
2389
+ }
2390
+ elsif (defined $callbacks->{'LexicalHandler'}
2391
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD')
2392
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2393
+ )
2394
+ {
2395
+ my $res = eval { $callbacks->{'LexicalHandler'}->comment(@_) };
2396
+ if ($@) {
2397
+ die $@;
2398
+ }
2399
+ else {
2400
+ # I think there's a buggette here...
2401
+ # if the first call throws an exception, we don't set it up right.
2402
+ # Not fatal, but we might want to address it.
2403
+ my $handler = $callbacks->{'LexicalHandler'};
2404
+ $self->{Methods}->{'comment'} = sub { $handler->comment(@_) };
2405
+ }
2406
+ return $res;
2407
+ }
2408
+ elsif (defined $callbacks->{'Handler'}
2409
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
2410
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2411
+ )
2412
+ {
2413
+ my $res = eval { $callbacks->{'Handler'}->comment(@_) };
2414
+ if ($@) {
2415
+ die $@;
2416
+ }
2417
+ else {
2418
+ # I think there's a buggette here...
2419
+ # if the first call throws an exception, we don't set it up right.
2420
+ # Not fatal, but we might want to address it.
2421
+ my $handler = $callbacks->{'Handler'};
2422
+ $self->{Methods}->{'comment'} = sub { $handler->comment(@_) };
2423
+ }
2424
+ return $res;
2425
+ }
2426
+ else {
2427
+ $self->{Methods}->{'comment'} = sub { };
2428
+ }
2429
+ }
2430
+
2431
+ }
2432
+
2433
+ sub end_entity {
2434
+ my $self = shift;
2435
+ if (defined $self->{Methods}->{'end_entity'}) {
2436
+ $self->{Methods}->{'end_entity'}->(@_);
2437
+ }
2438
+ else {
2439
+ my $method;
2440
+ my $callbacks;
2441
+ if (exists $self->{ParseOptions}) {
2442
+ $callbacks = $self->{ParseOptions};
2443
+ }
2444
+ else {
2445
+ $callbacks = $self;
2446
+ }
2447
+ if (0) { # dummy to make elsif's below compile
2448
+ }
2449
+ elsif (defined $callbacks->{'LexicalHandler'} and $method = $callbacks->{'LexicalHandler'}->can('end_entity') ) {
2450
+ my $handler = $callbacks->{'LexicalHandler'};
2451
+ $self->{Methods}->{'end_entity'} = sub { $method->($handler, @_) };
2452
+ return $method->($handler, @_);
2453
+ }
2454
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('end_entity') ) {
2455
+ my $handler = $callbacks->{'Handler'};
2456
+ $self->{Methods}->{'end_entity'} = sub { $method->($handler, @_) };
2457
+ return $method->($handler, @_);
2458
+ }
2459
+ elsif (defined $callbacks->{'LexicalHandler'}
2460
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD')
2461
+ and $callbacks->{'LexicalHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2462
+ )
2463
+ {
2464
+ my $res = eval { $callbacks->{'LexicalHandler'}->end_entity(@_) };
2465
+ if ($@) {
2466
+ die $@;
2467
+ }
2468
+ else {
2469
+ # I think there's a buggette here...
2470
+ # if the first call throws an exception, we don't set it up right.
2471
+ # Not fatal, but we might want to address it.
2472
+ my $handler = $callbacks->{'LexicalHandler'};
2473
+ $self->{Methods}->{'end_entity'} = sub { $handler->end_entity(@_) };
2474
+ }
2475
+ return $res;
2476
+ }
2477
+ elsif (defined $callbacks->{'Handler'}
2478
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
2479
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2480
+ )
2481
+ {
2482
+ my $res = eval { $callbacks->{'Handler'}->end_entity(@_) };
2483
+ if ($@) {
2484
+ die $@;
2485
+ }
2486
+ else {
2487
+ # I think there's a buggette here...
2488
+ # if the first call throws an exception, we don't set it up right.
2489
+ # Not fatal, but we might want to address it.
2490
+ my $handler = $callbacks->{'Handler'};
2491
+ $self->{Methods}->{'end_entity'} = sub { $handler->end_entity(@_) };
2492
+ }
2493
+ return $res;
2494
+ }
2495
+ else {
2496
+ $self->{Methods}->{'end_entity'} = sub { };
2497
+ }
2498
+ }
2499
+
2500
+ }
2501
+
2502
+ sub warning {
2503
+ my $self = shift;
2504
+ if (defined $self->{Methods}->{'warning'}) {
2505
+ $self->{Methods}->{'warning'}->(@_);
2506
+ }
2507
+ else {
2508
+ my $method;
2509
+ my $callbacks;
2510
+ if (exists $self->{ParseOptions}) {
2511
+ $callbacks = $self->{ParseOptions};
2512
+ }
2513
+ else {
2514
+ $callbacks = $self;
2515
+ }
2516
+ if (0) { # dummy to make elsif's below compile
2517
+ }
2518
+ elsif (defined $callbacks->{'ErrorHandler'} and $method = $callbacks->{'ErrorHandler'}->can('warning') ) {
2519
+ my $handler = $callbacks->{'ErrorHandler'};
2520
+ $self->{Methods}->{'warning'} = sub { $method->($handler, @_) };
2521
+ return $method->($handler, @_);
2522
+ }
2523
+ elsif (defined $callbacks->{'Handler'} and $method = $callbacks->{'Handler'}->can('warning') ) {
2524
+ my $handler = $callbacks->{'Handler'};
2525
+ $self->{Methods}->{'warning'} = sub { $method->($handler, @_) };
2526
+ return $method->($handler, @_);
2527
+ }
2528
+ elsif (defined $callbacks->{'ErrorHandler'}
2529
+ and $callbacks->{'ErrorHandler'}->can('AUTOLOAD')
2530
+ and $callbacks->{'ErrorHandler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2531
+ )
2532
+ {
2533
+ my $res = eval { $callbacks->{'ErrorHandler'}->warning(@_) };
2534
+ if ($@) {
2535
+ die $@;
2536
+ }
2537
+ else {
2538
+ # I think there's a buggette here...
2539
+ # if the first call throws an exception, we don't set it up right.
2540
+ # Not fatal, but we might want to address it.
2541
+ my $handler = $callbacks->{'ErrorHandler'};
2542
+ $self->{Methods}->{'warning'} = sub { $handler->warning(@_) };
2543
+ }
2544
+ return $res;
2545
+ }
2546
+ elsif (defined $callbacks->{'Handler'}
2547
+ and $callbacks->{'Handler'}->can('AUTOLOAD')
2548
+ and $callbacks->{'Handler'}->can('AUTOLOAD') ne (UNIVERSAL->can('AUTOLOAD') || '')
2549
+ )
2550
+ {
2551
+ my $res = eval { $callbacks->{'Handler'}->warning(@_) };
2552
+ if ($@) {
2553
+ die $@;
2554
+ }
2555
+ else {
2556
+ # I think there's a buggette here...
2557
+ # if the first call throws an exception, we don't set it up right.
2558
+ # Not fatal, but we might want to address it.
2559
+ my $handler = $callbacks->{'Handler'};
2560
+ $self->{Methods}->{'warning'} = sub { $handler->warning(@_) };
2561
+ }
2562
+ return $res;
2563
+ }
2564
+ else {
2565
+ $self->{Methods}->{'warning'} = sub { };
2566
+ }
2567
+ }
2568
+
2569
+ }
2570
+
2571
+ #-------------------------------------------------------------------#
2572
+ # Class->new(%options)
2573
+ #-------------------------------------------------------------------#
2574
+ sub new {
2575
+ my $proto = shift;
2576
+ my $class = ref($proto) || $proto;
2577
+ my $options = ($#_ == 0) ? shift : { @_ };
2578
+
2579
+ unless ( defined( $options->{Handler} ) or
2580
+ defined( $options->{ContentHandler} ) or
2581
+ defined( $options->{DTDHandler} ) or
2582
+ defined( $options->{DocumentHandler} ) or
2583
+ defined( $options->{LexicalHandler} ) or
2584
+ defined( $options->{ErrorHandler} ) or
2585
+ defined( $options->{DeclHandler} ) ) {
2586
+
2587
+ $options->{Handler} = XML::SAX::Base::NoHandler->new;
2588
+ }
2589
+
2590
+ my $self = bless $options, $class;
2591
+ # turn NS processing on by default
2592
+ $self->set_feature('http://xml.org/sax/features/namespaces', 1);
2593
+ return $self;
2594
+ }
2595
+ #-------------------------------------------------------------------#
2596
+
2597
+ #-------------------------------------------------------------------#
2598
+ # $p->parse(%options)
2599
+ #-------------------------------------------------------------------#
2600
+ sub parse {
2601
+ my $self = shift;
2602
+ my $parse_options = $self->get_options(@_);
2603
+ local $self->{ParseOptions} = $parse_options;
2604
+ if ($self->{Parent}) { # calling parse on a filter for some reason
2605
+ return $self->{Parent}->parse($parse_options);
2606
+ }
2607
+ else {
2608
+ my $method;
2609
+ if (defined $parse_options->{Source}{CharacterStream} and $method = $self->can('_parse_characterstream')) {
2610
+ warn("parse charstream???\n");
2611
+ return $method->($self, $parse_options->{Source}{CharacterStream});
2612
+ }
2613
+ elsif (defined $parse_options->{Source}{ByteStream} and $method = $self->can('_parse_bytestream')) {
2614
+ return $method->($self, $parse_options->{Source}{ByteStream});
2615
+ }
2616
+ elsif (defined $parse_options->{Source}{String} and $method = $self->can('_parse_string')) {
2617
+ return $method->($self, $parse_options->{Source}{String});
2618
+ }
2619
+ elsif (defined $parse_options->{Source}{SystemId} and $method = $self->can('_parse_systemid')) {
2620
+ return $method->($self, $parse_options->{Source}{SystemId});
2621
+ }
2622
+ else {
2623
+ die "No _parse_* routine defined on this driver (If it is a filter, remember to set the Parent property. If you call the parse() method, make sure to set a Source. You may want to call parse_uri, parse_string or parse_file instead.) [$self]";
2624
+ }
2625
+ }
2626
+ }
2627
+ #-------------------------------------------------------------------#
2628
+
2629
+ #-------------------------------------------------------------------#
2630
+ # $p->parse_file(%options)
2631
+ #-------------------------------------------------------------------#
2632
+ sub parse_file {
2633
+ my $self = shift;
2634
+ my $file = shift;
2635
+ return $self->parse_uri($file, @_) if ref(\$file) eq 'SCALAR';
2636
+ my $parse_options = $self->get_options(@_);
2637
+ $parse_options->{Source}{ByteStream} = $file;
2638
+ return $self->parse($parse_options);
2639
+ }
2640
+ #-------------------------------------------------------------------#
2641
+
2642
+ #-------------------------------------------------------------------#
2643
+ # $p->parse_uri(%options)
2644
+ #-------------------------------------------------------------------#
2645
+ sub parse_uri {
2646
+ my $self = shift;
2647
+ my $file = shift;
2648
+ my $parse_options = $self->get_options(@_);
2649
+ $parse_options->{Source}{SystemId} = $file;
2650
+ return $self->parse($parse_options);
2651
+ }
2652
+ #-------------------------------------------------------------------#
2653
+
2654
+ #-------------------------------------------------------------------#
2655
+ # $p->parse_string(%options)
2656
+ #-------------------------------------------------------------------#
2657
+ sub parse_string {
2658
+ my $self = shift;
2659
+ my $string = shift;
2660
+ my $parse_options = $self->get_options(@_);
2661
+ $parse_options->{Source}{String} = $string;
2662
+ return $self->parse($parse_options);
2663
+ }
2664
+ #-------------------------------------------------------------------#
2665
+
2666
+ #-------------------------------------------------------------------#
2667
+ # get_options
2668
+ #-------------------------------------------------------------------#
2669
+ sub get_options {
2670
+ my $self = shift;
2671
+
2672
+ if (@_ == 1) {
2673
+ return { %$self, %{$_[0]} };
2674
+ } else {
2675
+ return { %$self, @_ };
2676
+ }
2677
+ }
2678
+ #-------------------------------------------------------------------#
2679
+
2680
+ #-------------------------------------------------------------------#
2681
+ # get_features
2682
+ #-------------------------------------------------------------------#
2683
+ sub get_features {
2684
+ return (
2685
+ 'http://xml.org/sax/features/external-general-entities' => undef,
2686
+ 'http://xml.org/sax/features/external-parameter-entities' => undef,
2687
+ 'http://xml.org/sax/features/is-standalone' => undef,
2688
+ 'http://xml.org/sax/features/lexical-handler' => undef,
2689
+ 'http://xml.org/sax/features/parameter-entities' => undef,
2690
+ 'http://xml.org/sax/features/namespaces' => 1,
2691
+ 'http://xml.org/sax/features/namespace-prefixes' => 0,
2692
+ 'http://xml.org/sax/features/string-interning' => undef,
2693
+ 'http://xml.org/sax/features/use-attributes2' => undef,
2694
+ 'http://xml.org/sax/features/use-locator2' => undef,
2695
+ 'http://xml.org/sax/features/validation' => undef,
2696
+
2697
+ 'http://xml.org/sax/properties/dom-node' => undef,
2698
+ 'http://xml.org/sax/properties/xml-string' => undef,
2699
+ );
2700
+ }
2701
+ #-------------------------------------------------------------------#
2702
+
2703
+ #-------------------------------------------------------------------#
2704
+ # get_feature
2705
+ #-------------------------------------------------------------------#
2706
+ sub get_feature {
2707
+ my $self = shift;
2708
+ my $feat = shift;
2709
+
2710
+ # check %FEATURES to see if it's there, and return it if so
2711
+ # throw XML::SAX::Exception::NotRecognized if it's not there
2712
+ # throw XML::SAX::Exception::NotSupported if it's there but we
2713
+ # don't support it
2714
+
2715
+ my %features = $self->get_features();
2716
+ if (exists $features{$feat}) {
2717
+ my %supported = map { $_ => 1 } $self->supported_features();
2718
+ if ($supported{$feat}) {
2719
+ return $self->{__PACKAGE__ . "::Features"}{$feat};
2720
+ }
2721
+ throw XML::SAX::Exception::NotSupported(
2722
+ Message => "The feature '$feat' is not supported by " . ref($self),
2723
+ Exception => undef,
2724
+ );
2725
+ }
2726
+ throw XML::SAX::Exception::NotRecognized(
2727
+ Message => "The feature '$feat' is not recognized by " . ref($self),
2728
+ Exception => undef,
2729
+ );
2730
+ }
2731
+ #-------------------------------------------------------------------#
2732
+
2733
+ #-------------------------------------------------------------------#
2734
+ # set_feature
2735
+ #-------------------------------------------------------------------#
2736
+ sub set_feature {
2737
+ my $self = shift;
2738
+ my $feat = shift;
2739
+ my $value = shift;
2740
+ # check %FEATURES to see if it's there, and set it if so
2741
+ # throw XML::SAX::Exception::NotRecognized if it's not there
2742
+ # throw XML::SAX::Exception::NotSupported if it's there but we
2743
+ # don't support it
2744
+
2745
+ my %features = $self->get_features();
2746
+ if (exists $features{$feat}) {
2747
+ my %supported = map { $_ => 1 } $self->supported_features();
2748
+ if ($supported{$feat}) {
2749
+ return $self->{__PACKAGE__ . "::Features"}{$feat} = $value;
2750
+ }
2751
+ throw XML::SAX::Exception::NotSupported(
2752
+ Message => "The feature '$feat' is not supported by " . ref($self),
2753
+ Exception => undef,
2754
+ );
2755
+ }
2756
+ throw XML::SAX::Exception::NotRecognized(
2757
+ Message => "The feature '$feat' is not recognized by " . ref($self),
2758
+ Exception => undef,
2759
+ );
2760
+ }
2761
+ #-------------------------------------------------------------------#
2762
+
2763
+ #-------------------------------------------------------------------#
2764
+ # get_handler and friends
2765
+ #-------------------------------------------------------------------#
2766
+ sub get_handler {
2767
+ my $self = shift;
2768
+ my $handler_type = shift;
2769
+ $handler_type ||= 'Handler';
2770
+ return defined( $self->{$handler_type} ) ? $self->{$handler_type} : undef;
2771
+ }
2772
+
2773
+ sub get_document_handler {
2774
+ my $self = shift;
2775
+ return $self->get_handler('DocumentHandler', @_);
2776
+ }
2777
+
2778
+ sub get_content_handler {
2779
+ my $self = shift;
2780
+ return $self->get_handler('ContentHandler', @_);
2781
+ }
2782
+
2783
+ sub get_dtd_handler {
2784
+ my $self = shift;
2785
+ return $self->get_handler('DTDHandler', @_);
2786
+ }
2787
+
2788
+ sub get_lexical_handler {
2789
+ my $self = shift;
2790
+ return $self->get_handler('LexicalHandler', @_);
2791
+ }
2792
+
2793
+ sub get_decl_handler {
2794
+ my $self = shift;
2795
+ return $self->get_handler('DeclHandler', @_);
2796
+ }
2797
+
2798
+ sub get_error_handler {
2799
+ my $self = shift;
2800
+ return $self->get_handler('ErrorHandler', @_);
2801
+ }
2802
+
2803
+ sub get_entity_resolver {
2804
+ my $self = shift;
2805
+ return $self->get_handler('EntityResolver', @_);
2806
+ }
2807
+ #-------------------------------------------------------------------#
2808
+
2809
+ #-------------------------------------------------------------------#
2810
+ # set_handler and friends
2811
+ #-------------------------------------------------------------------#
2812
+ sub set_handler {
2813
+ my $self = shift;
2814
+ my ($new_handler, $handler_type) = reverse @_;
2815
+ $handler_type ||= 'Handler';
2816
+ $self->{Methods} = {} if $self->{Methods};
2817
+ $self->{$handler_type} = $new_handler;
2818
+ $self->{ParseOptions}->{$handler_type} = $new_handler;
2819
+ return 1;
2820
+ }
2821
+
2822
+ sub set_document_handler {
2823
+ my $self = shift;
2824
+ return $self->set_handler('DocumentHandler', @_);
2825
+ }
2826
+
2827
+ sub set_content_handler {
2828
+ my $self = shift;
2829
+ return $self->set_handler('ContentHandler', @_);
2830
+ }
2831
+ sub set_dtd_handler {
2832
+ my $self = shift;
2833
+ return $self->set_handler('DTDHandler', @_);
2834
+ }
2835
+ sub set_lexical_handler {
2836
+ my $self = shift;
2837
+ return $self->set_handler('LexicalHandler', @_);
2838
+ }
2839
+ sub set_decl_handler {
2840
+ my $self = shift;
2841
+ return $self->set_handler('DeclHandler', @_);
2842
+ }
2843
+ sub set_error_handler {
2844
+ my $self = shift;
2845
+ return $self->set_handler('ErrorHandler', @_);
2846
+ }
2847
+ sub set_entity_resolver {
2848
+ my $self = shift;
2849
+ return $self->set_handler('EntityResolver', @_);
2850
+ }
2851
+
2852
+ #-------------------------------------------------------------------#
2853
+
2854
+ #-------------------------------------------------------------------#
2855
+ # supported_features
2856
+ #-------------------------------------------------------------------#
2857
+ sub supported_features {
2858
+ my $self = shift;
2859
+ # Only namespaces are required by all parsers
2860
+ return (
2861
+ 'http://xml.org/sax/features/namespaces',
2862
+ );
2863
+ }
2864
+ #-------------------------------------------------------------------#
2865
+
2866
+ sub no_op {
2867
+ # this space intentionally blank
2868
+ }
2869
+
2870
+
2871
+ package XML::SAX::Base::NoHandler;
2872
+ BEGIN {
2873
+ $XML::SAX::Base::NoHandler::VERSION = '1.08';
2874
+ }
2875
+
2876
+ # we need a fake handler that doesn't implement anything, this
2877
+ # simplifies the code a lot (though given the recent changes,
2878
+ # it may be better to do without)
2879
+ sub new {
2880
+ #warn "no handler called\n";
2881
+ return bless {};
2882
+ }
2883
+
2884
+ 1;
2885
+
2886
+ __END__
2887
+
2888
+ =head1 NAME
2889
+
2890
+ XML::SAX::Base - Base class SAX Drivers and Filters
2891
+
2892
+ =head1 SYNOPSIS
2893
+
2894
+ package MyFilter;
2895
+ use XML::SAX::Base;
2896
+ @ISA = ('XML::SAX::Base');
2897
+
2898
+ =head1 DESCRIPTION
2899
+
2900
+ This module has a very simple task - to be a base class for PerlSAX
2901
+ drivers and filters. It's default behaviour is to pass the input directly
2902
+ to the output unchanged. It can be useful to use this module as a base class
2903
+ so you don't have to, for example, implement the characters() callback.
2904
+
2905
+ The main advantages that it provides are easy dispatching of events the right
2906
+ way (ie it takes care for you of checking that the handler has implemented
2907
+ that method, or has defined an AUTOLOAD), and the guarantee that filters
2908
+ will pass along events that they aren't implementing to handlers downstream
2909
+ that might nevertheless be interested in them.
2910
+
2911
+ =head1 WRITING SAX DRIVERS AND FILTERS
2912
+
2913
+ The Perl Sax API Reference is at L<http://perl-xml.sourceforge.net/perl-sax/>.
2914
+
2915
+ Writing SAX Filters is tremendously easy: all you need to do is
2916
+ inherit from this module, and define the events you want to handle. A
2917
+ more detailed explanation can be found at
2918
+ http://www.xml.com/pub/a/2001/10/10/sax-filters.html.
2919
+
2920
+ Writing Drivers is equally simple. The one thing you need to pay
2921
+ attention to is B<NOT> to call events yourself (this applies to Filters
2922
+ as well). For instance:
2923
+
2924
+ package MyFilter;
2925
+ use base qw(XML::SAX::Base);
2926
+
2927
+ sub start_element {
2928
+ my $self = shift;
2929
+ my $data = shift;
2930
+ # do something
2931
+ $self->{Handler}->start_element($data); # BAD
2932
+ }
2933
+
2934
+ The above example works well as precisely that: an example. But it has
2935
+ several faults: 1) it doesn't test to see whether the handler defines
2936
+ start_element. Perhaps it doesn't want to see that event, in which
2937
+ case you shouldn't throw it (otherwise it'll die). 2) it doesn't check
2938
+ ContentHandler and then Handler (ie it doesn't look to see that the
2939
+ user hasn't requested events on a specific handler, and if not on the
2940
+ default one), 3) if it did check all that, not only would the code be
2941
+ cumbersome (see this module's source to get an idea) but it would also
2942
+ probably have to check for a DocumentHandler (in case this were SAX1)
2943
+ and for AUTOLOADs potentially defined in all these packages. As you can
2944
+ tell, that would be fairly painful. Instead of going through that,
2945
+ simply remember to use code similar to the following instead:
2946
+
2947
+ package MyFilter;
2948
+ use base qw(XML::SAX::Base);
2949
+
2950
+ sub start_element {
2951
+ my $self = shift;
2952
+ my $data = shift;
2953
+ # do something to filter
2954
+ $self->SUPER::start_element($data); # GOOD (and easy) !
2955
+ }
2956
+
2957
+ This way, once you've done your job you hand the ball back to
2958
+ XML::SAX::Base and it takes care of all those problems for you!
2959
+
2960
+ Note that the above example doesn't apply to filters only, drivers
2961
+ will benefit from the exact same feature.
2962
+
2963
+ =head1 METHODS
2964
+
2965
+ A number of methods are defined within this class for the purpose of
2966
+ inheritance. Some probably don't need to be overridden (eg parse_file)
2967
+ but some clearly should be (eg parse). Options for these methods are
2968
+ described in the PerlSAX2 specification available from
2969
+ http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/~checkout~/perl-xml/libxml-perl/doc/sax-2.0.html?rev=HEAD&content-type=text/html.
2970
+
2971
+ =over 4
2972
+
2973
+ =item * parse
2974
+
2975
+ The parse method is the main entry point to parsing documents. Internally
2976
+ the parse method will detect what type of "thing" you are parsing, and
2977
+ call the appropriate method in your implementation class. Here is the
2978
+ mapping table of what is in the Source options (see the Perl SAX 2.0
2979
+ specification for the meaning of these values):
2980
+
2981
+ Source Contains parse() calls
2982
+ =============== =============
2983
+ CharacterStream (*) _parse_characterstream($stream, $options)
2984
+ ByteStream _parse_bytestream($stream, $options)
2985
+ String _parse_string($string, $options)
2986
+ SystemId _parse_systemid($string, $options)
2987
+
2988
+ However note that these methods may not be sensible if your driver class
2989
+ is not for parsing XML. An example might be a DBI driver that generates
2990
+ XML/SAX from a database table. If that is the case, you likely want to
2991
+ write your own parse() method.
2992
+
2993
+ Also note that the Source may contain both a PublicId entry, and an
2994
+ Encoding entry. To get at these, examine $options->{Source} as passed
2995
+ to your method.
2996
+
2997
+ (*) A CharacterStream is a filehandle that does not need any encoding
2998
+ translation done on it. This is implemented as a regular filehandle
2999
+ and only works under Perl 5.7.2 or higher using PerlIO. To get a single
3000
+ character, or number of characters from it, use the perl core read()
3001
+ function. To get a single byte from it (or number of bytes), you can
3002
+ use sysread(). The encoding of the stream should be in the Encoding
3003
+ entry for the Source.
3004
+
3005
+ =item * parse_file, parse_uri, parse_string
3006
+
3007
+ These are all convenience variations on parse(), and in fact simply
3008
+ set up the options before calling it. You probably don't need to
3009
+ override these.
3010
+
3011
+ =item * get_options
3012
+
3013
+ This is a convenience method to get options in SAX2 style, or more
3014
+ generically either as hashes or as hashrefs (it returns a hashref).
3015
+ You will probably want to use this method in your own implementations
3016
+ of parse() and of new().
3017
+
3018
+ =item * get_feature, set_feature
3019
+
3020
+ These simply get and set features, and throw the
3021
+ appropriate exceptions defined in the specification if need be.
3022
+
3023
+ If your subclass defines features not defined in this one,
3024
+ then you should override these methods in such a way that they check for
3025
+ your features first, and then call the base class's methods
3026
+ for features not defined by your class. An example would be:
3027
+
3028
+ sub get_feature {
3029
+ my $self = shift;
3030
+ my $feat = shift;
3031
+ if (exists $MY_FEATURES{$feat}) {
3032
+ # handle the feature in various ways
3033
+ }
3034
+ else {
3035
+ return $self->SUPER::get_feature($feat);
3036
+ }
3037
+ }
3038
+
3039
+ Currently this part is unimplemented.
3040
+
3041
+
3042
+ =item * set_handler
3043
+
3044
+ This method takes a handler type (Handler, ContentHandler, etc.) and a
3045
+ handler object as arguments, and changes the current handler for that
3046
+ handler type, while taking care of resetting the internal state that
3047
+ needs to be reset. This allows one to change a handler during parse
3048
+ without running into problems (changing it on the parser object
3049
+ directly will most likely cause trouble).
3050
+
3051
+ =item * set_document_handler, set_content_handler, set_dtd_handler, set_lexical_handler, set_decl_handler, set_error_handler, set_entity_resolver
3052
+
3053
+ These are just simple wrappers around the former method, and take a
3054
+ handler object as their argument. Internally they simply call
3055
+ set_handler with the correct arguments.
3056
+
3057
+ =item * get_handler
3058
+
3059
+ The inverse of set_handler, this method takes a an optional string containing a handler type (DTDHandler,
3060
+ ContentHandler, etc. 'Handler' is used if no type is passed). It returns a reference to the object that implements
3061
+ that that class, or undef if that handler type is not set for the current driver/filter.
3062
+
3063
+ =item * get_document_handler, get_content_handler, get_dtd_handler, get_lexical_handler, get_decl_handler,
3064
+ get_error_handler, get_entity_resolver
3065
+
3066
+ These are just simple wrappers around the get_handler() method, and take no arguments. Internally
3067
+ they simply call get_handler with the correct handler type name.
3068
+
3069
+ =back
3070
+
3071
+ It would be rather useless to describe all the methods that this
3072
+ module implements here. They are all the methods supported in SAX1 and
3073
+ SAX2. In case your memory is a little short, here is a list. The
3074
+ apparent duplicates are there so that both versions of SAX can be
3075
+ supported.
3076
+
3077
+ =over 4
3078
+
3079
+ =item * start_document
3080
+
3081
+ =item * end_document
3082
+
3083
+ =item * start_element
3084
+
3085
+ =item * start_document
3086
+
3087
+ =item * end_document
3088
+
3089
+ =item * start_element
3090
+
3091
+ =item * end_element
3092
+
3093
+ =item * characters
3094
+
3095
+ =item * processing_instruction
3096
+
3097
+ =item * ignorable_whitespace
3098
+
3099
+ =item * set_document_locator
3100
+
3101
+ =item * start_prefix_mapping
3102
+
3103
+ =item * end_prefix_mapping
3104
+
3105
+ =item * skipped_entity
3106
+
3107
+ =item * start_cdata
3108
+
3109
+ =item * end_cdata
3110
+
3111
+ =item * comment
3112
+
3113
+ =item * entity_reference
3114
+
3115
+ =item * notation_decl
3116
+
3117
+ =item * unparsed_entity_decl
3118
+
3119
+ =item * element_decl
3120
+
3121
+ =item * attlist_decl
3122
+
3123
+ =item * doctype_decl
3124
+
3125
+ =item * xml_decl
3126
+
3127
+ =item * entity_decl
3128
+
3129
+ =item * attribute_decl
3130
+
3131
+ =item * internal_entity_decl
3132
+
3133
+ =item * external_entity_decl
3134
+
3135
+ =item * resolve_entity
3136
+
3137
+ =item * start_dtd
3138
+
3139
+ =item * end_dtd
3140
+
3141
+ =item * start_entity
3142
+
3143
+ =item * end_entity
3144
+
3145
+ =item * warning
3146
+
3147
+ =item * error
3148
+
3149
+ =item * fatal_error
3150
+
3151
+ =back
3152
+
3153
+ =head1 TODO
3154
+
3155
+ - more tests
3156
+ - conform to the "SAX Filters" and "Java and DOM compatibility"
3157
+ sections of the SAX2 document.
3158
+
3159
+ =head1 AUTHOR
3160
+
3161
+ Kip Hampton (khampton@totalcinema.com) did most of the work, after porting
3162
+ it from XML::Filter::Base.
3163
+
3164
+ Robin Berjon (robin@knowscape.com) pitched in with patches to make it
3165
+ usable as a base for drivers as well as filters, along with other patches.
3166
+
3167
+ Matt Sergeant (matt@sergeant.org) wrote the original XML::Filter::Base,
3168
+ and patched a few things here and there, and imported it into
3169
+ the XML::SAX distribution.
3170
+
3171
+ =head1 SEE ALSO
3172
+
3173
+ L<XML::SAX>
3174
+
3175
+ =cut
3176
+