wirispluginengine 3.62.0.1322

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 (112) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +34 -0
  3. data/app/assets/javascripts/wirispluginengine/WIRISplugins.js +2833 -0
  4. data/app/controllers/wirispluginengine/application_controller.rb +75 -0
  5. data/app/helpers/wirispluginengine/application_helper.rb +4 -0
  6. data/config/routes.rb +4 -0
  7. data/configuration.ini.dist +104 -0
  8. data/lib/com/wiris/common/WInteger.rb +57 -0
  9. data/lib/com/wiris/plugin/api/Cas.rb +8 -0
  10. data/lib/com/wiris/plugin/api/CleanCache.rb +8 -0
  11. data/lib/com/wiris/plugin/api/Configuration.rb +8 -0
  12. data/lib/com/wiris/plugin/api/ConfigurationKeys.rb +96 -0
  13. data/lib/com/wiris/plugin/api/Editor.rb +8 -0
  14. data/lib/com/wiris/plugin/api/Filter.rb +8 -0
  15. data/lib/com/wiris/plugin/api/ImageFormatController.rb +8 -0
  16. data/lib/com/wiris/plugin/api/ParamsProvider.rb +8 -0
  17. data/lib/com/wiris/plugin/api/PluginBuilder.rb +79 -0
  18. data/lib/com/wiris/plugin/api/Render.rb +8 -0
  19. data/lib/com/wiris/plugin/api/ServiceResourceLoader.rb +8 -0
  20. data/lib/com/wiris/plugin/api/Test.rb +8 -0
  21. data/lib/com/wiris/plugin/api/TextService.rb +8 -0
  22. data/lib/com/wiris/plugin/configuration/ConfigurationUpdater.rb +8 -0
  23. data/lib/com/wiris/plugin/impl/CasImpl.rb +146 -0
  24. data/lib/com/wiris/plugin/impl/CleanCacheImpl.rb +111 -0
  25. data/lib/com/wiris/plugin/impl/ConfigurationImpl.rb +176 -0
  26. data/lib/com/wiris/plugin/impl/CustomConfigurationUpdater.rb +38 -0
  27. data/lib/com/wiris/plugin/impl/DefaultConfigurationUpdater.rb +29 -0
  28. data/lib/com/wiris/plugin/impl/EditorImpl.rb +86 -0
  29. data/lib/com/wiris/plugin/impl/FileConfigurationUpdater.rb +34 -0
  30. data/lib/com/wiris/plugin/impl/FileStorageAndCache.rb +59 -0
  31. data/lib/com/wiris/plugin/impl/FolderTreeStorageAndCache.rb +144 -0
  32. data/lib/com/wiris/plugin/impl/GenericParamsProviderImpl.rb +56 -0
  33. data/lib/com/wiris/plugin/impl/HttpImpl.rb +53 -0
  34. data/lib/com/wiris/plugin/impl/HttpListener.rb +8 -0
  35. data/lib/com/wiris/plugin/impl/ImageFormatControllerPng.rb +73 -0
  36. data/lib/com/wiris/plugin/impl/ImageFormatControllerSvg.rb +34 -0
  37. data/lib/com/wiris/plugin/impl/PluginBuilderImpl.rb +253 -0
  38. data/lib/com/wiris/plugin/impl/RenderImpl.rb +280 -0
  39. data/lib/com/wiris/plugin/impl/ServiceResourceLoaderImpl.rb +52 -0
  40. data/lib/com/wiris/plugin/impl/TestImpl.rb +166 -0
  41. data/lib/com/wiris/plugin/impl/TextFilter.rb +211 -0
  42. data/lib/com/wiris/plugin/impl/TextFilterTags.rb +55 -0
  43. data/lib/com/wiris/plugin/impl/TextServiceImpl.rb +118 -0
  44. data/lib/com/wiris/plugin/storage/StorageAndCache.rb +8 -0
  45. data/lib/com/wiris/util/json/JSon.rb +536 -0
  46. data/lib/com/wiris/util/json/JSonIntegerFormat.rb +21 -0
  47. data/lib/com/wiris/util/json/StringParser.rb +61 -0
  48. data/lib/com/wiris/util/sys/HttpConnection.rb +18 -0
  49. data/lib/com/wiris/util/sys/HttpConnectionListener.rb +8 -0
  50. data/lib/com/wiris/util/sys/IniFile.rb +143 -0
  51. data/lib/com/wiris/util/sys/Store.rb +109 -0
  52. data/lib/com/wiris/util/xml/SerializableImpl.rb +20 -0
  53. data/lib/com/wiris/util/xml/WCharacterBase.rb +634 -0
  54. data/lib/com/wiris/util/xml/WEntities.rb +14 -0
  55. data/lib/com/wiris/util/xml/WXmlUtils.rb +515 -0
  56. data/lib/com/wiris/util/xml/XmlSerializer.rb +485 -0
  57. data/lib/com/wiris/util/xml/XmlWriter.rb +279 -0
  58. data/lib/loader.rb +12 -0
  59. data/lib/src-generic/Array.rb +23 -0
  60. data/lib/src-generic/ArrayInt.rb +32 -0
  61. data/lib/src-generic/Base64.rb +15 -0
  62. data/lib/src-generic/BaseCode.rb +94 -0
  63. data/lib/src-generic/Bytes.rb +50 -0
  64. data/lib/src-generic/BytesInput.rb +38 -0
  65. data/lib/src-generic/EReg.rb +56 -0
  66. data/lib/src-generic/File.rb +36 -0
  67. data/lib/src-generic/FileLock.rb +27 -0
  68. data/lib/src-generic/FileSystem.rb +37 -0
  69. data/lib/src-generic/Hash.rb +43 -0
  70. data/lib/src-generic/Http.rb +107 -0
  71. data/lib/src-generic/HttpRequest.rb +25 -0
  72. data/lib/src-generic/HttpResponse.rb +71 -0
  73. data/lib/src-generic/Iterator.rb +20 -0
  74. data/lib/src-generic/Math.rb +15 -0
  75. data/lib/src-generic/Md5.rb +8 -0
  76. data/lib/src-generic/Md5Tools.rb +12 -0
  77. data/lib/src-generic/PropertiesTools.rb +33 -0
  78. data/lib/src-generic/Reflect.rb +17 -0
  79. data/lib/src-generic/RubyConfigurationUpdater.rb +45 -0
  80. data/lib/src-generic/Serializer.rb +85 -0
  81. data/lib/src-generic/Std.rb +74 -0
  82. data/lib/src-generic/Storage.rb +153 -0
  83. data/lib/src-generic/StringBuf.rb +41 -0
  84. data/lib/src-generic/StringTools.rb +46 -0
  85. data/lib/src-generic/Timer.rb +7 -0
  86. data/lib/src-generic/Type.rb +19 -0
  87. data/lib/src-generic/TypeTools.rb +32 -0
  88. data/lib/src-generic/Unserializer.rb +73 -0
  89. data/lib/src-generic/Utf8.rb +27 -0
  90. data/lib/src-generic/Xml.rb +199 -0
  91. data/lib/src-generic/extended/Integer.rb +5 -0
  92. data/lib/src-generic/extended/Math.rb +7 -0
  93. data/lib/src-generic/extended/Properties.rb +12 -0
  94. data/lib/src-generic/extended/String.rb +39 -0
  95. data/lib/src-generic/settings/PlatformSettings.rb +19 -0
  96. data/lib/wirispluginengine.rb +5 -0
  97. data/lib/wirispluginengine/engine.rb +5 -0
  98. data/lib/wirispluginengine/integration/cleancache.rb +8 -0
  99. data/lib/wirispluginengine/integration/configurationjs.rb +16 -0
  100. data/lib/wirispluginengine/integration/configurationjson.rb +7 -0
  101. data/lib/wirispluginengine/integration/createimage.rb +8 -0
  102. data/lib/wirispluginengine/integration/getmathml.rb +18 -0
  103. data/lib/wirispluginengine/integration/resource.rb +8 -0
  104. data/lib/wirispluginengine/integration/service.rb +6 -0
  105. data/lib/wirispluginengine/integration/showimage.rb +21 -0
  106. data/lib/wirispluginengine/integration/test.rb +6 -0
  107. data/lib/wirispluginengine/version.rb +3 -0
  108. data/resources/VERSION +1 -0
  109. data/resources/default-configuration.ini +45 -0
  110. data/resources/tech.txt +1 -0
  111. data/resources/wirisplugin.css +43 -0
  112. metadata +182 -0
@@ -0,0 +1,5 @@
1
+ class Integer
2
+ def self.valueOf(n)
3
+ return n.to_i
4
+ end
5
+ end
@@ -0,0 +1,7 @@
1
+ module Wiris
2
+ class Math
3
+ def self.round(f)
4
+ return f.round
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,12 @@
1
+ # Extending Ruby Hash clash
2
+ # in order to testing PropertiesTools
3
+ # and others classes with Properties java clash involved
4
+
5
+ class Properties < Hash
6
+ def initialize
7
+ # p instance_eval
8
+ end
9
+ def put(key, value)
10
+ self[key]=value
11
+ end
12
+ end
@@ -0,0 +1,39 @@
1
+ class String
2
+ def indexOf(substring, offset=0)
3
+ if (offset == 0)
4
+ index = index(substring)
5
+ else
6
+ index = index(substring, offset)
7
+ end
8
+
9
+ if (index.nil?)
10
+ return -1
11
+ else
12
+ return index
13
+ end
14
+ end
15
+
16
+ def trim()
17
+ return self.strip()
18
+ end
19
+
20
+ def lastIndexOf(string)
21
+ if (self.rindex(string).nil?)
22
+ return 0
23
+ else
24
+ return self.rindex(string)
25
+ end
26
+ end
27
+
28
+ def startsWith(string)
29
+ return self.start_with?(string)
30
+ end
31
+
32
+ def toUpperCase()
33
+ return self.upcase
34
+ end
35
+
36
+ def charAt(index)
37
+ return self[index]
38
+ end
39
+ end
@@ -0,0 +1,19 @@
1
+ module Wiris
2
+ class PlatformSettings
3
+ PARSE_XML_ENTITIES = false
4
+ IS_CSHARP = false
5
+ IS_JAVA = true
6
+ IS_JAVASCRIPT = false
7
+ IS_FLASH = false
8
+ IS_RUBY = true
9
+ UTF8_CONVERSION = false
10
+
11
+ def isWinXP()
12
+ return false
13
+ end
14
+
15
+ def evenTokensBoxWidth()
16
+ return false
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,5 @@
1
+ require "wirispluginengine/engine"
2
+ require "loader"
3
+
4
+ module Wirispluginengine
5
+ end
@@ -0,0 +1,5 @@
1
+ module Wirispluginengine
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace Wirispluginengine
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ class CleanCache
2
+ def dispatch(request, response, provider, pb)
3
+ cleanCache = pb.newCleanCache()
4
+ cleanCache.init(provider)
5
+ response.content_type = cleanCache.getContentType();
6
+ return cleanCache.getCacheOutput()
7
+ end
8
+ end
@@ -0,0 +1,16 @@
1
+ class Configurationjs
2
+ def dispatch (request, response, pb)
3
+ response.body = "// Scripts" + "\r\n" +
4
+ "var _wrs_conf_createimagePath = _wrs_int_path + '/createimage';" "\r\n" +
5
+ "var _wrs_conf_showimagePath = _wrs_int_path + '/showimage';" "\r\n" +
6
+ "var _wrs_conf_editorPath = _wrs_int_path + '/editor'; // Specifies where is the editor HTML code (for popup window)" "\r\n" +
7
+ "var _wrs_conf_CASPath = _wrs_int_path + '/cas'; // Specifies where is the WIRIS cas HTML code (for popup window)" "\r\n" +
8
+ "var _wrs_conf_createimagePath = _wrs_int_path + '/createimage'; // Specifies where is createimage script" "\r\n" +
9
+ "var _wrs_conf_createcasimagePath = _wrs_int_path + '/createcasimage'; // Specifies where is createcasimage script" "\r\n" +
10
+ "var _wrs_conf_getmathmlPath = _wrs_int_path + '/getmathml'; // Specifies where is the getmathml script." "\r\n" +
11
+ "var _wrs_conf_servicePath = _wrs_int_path + '/service'; // Specifies where is the service script." "\r\n"
12
+ conf = pb.getConfiguration()
13
+ response.body = response.body + conf.getJavaScriptConfiguration()
14
+
15
+ end
16
+ end
@@ -0,0 +1,7 @@
1
+ class ConfigurationJson
2
+ def dispatch (request, response, provider, pb)
3
+ variableKeys = provider.getRequiredParameter('variablekeys')
4
+ conf = pb.getConfiguration()
5
+ response.body = conf.getJsonConfiguration(variableKeys)
6
+ end
7
+ end
@@ -0,0 +1,8 @@
1
+ class CreateImage
2
+ def dispatch(request, response, provider, pb)
3
+ mml = provider.getRequiredParameter('mml');
4
+ render = pb.newRender()
5
+ a = render.createImage(mml, provider, nil)
6
+ return a
7
+ end
8
+ end
@@ -0,0 +1,18 @@
1
+ class GetMathMLDispatcher
2
+ def dispatch(request, response, provider, pb)
3
+ digest = nil
4
+ latex = provider.getParameter("latex", nil)
5
+ md5Parameter = provider.getParameter("md5", nil)
6
+
7
+ if (md5Parameter != nil && md5Parameter.length() == 32) # Support for "generic simple" integration.
8
+ digest = md5Parameter
9
+ else
10
+ String digestParameter = request.getParameter("digest")
11
+ if (digestParameter != nil) # Support for future integrations (where maybe they aren't using md5 sums).
12
+ digest = digestParameter
13
+ end
14
+ end
15
+ r = pb.newTextService().getMathML(digest, latex)
16
+ return r
17
+ end
18
+ end
@@ -0,0 +1,8 @@
1
+ class Resource
2
+ def dispatch(response, provider, pb)
3
+ resource = provider.getRequiredParameter('resourcefile');
4
+ resourceLoader = pb.newResourceLoader()
5
+ response.content_type = resourceLoader.getContentType(resource)
6
+ return resourceLoader.getContent(resource)
7
+ end
8
+ end
@@ -0,0 +1,6 @@
1
+ class Service
2
+ def dispatch(request, response, provider, pb)
3
+ r = pb.newTextService().service(provider.getRequiredParameter('service'), provider);
4
+ return r
5
+ end
6
+ end
@@ -0,0 +1,21 @@
1
+ class ShowImage
2
+ def dispatch(request, response, provider, pb)
3
+ render = pb.newRender()
4
+ formula = provider.getParameter('formula', nil);
5
+ mml = provider.getParameter('mml', nil);
6
+ if (pb.getConfiguration().getProperty('wirispluginperformance', 'false') == 'true')
7
+ response.content_type = 'application/json'
8
+ # If digest == null formula is not in cache.
9
+ if (formula.nil?)
10
+ render.showImage(formula, mml, provider);
11
+ formula render.computeDigest(mml, provider.getParameters());
12
+ end
13
+ r = render.showImageJson(formula, 'en');
14
+ response.body = r;
15
+ else
16
+ r = render.showImage(formula, mml, provider);
17
+ response.content_type = pb.getImageFormatController().getContentType();
18
+ return r
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,6 @@
1
+ class WirisTest
2
+ def dispatch(request, pb)
3
+ r = pb.newTest().getTestPage()
4
+ return r
5
+ end
6
+ end
@@ -0,0 +1,3 @@
1
+ module Wirispluginengine
2
+ VERSION = "3.62.0.1322"
3
+ end
data/resources/VERSION ADDED
@@ -0,0 +1 @@
1
+ 3.62.0.1322
@@ -0,0 +1,45 @@
1
+ wirisdebug = false
2
+
3
+ #wiriscachedirectory=C:/soft/Tomcat_5.5/wiris/cache
4
+ #wirisformuladirectory=C:/soft/Tomcat_5.5/wiris/formulas
5
+ wirisimageservicehost = www.wiris.net
6
+ #wirisimageserviceprotocol = http
7
+ #wirisimageserviceport = 80
8
+ wirisimageservicepath = /demo/editor/render
9
+
10
+ wirisenableaccessibility = true
11
+
12
+ # Editor
13
+ wiriseditorenabled = true
14
+ wiriseditormathmlattribute = data-mathml
15
+ wiriseditorsavemode = xml
16
+ wiriseditoreditmode = default
17
+ wiriseditorparselatex = true
18
+ wiriseditorparsexml = false
19
+ wiriseditorwindowattributes = width=570, height=450, scroll=no, resizable=yes
20
+ wiriseditorsetsize = false
21
+ wiriseditortoolbar =
22
+ wiriseditormodalwindow = false
23
+ #wirisparsememorylimit = 60
24
+ wirischemeditorenabled = true
25
+ wirisimageformat = png
26
+
27
+ # CAS
28
+ wiriscasenabled = true
29
+ wiriscascodebase = http://www.wiris.net/demo/wiris/wiris-codebase
30
+ wiriscasarchive = wrs_net_%LANG.jar
31
+ wiriscasclass = WirisApplet_net_%LANG
32
+ wiriscaslanguages = en, es, fr, it, nl, et, ca, eu, pt, de
33
+ wiriscaswidth = 450
34
+ wiriscasheight = 400
35
+ wiriscaswindowattributes = width=640, height=480, scroll=no, resizable=yes
36
+ wiriscasmathmlattribute = alt
37
+
38
+ wirishostplatform = unknown
39
+ wirisaccessibilityenabled = true
40
+
41
+ # Filter
42
+ wirisfilteroutputmathml = true
43
+
44
+ # Experimental settings
45
+ wirispluginperformance = false
@@ -0,0 +1 @@
1
+ ruby
@@ -0,0 +1,43 @@
1
+ body.wirisplugincleancache {
2
+ width: 600px;
3
+ margin: auto;
4
+ font-family: 'Segoe UI',Arial,Helvetica,sans-serif;
5
+ background-color: #E0E0E0;
6
+ text-align:center;
7
+ }
8
+
9
+ h2.wirisplugincleancache {
10
+ color: #4d626e;
11
+ font-size: 24px;
12
+ margin: 0px;
13
+ margin-bottom: 10px;
14
+ text-align: left;
15
+ }
16
+
17
+ div {
18
+ display: block;
19
+ }
20
+ div.wirismaincontainer {
21
+ padding: 1em;
22
+ margin-top: 10px;
23
+ background-color: white;
24
+ }
25
+
26
+ div.wirisplugincleancacheform {
27
+ margin: 0 auto;
28
+ display: inline-block;
29
+ text-align: right;
30
+ }
31
+
32
+ div.wirisplugincleancacheresults {
33
+ text-align: center;
34
+ vertical-align:middle;
35
+ }
36
+
37
+ span.wirisplugincleancachewarning {
38
+ color: red;
39
+ }
40
+
41
+ span.wirisplugincleancachetextform {
42
+ text-align: left;
43
+ }
metadata ADDED
@@ -0,0 +1,182 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: wirispluginengine
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.62.0.1322
5
+ platform: ruby
6
+ authors:
7
+ - Wiris
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-11-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: sqlite3
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Description of Wirispluginengine.
42
+ email:
43
+ - Your email
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - Rakefile
49
+ - app/assets/javascripts/wirispluginengine/WIRISplugins.js
50
+ - app/controllers/wirispluginengine/application_controller.rb
51
+ - app/helpers/wirispluginengine/application_helper.rb
52
+ - config/routes.rb
53
+ - configuration.ini.dist
54
+ - lib/com/wiris/common/WInteger.rb
55
+ - lib/com/wiris/plugin/api/Cas.rb
56
+ - lib/com/wiris/plugin/api/CleanCache.rb
57
+ - lib/com/wiris/plugin/api/Configuration.rb
58
+ - lib/com/wiris/plugin/api/ConfigurationKeys.rb
59
+ - lib/com/wiris/plugin/api/Editor.rb
60
+ - lib/com/wiris/plugin/api/Filter.rb
61
+ - lib/com/wiris/plugin/api/ImageFormatController.rb
62
+ - lib/com/wiris/plugin/api/ParamsProvider.rb
63
+ - lib/com/wiris/plugin/api/PluginBuilder.rb
64
+ - lib/com/wiris/plugin/api/Render.rb
65
+ - lib/com/wiris/plugin/api/ServiceResourceLoader.rb
66
+ - lib/com/wiris/plugin/api/Test.rb
67
+ - lib/com/wiris/plugin/api/TextService.rb
68
+ - lib/com/wiris/plugin/configuration/ConfigurationUpdater.rb
69
+ - lib/com/wiris/plugin/impl/CasImpl.rb
70
+ - lib/com/wiris/plugin/impl/CleanCacheImpl.rb
71
+ - lib/com/wiris/plugin/impl/ConfigurationImpl.rb
72
+ - lib/com/wiris/plugin/impl/CustomConfigurationUpdater.rb
73
+ - lib/com/wiris/plugin/impl/DefaultConfigurationUpdater.rb
74
+ - lib/com/wiris/plugin/impl/EditorImpl.rb
75
+ - lib/com/wiris/plugin/impl/FileConfigurationUpdater.rb
76
+ - lib/com/wiris/plugin/impl/FileStorageAndCache.rb
77
+ - lib/com/wiris/plugin/impl/FolderTreeStorageAndCache.rb
78
+ - lib/com/wiris/plugin/impl/GenericParamsProviderImpl.rb
79
+ - lib/com/wiris/plugin/impl/HttpImpl.rb
80
+ - lib/com/wiris/plugin/impl/HttpListener.rb
81
+ - lib/com/wiris/plugin/impl/ImageFormatControllerPng.rb
82
+ - lib/com/wiris/plugin/impl/ImageFormatControllerSvg.rb
83
+ - lib/com/wiris/plugin/impl/PluginBuilderImpl.rb
84
+ - lib/com/wiris/plugin/impl/RenderImpl.rb
85
+ - lib/com/wiris/plugin/impl/ServiceResourceLoaderImpl.rb
86
+ - lib/com/wiris/plugin/impl/TestImpl.rb
87
+ - lib/com/wiris/plugin/impl/TextFilter.rb
88
+ - lib/com/wiris/plugin/impl/TextFilterTags.rb
89
+ - lib/com/wiris/plugin/impl/TextServiceImpl.rb
90
+ - lib/com/wiris/plugin/storage/StorageAndCache.rb
91
+ - lib/com/wiris/util/json/JSon.rb
92
+ - lib/com/wiris/util/json/JSonIntegerFormat.rb
93
+ - lib/com/wiris/util/json/StringParser.rb
94
+ - lib/com/wiris/util/sys/HttpConnection.rb
95
+ - lib/com/wiris/util/sys/HttpConnectionListener.rb
96
+ - lib/com/wiris/util/sys/IniFile.rb
97
+ - lib/com/wiris/util/sys/Store.rb
98
+ - lib/com/wiris/util/xml/SerializableImpl.rb
99
+ - lib/com/wiris/util/xml/WCharacterBase.rb
100
+ - lib/com/wiris/util/xml/WEntities.rb
101
+ - lib/com/wiris/util/xml/WXmlUtils.rb
102
+ - lib/com/wiris/util/xml/XmlSerializer.rb
103
+ - lib/com/wiris/util/xml/XmlWriter.rb
104
+ - lib/loader.rb
105
+ - lib/src-generic/Array.rb
106
+ - lib/src-generic/ArrayInt.rb
107
+ - lib/src-generic/Base64.rb
108
+ - lib/src-generic/BaseCode.rb
109
+ - lib/src-generic/Bytes.rb
110
+ - lib/src-generic/BytesInput.rb
111
+ - lib/src-generic/EReg.rb
112
+ - lib/src-generic/File.rb
113
+ - lib/src-generic/FileLock.rb
114
+ - lib/src-generic/FileSystem.rb
115
+ - lib/src-generic/Hash.rb
116
+ - lib/src-generic/Http.rb
117
+ - lib/src-generic/HttpRequest.rb
118
+ - lib/src-generic/HttpResponse.rb
119
+ - lib/src-generic/Iterator.rb
120
+ - lib/src-generic/Math.rb
121
+ - lib/src-generic/Md5.rb
122
+ - lib/src-generic/Md5Tools.rb
123
+ - lib/src-generic/PropertiesTools.rb
124
+ - lib/src-generic/Reflect.rb
125
+ - lib/src-generic/RubyConfigurationUpdater.rb
126
+ - lib/src-generic/Serializer.rb
127
+ - lib/src-generic/Std.rb
128
+ - lib/src-generic/Storage.rb
129
+ - lib/src-generic/StringBuf.rb
130
+ - lib/src-generic/StringTools.rb
131
+ - lib/src-generic/Timer.rb
132
+ - lib/src-generic/Type.rb
133
+ - lib/src-generic/TypeTools.rb
134
+ - lib/src-generic/Unserializer.rb
135
+ - lib/src-generic/Utf8.rb
136
+ - lib/src-generic/Xml.rb
137
+ - lib/src-generic/extended/Integer.rb
138
+ - lib/src-generic/extended/Math.rb
139
+ - lib/src-generic/extended/Properties.rb
140
+ - lib/src-generic/extended/String.rb
141
+ - lib/src-generic/settings/PlatformSettings.rb
142
+ - lib/wirispluginengine.rb
143
+ - lib/wirispluginengine/engine.rb
144
+ - lib/wirispluginengine/integration/cleancache.rb
145
+ - lib/wirispluginengine/integration/configurationjs.rb
146
+ - lib/wirispluginengine/integration/configurationjson.rb
147
+ - lib/wirispluginengine/integration/createimage.rb
148
+ - lib/wirispluginengine/integration/getmathml.rb
149
+ - lib/wirispluginengine/integration/resource.rb
150
+ - lib/wirispluginengine/integration/service.rb
151
+ - lib/wirispluginengine/integration/showimage.rb
152
+ - lib/wirispluginengine/integration/test.rb
153
+ - lib/wirispluginengine/version.rb
154
+ - resources/VERSION
155
+ - resources/default-configuration.ini
156
+ - resources/tech.txt
157
+ - resources/wirisplugin.css
158
+ homepage: ''
159
+ licenses:
160
+ - MIT
161
+ metadata: {}
162
+ post_install_message:
163
+ rdoc_options: []
164
+ require_paths:
165
+ - lib
166
+ required_ruby_version: !ruby/object:Gem::Requirement
167
+ requirements:
168
+ - - ">="
169
+ - !ruby/object:Gem::Version
170
+ version: '0'
171
+ required_rubygems_version: !ruby/object:Gem::Requirement
172
+ requirements:
173
+ - - ">="
174
+ - !ruby/object:Gem::Version
175
+ version: '0'
176
+ requirements: []
177
+ rubyforge_project:
178
+ rubygems_version: 2.4.5.1
179
+ signing_key:
180
+ specification_version: 4
181
+ summary: Summary of Wirispluginengine.
182
+ test_files: []