wirispluginengine 3.62.0.1322 → 7.14.0.1422
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.
- checksums.yaml +4 -4
- data/Rakefile +34 -34
- data/app/assets/javascripts/wirispluginengine/WIRISplugins.js +1040 -64
- data/app/controllers/wirispluginengine/application_controller.rb +84 -75
- data/app/helpers/wirispluginengine/application_helper.rb +4 -4
- data/config/routes.rb +4 -4
- data/lib/com/wiris/common/WInteger.rb +52 -51
- data/lib/com/wiris/plugin/api/Cas.rb +5 -5
- data/lib/com/wiris/plugin/api/CleanCache.rb +5 -5
- data/lib/com/wiris/plugin/api/Configuration.rb +5 -5
- data/lib/com/wiris/plugin/api/ConfigurationKeys.rb +94 -91
- data/lib/com/wiris/plugin/api/Editor.rb +5 -5
- data/lib/com/wiris/plugin/api/Filter.rb +5 -5
- data/lib/com/wiris/plugin/api/ImageFormatController.rb +5 -5
- data/lib/com/wiris/plugin/api/ParamsProvider.rb +5 -5
- data/lib/com/wiris/plugin/api/PluginBuilder.rb +88 -74
- data/lib/com/wiris/plugin/api/Render.rb +5 -5
- data/lib/com/wiris/plugin/api/ServiceResourceLoader.rb +5 -5
- data/lib/com/wiris/plugin/api/Test.rb +5 -5
- data/lib/com/wiris/plugin/api/TextService.rb +5 -5
- data/lib/com/wiris/plugin/configuration/ConfigurationUpdater.rb +5 -5
- data/lib/com/wiris/plugin/impl/CacheFormulaImpl.rb +15 -0
- data/lib/com/wiris/plugin/impl/CacheImpl.rb +124 -0
- data/lib/com/wiris/plugin/impl/CasImpl.rb +140 -138
- data/lib/com/wiris/plugin/impl/CleanCacheImpl.rb +103 -101
- data/lib/com/wiris/plugin/impl/ConfigurationImpl.rb +165 -166
- data/lib/com/wiris/plugin/impl/CustomConfigurationUpdater.rb +32 -30
- data/lib/com/wiris/plugin/impl/DefaultConfigurationUpdater.rb +24 -22
- data/lib/com/wiris/plugin/impl/EditorImpl.rb +80 -78
- data/lib/com/wiris/plugin/impl/FileConfigurationUpdater.rb +29 -27
- data/lib/com/wiris/plugin/impl/FileStorageAndCache.rb +55 -53
- data/lib/com/wiris/plugin/impl/FolderTreeStorageAndCache.rb +65 -134
- data/lib/com/wiris/plugin/impl/GenericParamsProviderImpl.rb +50 -48
- data/lib/com/wiris/plugin/impl/HttpImpl.rb +49 -48
- data/lib/com/wiris/plugin/impl/HttpListener.rb +5 -5
- data/lib/com/wiris/plugin/impl/ImageFormatControllerPng.rb +71 -63
- data/lib/com/wiris/plugin/impl/ImageFormatControllerSvg.rb +37 -28
- data/lib/com/wiris/plugin/impl/PluginBuilderImpl.rb +280 -248
- data/lib/com/wiris/plugin/impl/RenderImpl.rb +303 -257
- data/lib/com/wiris/plugin/impl/ServiceResourceLoaderImpl.rb +41 -39
- data/lib/com/wiris/plugin/impl/TestImpl.rb +177 -157
- data/lib/com/wiris/plugin/impl/TextFilter.rb +210 -194
- data/lib/com/wiris/plugin/impl/TextFilterTags.rb +57 -50
- data/lib/com/wiris/plugin/impl/TextServiceImpl.rb +158 -107
- data/lib/com/wiris/plugin/storage/StorageAndCache.rb +5 -5
- data/lib/com/wiris/util/json/JSon.rb +505 -493
- data/lib/com/wiris/util/json/JSonIntegerFormat.rb +17 -16
- data/lib/com/wiris/util/json/JsonAPIResponse.rb +70 -0
- data/lib/com/wiris/util/json/StringParser.rb +57 -56
- data/lib/com/wiris/util/sys/AccessProvider.rb +8 -0
- data/lib/com/wiris/util/sys/Cache.rb +8 -0
- data/lib/com/wiris/util/sys/HttpConnection.rb +14 -13
- data/lib/com/wiris/util/sys/HttpConnectionListener.rb +5 -5
- data/lib/com/wiris/util/sys/HttpSync.rb +28 -0
- data/lib/com/wiris/util/sys/IniFile.rb +132 -131
- data/lib/com/wiris/util/sys/Lock.rb +8 -0
- data/lib/com/wiris/util/sys/LockProvider.rb +8 -0
- data/lib/com/wiris/util/sys/Store.rb +126 -101
- data/lib/com/wiris/util/sys/StoreCache.rb +63 -0
- data/lib/com/wiris/util/sys/TimerProxy.rb +21 -0
- data/lib/com/wiris/util/sys/TimerTask.rb +8 -0
- data/lib/com/wiris/util/type/Arrays.rb +275 -0
- data/lib/com/wiris/util/type/ByteBuffer.rb +69 -0
- data/lib/com/wiris/util/type/Comparator.rb +8 -0
- data/lib/com/wiris/util/type/DataUtils.rb +24 -0
- data/lib/com/wiris/util/type/DoubleTools.rb +14 -0
- data/lib/com/wiris/util/type/HashCache.rb +43 -0
- data/lib/com/wiris/util/type/IntegerTools.rb +32 -0
- data/lib/com/wiris/util/type/Queue.rb +31 -0
- data/lib/com/wiris/util/type/SortArrayByStringLength.rb +26 -0
- data/lib/com/wiris/util/type/SortStringByLength.rb +26 -0
- data/lib/com/wiris/util/type/SortedHash.rb +45 -0
- data/lib/com/wiris/util/type/Stack.rb +31 -0
- data/lib/com/wiris/util/type/StringUtils.rb +56 -0
- data/lib/com/wiris/util/type/Tokenizer.rb +40 -0
- data/lib/com/wiris/util/type/UrlUtils.rb +78 -0
- data/lib/com/wiris/util/xml/ContentHandler.rb +8 -0
- data/lib/com/wiris/util/xml/DefaultHandler.rb +25 -0
- data/lib/com/wiris/util/xml/EntityResolver.rb +8 -0
- data/lib/com/wiris/util/xml/MathMLEntityResolver.rb +19 -0
- data/lib/com/wiris/util/xml/SAXParser.rb +470 -0
- data/lib/com/wiris/util/xml/SerializableImpl.rb +16 -15
- data/lib/com/wiris/util/xml/WCharacterBase.rb +968 -627
- data/lib/com/wiris/util/xml/WEntities.rb +11 -9
- data/lib/com/wiris/util/xml/WXmlUtils.rb +660 -490
- data/lib/com/wiris/util/xml/XmlSerializer.rb +517 -471
- data/lib/com/wiris/util/xml/XmlWriter.rb +260 -262
- data/lib/loader.rb +15 -12
- data/lib/src-generic/Array.rb +22 -22
- data/lib/src-generic/ArrayInt.rb +31 -31
- data/lib/src-generic/Base64.rb +14 -14
- data/lib/src-generic/BaseCode.rb +93 -93
- data/lib/src-generic/Boolean.rb +27 -0
- data/lib/src-generic/Bytes.rb +50 -50
- data/lib/src-generic/BytesInput.rb +37 -37
- data/lib/src-generic/EReg.rb +55 -55
- data/lib/src-generic/File.rb +35 -35
- data/lib/src-generic/FileLock.rb +26 -26
- data/lib/src-generic/FileSystem.rb +37 -37
- data/lib/src-generic/Hash.rb +42 -42
- data/lib/src-generic/Http.rb +111 -107
- data/lib/src-generic/HttpRequest.rb +25 -25
- data/lib/src-generic/HttpResponse.rb +70 -70
- data/lib/src-generic/Iterator.rb +20 -19
- data/lib/src-generic/Math.rb +14 -14
- data/lib/src-generic/Md5.rb +8 -8
- data/lib/src-generic/Md5Tools.rb +11 -11
- data/lib/src-generic/PropertiesTools.rb +32 -32
- data/lib/src-generic/Reflect.rb +16 -16
- data/lib/src-generic/RubyConfigurationUpdater.rb +49 -45
- data/lib/src-generic/Serializer.rb +84 -84
- data/lib/src-generic/Std.rb +74 -74
- data/lib/src-generic/Storage.rb +152 -152
- data/lib/src-generic/StringBuf.rb +40 -40
- data/lib/src-generic/StringTools.rb +44 -46
- data/lib/src-generic/Timer.rb +6 -6
- data/lib/src-generic/Type.rb +18 -18
- data/lib/src-generic/TypeTools.rb +31 -31
- data/lib/src-generic/Unserializer.rb +72 -72
- data/lib/src-generic/Utf8.rb +26 -26
- data/lib/src-generic/Xml.rb +199 -198
- data/lib/src-generic/extended/Integer.rb +5 -5
- data/lib/src-generic/extended/Math.rb +6 -6
- data/lib/src-generic/extended/Properties.rb +11 -11
- data/lib/src-generic/extended/String.rb +38 -38
- data/lib/src-generic/settings/PlatformSettings.rb +18 -18
- data/lib/src-generic/system/HttpProxy.rb +23 -0
- data/lib/src-generic/system/HttpProxyAuth.rb +10 -0
- data/lib/wirispluginengine.rb +5 -5
- data/lib/wirispluginengine/engine.rb +5 -5
- data/lib/wirispluginengine/integration/cleancache.rb +8 -8
- data/lib/wirispluginengine/integration/configurationjs.rb +8 -15
- data/lib/wirispluginengine/integration/configurationjson.rb +6 -6
- data/lib/wirispluginengine/integration/createimage.rb +7 -7
- data/lib/wirispluginengine/integration/getmathml.rb +18 -18
- data/lib/wirispluginengine/integration/resource.rb +8 -8
- data/lib/wirispluginengine/integration/service.rb +5 -5
- data/lib/wirispluginengine/integration/showimage.rb +28 -21
- data/lib/wirispluginengine/integration/test.rb +5 -5
- data/lib/wirispluginengine/integration/testfilter.rb +10 -0
- data/lib/wirispluginengine/version.rb +2 -2
- data/resources/VERSION +1 -1
- data/resources/WEB-INF/web.xml +25 -0
- data/resources/WIRISplugins.js +3809 -0
- data/resources/default-configuration.ini +47 -45
- data/resources/tech.txt +1 -1
- data/resources/wirisplugin.css +43 -42
- metadata +40 -4
- data/configuration.ini.dist +0 -104
@@ -1,45 +1,47 @@
|
|
1
|
-
wirisdebug = false
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
#
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
1
|
+
wirisdebug = false
|
2
|
+
|
3
|
+
wirisimageservicehost = www.wiris.net
|
4
|
+
wirisimageservicepath = /demo/editor/render
|
5
|
+
|
6
|
+
wirisenableaccessibility = true
|
7
|
+
|
8
|
+
# Editor
|
9
|
+
wiriseditorenabled = true
|
10
|
+
wiriseditormathmlattribute = data-mathml
|
11
|
+
wiriseditorsavemode = xml
|
12
|
+
wiriseditorbase64savemode = default
|
13
|
+
wiriseditorparselatex = true
|
14
|
+
wiriseditorparsexml = false
|
15
|
+
wiriseditorwindowattributes = width=570, height=450, scroll=no, resizable=yes
|
16
|
+
wiriseditorsetsize = false
|
17
|
+
wiriseditortoolbar =
|
18
|
+
wiriseditormodalwindow = true
|
19
|
+
wiriseditormodalwindowfullscreen = false
|
20
|
+
wirischemeditorenabled = true
|
21
|
+
wirisimageformat = svg
|
22
|
+
|
23
|
+
# CAS
|
24
|
+
wiriscasenabled = false
|
25
|
+
wiriscascodebase = http://www.wiris.net/demo/wiris/wiris-codebase
|
26
|
+
wiriscasarchive = wrs_net_%LANG.jar
|
27
|
+
wiriscasclass = WirisApplet_net_%LANG
|
28
|
+
wiriscaslanguages = en, es, fr, it, nl, et, ca, eu, pt, de
|
29
|
+
wiriscaswidth = 450
|
30
|
+
wiriscasheight = 400
|
31
|
+
wiriscaswindowattributes = width=640, height=480, scroll=no, resizable=yes
|
32
|
+
wiriscasmathmlattribute = alt
|
33
|
+
|
34
|
+
wirishostplatform = unknown
|
35
|
+
wirisaccessibilityenabled = true
|
36
|
+
|
37
|
+
# Filter
|
38
|
+
wirisfilteroutputmathml = true
|
39
|
+
|
40
|
+
# Performance
|
41
|
+
wirispluginperformance = true
|
42
|
+
|
43
|
+
# Accessibility
|
44
|
+
wirisaccessproviderenabled = false
|
45
|
+
|
46
|
+
# Semantics
|
47
|
+
wirissavehandtraces = false
|
data/resources/tech.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
php
|
data/resources/wirisplugin.css
CHANGED
@@ -1,43 +1,44 @@
|
|
1
|
-
body.wirisplugincleancache {
|
2
|
-
width: 600px;
|
3
|
-
margin: auto;
|
4
|
-
font-family: 'Segoe UI',Arial,Helvetica,sans-serif;
|
5
|
-
background-color: #
|
6
|
-
text-align:center;
|
7
|
-
}
|
8
|
-
|
9
|
-
h2.wirisplugincleancache {
|
10
|
-
color: #4d626e;
|
11
|
-
font-size: 24px;
|
12
|
-
margin:
|
13
|
-
margin-bottom: 10px;
|
14
|
-
text-align: left;
|
15
|
-
}
|
16
|
-
|
17
|
-
div {
|
18
|
-
display: block;
|
19
|
-
}
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
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: 0;
|
13
|
+
margin-bottom: 10px;
|
14
|
+
text-align: left;
|
15
|
+
}
|
16
|
+
|
17
|
+
div {
|
18
|
+
display: block;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.wirismaincontainer {
|
22
|
+
padding: 1em;
|
23
|
+
margin-top: 10px;
|
24
|
+
background-color: white;
|
25
|
+
}
|
26
|
+
|
27
|
+
div.wirisplugincleancacheform {
|
28
|
+
margin: 0 auto;
|
29
|
+
display: inline-block;
|
30
|
+
text-align: right;
|
31
|
+
}
|
32
|
+
|
33
|
+
div.wirisplugincleancacheresults {
|
34
|
+
text-align: center;
|
35
|
+
vertical-align: middle;
|
36
|
+
}
|
37
|
+
|
38
|
+
span.wirisplugincleancachewarning {
|
39
|
+
color: red;
|
40
|
+
}
|
41
|
+
|
42
|
+
span.wirisplugincleancachetextform {
|
43
|
+
text-align: left;
|
43
44
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wirispluginengine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 7.14.0.1422
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wiris
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -50,7 +50,6 @@ files:
|
|
50
50
|
- app/controllers/wirispluginengine/application_controller.rb
|
51
51
|
- app/helpers/wirispluginengine/application_helper.rb
|
52
52
|
- config/routes.rb
|
53
|
-
- configuration.ini.dist
|
54
53
|
- lib/com/wiris/common/WInteger.rb
|
55
54
|
- lib/com/wiris/plugin/api/Cas.rb
|
56
55
|
- lib/com/wiris/plugin/api/CleanCache.rb
|
@@ -66,6 +65,8 @@ files:
|
|
66
65
|
- lib/com/wiris/plugin/api/Test.rb
|
67
66
|
- lib/com/wiris/plugin/api/TextService.rb
|
68
67
|
- lib/com/wiris/plugin/configuration/ConfigurationUpdater.rb
|
68
|
+
- lib/com/wiris/plugin/impl/CacheFormulaImpl.rb
|
69
|
+
- lib/com/wiris/plugin/impl/CacheImpl.rb
|
69
70
|
- lib/com/wiris/plugin/impl/CasImpl.rb
|
70
71
|
- lib/com/wiris/plugin/impl/CleanCacheImpl.rb
|
71
72
|
- lib/com/wiris/plugin/impl/ConfigurationImpl.rb
|
@@ -90,11 +91,40 @@ files:
|
|
90
91
|
- lib/com/wiris/plugin/storage/StorageAndCache.rb
|
91
92
|
- lib/com/wiris/util/json/JSon.rb
|
92
93
|
- lib/com/wiris/util/json/JSonIntegerFormat.rb
|
94
|
+
- lib/com/wiris/util/json/JsonAPIResponse.rb
|
93
95
|
- lib/com/wiris/util/json/StringParser.rb
|
96
|
+
- lib/com/wiris/util/sys/AccessProvider.rb
|
97
|
+
- lib/com/wiris/util/sys/Cache.rb
|
94
98
|
- lib/com/wiris/util/sys/HttpConnection.rb
|
95
99
|
- lib/com/wiris/util/sys/HttpConnectionListener.rb
|
100
|
+
- lib/com/wiris/util/sys/HttpSync.rb
|
96
101
|
- lib/com/wiris/util/sys/IniFile.rb
|
102
|
+
- lib/com/wiris/util/sys/Lock.rb
|
103
|
+
- lib/com/wiris/util/sys/LockProvider.rb
|
97
104
|
- lib/com/wiris/util/sys/Store.rb
|
105
|
+
- lib/com/wiris/util/sys/StoreCache.rb
|
106
|
+
- lib/com/wiris/util/sys/TimerProxy.rb
|
107
|
+
- lib/com/wiris/util/sys/TimerTask.rb
|
108
|
+
- lib/com/wiris/util/type/Arrays.rb
|
109
|
+
- lib/com/wiris/util/type/ByteBuffer.rb
|
110
|
+
- lib/com/wiris/util/type/Comparator.rb
|
111
|
+
- lib/com/wiris/util/type/DataUtils.rb
|
112
|
+
- lib/com/wiris/util/type/DoubleTools.rb
|
113
|
+
- lib/com/wiris/util/type/HashCache.rb
|
114
|
+
- lib/com/wiris/util/type/IntegerTools.rb
|
115
|
+
- lib/com/wiris/util/type/Queue.rb
|
116
|
+
- lib/com/wiris/util/type/SortArrayByStringLength.rb
|
117
|
+
- lib/com/wiris/util/type/SortStringByLength.rb
|
118
|
+
- lib/com/wiris/util/type/SortedHash.rb
|
119
|
+
- lib/com/wiris/util/type/Stack.rb
|
120
|
+
- lib/com/wiris/util/type/StringUtils.rb
|
121
|
+
- lib/com/wiris/util/type/Tokenizer.rb
|
122
|
+
- lib/com/wiris/util/type/UrlUtils.rb
|
123
|
+
- lib/com/wiris/util/xml/ContentHandler.rb
|
124
|
+
- lib/com/wiris/util/xml/DefaultHandler.rb
|
125
|
+
- lib/com/wiris/util/xml/EntityResolver.rb
|
126
|
+
- lib/com/wiris/util/xml/MathMLEntityResolver.rb
|
127
|
+
- lib/com/wiris/util/xml/SAXParser.rb
|
98
128
|
- lib/com/wiris/util/xml/SerializableImpl.rb
|
99
129
|
- lib/com/wiris/util/xml/WCharacterBase.rb
|
100
130
|
- lib/com/wiris/util/xml/WEntities.rb
|
@@ -106,6 +136,7 @@ files:
|
|
106
136
|
- lib/src-generic/ArrayInt.rb
|
107
137
|
- lib/src-generic/Base64.rb
|
108
138
|
- lib/src-generic/BaseCode.rb
|
139
|
+
- lib/src-generic/Boolean.rb
|
109
140
|
- lib/src-generic/Bytes.rb
|
110
141
|
- lib/src-generic/BytesInput.rb
|
111
142
|
- lib/src-generic/EReg.rb
|
@@ -139,6 +170,8 @@ files:
|
|
139
170
|
- lib/src-generic/extended/Properties.rb
|
140
171
|
- lib/src-generic/extended/String.rb
|
141
172
|
- lib/src-generic/settings/PlatformSettings.rb
|
173
|
+
- lib/src-generic/system/HttpProxy.rb
|
174
|
+
- lib/src-generic/system/HttpProxyAuth.rb
|
142
175
|
- lib/wirispluginengine.rb
|
143
176
|
- lib/wirispluginengine/engine.rb
|
144
177
|
- lib/wirispluginengine/integration/cleancache.rb
|
@@ -150,8 +183,11 @@ files:
|
|
150
183
|
- lib/wirispluginengine/integration/service.rb
|
151
184
|
- lib/wirispluginengine/integration/showimage.rb
|
152
185
|
- lib/wirispluginengine/integration/test.rb
|
186
|
+
- lib/wirispluginengine/integration/testfilter.rb
|
153
187
|
- lib/wirispluginengine/version.rb
|
154
188
|
- resources/VERSION
|
189
|
+
- resources/WEB-INF/web.xml
|
190
|
+
- resources/WIRISplugins.js
|
155
191
|
- resources/default-configuration.ini
|
156
192
|
- resources/tech.txt
|
157
193
|
- resources/wirisplugin.css
|
@@ -175,7 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
175
211
|
version: '0'
|
176
212
|
requirements: []
|
177
213
|
rubyforge_project:
|
178
|
-
rubygems_version: 2.4.5.
|
214
|
+
rubygems_version: 2.4.5.2
|
179
215
|
signing_key:
|
180
216
|
specification_version: 4
|
181
217
|
summary: Summary of Wirispluginengine.
|
data/configuration.ini.dist
DELETED
@@ -1,104 +0,0 @@
|
|
1
|
-
#
|
2
|
-
# This is a sample configuration file
|
3
|
-
# You can uncomment any line and rename this file to configuration.ini
|
4
|
-
#
|
5
|
-
|
6
|
-
#wirisdebug = false
|
7
|
-
#wirisimageserviceversion = 3.0
|
8
|
-
|
9
|
-
#
|
10
|
-
# Connection properties
|
11
|
-
#
|
12
|
-
#wirisimageservicehost = www.wiris.net
|
13
|
-
#wirisimageservicepath = /demo/editor/render
|
14
|
-
#wirisimageserviceport = 80
|
15
|
-
#wirisimageserviceprotocol = http
|
16
|
-
# Proxy configuration
|
17
|
-
#wirisproxy = false
|
18
|
-
#wirisproxy_host =
|
19
|
-
#wirisproxy_port =
|
20
|
-
# Basic authentication proxy configuration
|
21
|
-
#wirisproxy_user =
|
22
|
-
#wirisproxy_password =
|
23
|
-
|
24
|
-
#
|
25
|
-
# Folder properties
|
26
|
-
#
|
27
|
-
# Place to store the cached images.
|
28
|
-
#wiriscachedirectory = /var/cache
|
29
|
-
# Place to store the formulas.
|
30
|
-
#wirisformuladirectory = /var/formulas
|
31
|
-
|
32
|
-
#
|
33
|
-
# Class overridables
|
34
|
-
#
|
35
|
-
#wirisstorageclass = com.wiris.plugin.storage.FileStorageAndCache
|
36
|
-
#wirisconfigurationclass =
|
37
|
-
#wirisconfigurationrefreshtime = 10000
|
38
|
-
|
39
|
-
#
|
40
|
-
# Editor behaviour
|
41
|
-
#
|
42
|
-
#wiriseditorenabled = true
|
43
|
-
#wiriseditormathmlattribute = data-mathml
|
44
|
-
#wiriseditorsavemode = xml
|
45
|
-
#wiriseditoreditmode = default
|
46
|
-
#wiriseditorparselatex = true
|
47
|
-
#wiriseditorparsexml = false
|
48
|
-
#wiriseditorwindowattributes = width=570, height=450, scroll=no, resizable=yes
|
49
|
-
#wiriseditorsetsize = false
|
50
|
-
#wiriseditormodalwindow = false
|
51
|
-
#wirischemeditorenabled = true
|
52
|
-
#wirisimageformat = png
|
53
|
-
|
54
|
-
#
|
55
|
-
# Editor inherit parameters
|
56
|
-
#
|
57
|
-
#wiriseditorparameters = {}
|
58
|
-
|
59
|
-
#
|
60
|
-
# Accessibility
|
61
|
-
#
|
62
|
-
#wirisaccessibilityenabled = true
|
63
|
-
|
64
|
-
#
|
65
|
-
# WIRIS cas
|
66
|
-
#
|
67
|
-
#wiriscascodebase = http://www.wiris.net/demo/wiris/wiris-codebase
|
68
|
-
#wiriscasarchive = wrs_net_%LANG.jar
|
69
|
-
#wiriscasclass = WirisApplet_net_%LANG
|
70
|
-
#wiriscaslanguages = en, es, fr, it, nl, et, ca, eu, pt, de
|
71
|
-
#CAS_width = 450
|
72
|
-
#CAS_height = 400
|
73
|
-
|
74
|
-
#
|
75
|
-
# External plugin
|
76
|
-
#
|
77
|
-
#wirisexternalplugin = false
|
78
|
-
|
79
|
-
#
|
80
|
-
# Experimental settings.
|
81
|
-
#
|
82
|
-
#wirispluginperformance = false
|
83
|
-
|
84
|
-
#
|
85
|
-
# Deprecated. Editor parameters should be parsed as a Json on wiriseditorparameters variale.
|
86
|
-
#
|
87
|
-
#wiristransparency = true
|
88
|
-
#wirisfontfamily = Arial
|
89
|
-
#wirisimagecolor = #000000
|
90
|
-
#wirisimagebackgroundcolor = #ffffff
|
91
|
-
#wirisimagefontsize = 16px
|
92
|
-
#wirisimagedpi = 96
|
93
|
-
#wiriseditortoolbar = quizzes
|
94
|
-
#wirisrtllanguages = ar
|
95
|
-
#wirisltrlanguages = ar_ma
|
96
|
-
#wirisarabicindiclanguages = ar_eg, ar_sd, ar_sa
|
97
|
-
#wiriseasternarabicindiclanguages = fa, ps, ur
|
98
|
-
#wiriseuropeanlanguages =
|
99
|
-
|
100
|
-
# Delete cache parameters.
|
101
|
-
# wiriscleancachegui = false
|
102
|
-
# wiriscleancachetoken = token
|
103
|
-
|
104
|
-
# End of file
|