rb-appscript 0.5.2 → 0.5.3
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.
- data/CHANGES +9 -0
- data/doc/appscript-manual/02_aboutappscripting.html +1 -1
- data/doc/appscript-manual/04_gettinghelp.html +1 -1
- data/doc/appscript-manual/14_notes.html +2 -2
- data/rb-appscript.gemspec +1 -1
- data/src/lib/_appscript/defaultterminology.rb +1 -1
- data/src/lib/appscript.rb +1 -1
- data/src/lib/osax.rb +1 -1
- metadata +2 -2
data/CHANGES
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
2009-07-18 -- 0.5.3
|
|
2
|
+
|
|
3
|
+
- fixed pALL code in defaultterminology
|
|
4
|
+
|
|
5
|
+
- fixed OSAX module initialisation code (previously didn't initialise if ScriptingAddition.new was called directly)
|
|
6
|
+
|
|
7
|
+
- fixed out-of-date URLs in appscript manual
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
2009-07-05 -- 0.5.2
|
|
2
11
|
|
|
3
12
|
- removed deprecated AEM::Application.is_running? method
|
|
@@ -225,7 +225,7 @@ app('TextEdit').documents[1].text.paragraphs</code></pre>
|
|
|
225
225
|
|
|
226
226
|
<h3>Additional resources</h3>
|
|
227
227
|
|
|
228
|
-
<p>Background information links can be found on the <a href="http://
|
|
228
|
+
<p>Background information links can be found on the <a href="http://appscript.sourceforge.net">appscript website</a>.</p>
|
|
229
229
|
|
|
230
230
|
<hr />
|
|
231
231
|
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
|
|
38
38
|
<h3>ASDictionary</h3>
|
|
39
39
|
|
|
40
|
-
<p>ASDictionary, available from the appscript website's <a href="http://
|
|
40
|
+
<p>ASDictionary, available from the appscript website's <a href="http://appscript.sourceforge.net/tools.html">Tools page</a>, provides a convenient GUI interface for exporting application terminology resources in plain text and HTML formats. ASDictionary can export HTML dictionaries in both single-file format and a frame-based format similar to rdoc's.</p>
|
|
41
41
|
|
|
42
42
|
<p>In addition, the <code>asdict</code> tool bundled with ASDictionary can be used to export application dictionaries in HTML format, or browse them interactively from the command line. See ASDictionary's documentation for more information.</p>
|
|
43
43
|
|
|
@@ -59,7 +59,7 @@ require 'appscript'
|
|
|
59
59
|
|
|
60
60
|
<h3>Dealing with problem applications</h3>
|
|
61
61
|
|
|
62
|
-
<p>Appscript provides a number of mechanisms for dealing with problematic applications. See the <a href="http://
|
|
62
|
+
<p>Appscript provides a number of mechanisms for dealing with problematic applications. See the <a href="http://appscript.sourceforge.net">appscript website</a> for more information.</p>
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
<h3>Credits</h3>
|
|
@@ -74,7 +74,7 @@ require 'appscript'
|
|
|
74
74
|
|
|
75
75
|
<h3>Website</h3>
|
|
76
76
|
|
|
77
|
-
<p><a href="http://
|
|
77
|
+
<p><a href="http://appscript.sourceforge.net">http://appscript.sourceforge.net</a></p>
|
|
78
78
|
|
|
79
79
|
|
|
80
80
|
<h3>Copyright</h3>
|
data/rb-appscript.gemspec
CHANGED
data/src/lib/appscript.rb
CHANGED
data/src/lib/osax.rb
CHANGED
|
@@ -97,7 +97,6 @@ module OSAX
|
|
|
97
97
|
#
|
|
98
98
|
# without the additional overhead of creating a new ScriptingAddition object each time.
|
|
99
99
|
#
|
|
100
|
-
OSAX._init_caches if OSAXCache == {}
|
|
101
100
|
if name == nil and app_name == nil
|
|
102
101
|
if @_standard_additions == nil
|
|
103
102
|
@_standard_additions = ScriptingAddition.new('StandardAdditions')
|
|
@@ -142,6 +141,7 @@ module OSAX
|
|
|
142
141
|
@_osax_name = name
|
|
143
142
|
if not terms
|
|
144
143
|
osax_name = name.downcase.sub(/(?i)\.osax$/, '')
|
|
144
|
+
OSAX._init_caches if OSAXCache == {}
|
|
145
145
|
path, terminology_tables = OSAXCache[osax_name]
|
|
146
146
|
if not path
|
|
147
147
|
raise ArgumentError, "Scripting addition not found: #{name.inspect}"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rb-appscript
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- HAS
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-07-
|
|
12
|
+
date: 2009-07-18 00:00:00 +01:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|