sproutcore 1.0.1037 → 1.0.1042
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +31 -0
- data/README.txt +3 -1
- data/Rakefile +11 -4
- data/VERSION.yml +3 -3
- data/buildtasks/build.rake +5 -0
- data/frameworks/sproutcore/Buildfile +3 -1
- data/frameworks/sproutcore/frameworks/animation/Buildfile +3 -0
- data/frameworks/sproutcore/frameworks/animation/LICENSE +25 -0
- data/frameworks/sproutcore/frameworks/animation/README.md +102 -0
- data/frameworks/sproutcore/frameworks/animation/core.js +934 -0
- data/frameworks/sproutcore/frameworks/animation/tests/core.js +65 -0
- data/frameworks/sproutcore/frameworks/datastore/models/record.js +28 -16
- data/frameworks/sproutcore/frameworks/datastore/models/record_attribute.js +5 -2
- data/frameworks/sproutcore/frameworks/datastore/system/many_array.js +4 -0
- data/frameworks/sproutcore/frameworks/datastore/system/query.js +27 -13
- data/frameworks/sproutcore/frameworks/datastore/system/record_array.js +36 -6
- data/frameworks/sproutcore/frameworks/datastore/system/store.js +7 -7
- data/frameworks/sproutcore/frameworks/datastore/tests/models/record/storeDidChangeProperties.js +2 -1
- data/frameworks/sproutcore/frameworks/datastore/tests/models/record_attribute.js +13 -0
- data/frameworks/sproutcore/frameworks/debug/invoke_once_last_debugging.js +250 -0
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/list_item.css +0 -12
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/menu_item_view.css +3 -6
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/panel.css +0 -8
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/picker.css +0 -4
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/segmented.css +1 -0
- data/frameworks/sproutcore/frameworks/desktop/english.lproj/well.css +0 -1
- data/frameworks/sproutcore/frameworks/desktop/mixins/border.js +1 -1
- data/frameworks/sproutcore/frameworks/desktop/panes/alert.js +2 -1
- data/frameworks/sproutcore/frameworks/desktop/panes/menu.js +11 -4
- data/frameworks/sproutcore/frameworks/desktop/panes/palette.js +2 -0
- data/frameworks/sproutcore/frameworks/desktop/panes/panel.js +1 -5
- data/frameworks/sproutcore/frameworks/desktop/panes/picker.js +24 -23
- data/frameworks/sproutcore/frameworks/desktop/panes/select_button.js +91 -60
- data/frameworks/sproutcore/frameworks/desktop/panes/sheet.js +124 -24
- data/frameworks/sproutcore/frameworks/desktop/system/drag.js +5 -5
- data/frameworks/sproutcore/frameworks/desktop/system/root_responder.js +33 -25
- data/frameworks/sproutcore/frameworks/desktop/tests/panes/pane_page.js +41 -0
- data/frameworks/sproutcore/frameworks/desktop/tests/panes/select_button/methods.js +30 -1
- data/frameworks/sproutcore/frameworks/desktop/tests/panes/select_button/ui.js +13 -0
- data/frameworks/sproutcore/frameworks/desktop/tests/panes/sheet/ui.js +27 -21
- data/frameworks/sproutcore/frameworks/desktop/tests/views/button/methods.js +81 -1
- data/frameworks/sproutcore/frameworks/desktop/tests/views/radio/methods.js +3 -4
- data/frameworks/sproutcore/frameworks/desktop/views/button.js +65 -36
- data/frameworks/sproutcore/frameworks/desktop/views/collection.js +4 -7
- data/frameworks/sproutcore/frameworks/desktop/views/disclosure.js +8 -4
- data/frameworks/sproutcore/frameworks/desktop/views/list.js +1 -1
- data/frameworks/sproutcore/frameworks/desktop/views/list_item.js +38 -5
- data/frameworks/sproutcore/frameworks/desktop/views/menu_item.js +5 -1
- data/frameworks/sproutcore/frameworks/desktop/views/popup_button.js +4 -1
- data/frameworks/sproutcore/frameworks/desktop/views/progress.js +19 -13
- data/frameworks/sproutcore/frameworks/desktop/views/radio.js +30 -2
- data/frameworks/sproutcore/frameworks/desktop/views/scroll.js +2 -3
- data/frameworks/sproutcore/frameworks/desktop/views/segmented.js +14 -17
- data/frameworks/sproutcore/frameworks/desktop/views/select_field.js +5 -3
- data/frameworks/sproutcore/frameworks/desktop/views/slider.js +4 -2
- data/frameworks/sproutcore/frameworks/desktop/views/split.js +58 -59
- data/frameworks/sproutcore/frameworks/desktop/views/tab.js +2 -1
- data/frameworks/sproutcore/frameworks/desktop/views/well.js +1 -1
- data/frameworks/sproutcore/frameworks/foundation/core.js +6 -0
- data/frameworks/sproutcore/frameworks/foundation/english.lproj/view.css +2 -1
- data/frameworks/sproutcore/frameworks/foundation/mixins/button.js +33 -30
- data/frameworks/sproutcore/frameworks/foundation/mixins/inline_text_field.js +8 -4
- data/frameworks/sproutcore/frameworks/foundation/mixins/string.js +15 -10
- data/frameworks/sproutcore/frameworks/foundation/panes/pane.js +61 -12
- data/frameworks/sproutcore/frameworks/foundation/system/bundle.js +2 -1
- data/frameworks/sproutcore/frameworks/foundation/system/core_query.js +151 -131
- data/frameworks/sproutcore/frameworks/foundation/system/datetime.js +29 -23
- data/frameworks/sproutcore/frameworks/foundation/system/event.js +18 -10
- data/frameworks/sproutcore/frameworks/foundation/system/page.js +7 -5
- data/frameworks/sproutcore/frameworks/foundation/system/ready.js +1 -0
- data/frameworks/sproutcore/frameworks/foundation/system/render_context.js +9 -6
- data/frameworks/sproutcore/frameworks/foundation/system/request.js +41 -6
- data/frameworks/sproutcore/frameworks/foundation/system/response.js +89 -24
- data/frameworks/sproutcore/frameworks/foundation/system/routes.js +1 -1
- data/frameworks/sproutcore/frameworks/foundation/system/utils.js +0 -1
- data/frameworks/sproutcore/frameworks/foundation/tests/controllers/array/array_case.js +27 -8
- data/frameworks/sproutcore/frameworks/foundation/tests/system/core_query/jquery_core.js +6 -6
- data/frameworks/sproutcore/frameworks/foundation/tests/system/render_context/helpers_style.js +2 -2
- data/frameworks/sproutcore/frameworks/foundation/tests/system/request.js +65 -3
- data/frameworks/sproutcore/frameworks/foundation/tests/views/pane/append_remove.js +1 -1
- data/frameworks/sproutcore/frameworks/foundation/tests/views/view/convertLayouts.js +145 -0
- data/frameworks/sproutcore/frameworks/foundation/tests/views/view/didAppendToDocument.js +48 -0
- data/frameworks/sproutcore/frameworks/foundation/tests/views/view/nextValidKeyView.js +91 -0
- data/frameworks/sproutcore/frameworks/foundation/validators/number.js +9 -5
- data/frameworks/sproutcore/frameworks/foundation/views/field.js +16 -14
- data/frameworks/sproutcore/frameworks/foundation/views/text_field.js +89 -67
- data/frameworks/sproutcore/frameworks/foundation/views/view.js +221 -73
- data/frameworks/sproutcore/frameworks/runtime/core.js +43 -22
- data/frameworks/sproutcore/frameworks/runtime/mixins/array.js +6 -0
- data/frameworks/sproutcore/frameworks/runtime/mixins/copyable.js +1 -1
- data/frameworks/sproutcore/frameworks/runtime/mixins/observable.js +53 -34
- data/frameworks/sproutcore/frameworks/runtime/private/observer_set.js +7 -3
- data/frameworks/sproutcore/frameworks/runtime/system/binding.js +19 -19
- data/frameworks/sproutcore/frameworks/runtime/system/logger.js +132 -88
- data/frameworks/sproutcore/frameworks/runtime/system/object.js +15 -9
- data/frameworks/sproutcore/frameworks/runtime/system/run_loop.js +6 -0
- data/frameworks/sproutcore/frameworks/runtime/tests/mixins/observable/observable.js +69 -0
- data/frameworks/sproutcore/frameworks/runtime/tests/system/logger.js +14 -2
- data/frameworks/sproutcore/license.js +3 -1
- data/frameworks/sproutcore/themes/standard_theme/Source/sc-theme-repeat-x.psd +0 -0
- data/frameworks/sproutcore/{frameworks/desktop → themes/standard_theme}/english.lproj/images/icons/mini_222222.png +0 -0
- data/frameworks/sproutcore/{frameworks/desktop → themes/standard_theme}/english.lproj/images/icons/mini_454545.png +0 -0
- data/frameworks/sproutcore/{frameworks/desktop → themes/standard_theme}/english.lproj/images/icons/mini_888888.png +0 -0
- data/frameworks/sproutcore/{frameworks/desktop → themes/standard_theme}/english.lproj/images/icons/mini_ffffff.png +0 -0
- data/frameworks/sproutcore/{frameworks/desktop → themes/standard_theme}/english.lproj/images/panels/sprite-x.png +0 -0
- data/frameworks/sproutcore/{frameworks/desktop → themes/standard_theme}/english.lproj/images/panels/sprite-y.png +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/images/sc-theme-repeat-x.png +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/images/sc-theme-ysprite.png +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/list_item.css +15 -1
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/menu_item_view.css +9 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/panel.css +33 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/picker.css +17 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/radio.css +9 -6
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/tab.css +0 -4
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/well.css +36 -0
- data/gen/controller/templates/controllers/@filename@.js +1 -1
- data/lib/sproutcore/builders/minify.rb +45 -13
- data/lib/sproutcore/helpers/static_helper.rb +2 -2
- data/lib/sproutcore/models/manifest_entry.rb +42 -1
- data/lib/sproutcore/tools/build.rb +18 -2
- data/spec/lib/models/manifest_entry/hyperdomain_prefix.rb +34 -0
- data/vendor/yui-compressor/SCyuicompressor-2.4.2.jar +0 -0
- metadata +28 -22
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/background-fat.jpg +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/background-thin.jpg +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/bottom-edge.png +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/bottom-left-corner.png +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/bottom-right-corner.png +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/left-edge.png +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/overlay.png +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/right-edge.png +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/top-edge.png +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/top-left-corner.png +0 -0
- data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/top-right-corner.png +0 -0
@@ -162,7 +162,7 @@ module SC
|
|
162
162
|
|
163
163
|
return '' if entry.nil?
|
164
164
|
|
165
|
-
ret =
|
165
|
+
ret = entry.stage!.inline_contents*''
|
166
166
|
return %(<script type="text/javascript">\n#{ret}\n</script>)
|
167
167
|
end
|
168
168
|
|
@@ -190,7 +190,7 @@ module SC
|
|
190
190
|
|
191
191
|
return '' if entry.nil?
|
192
192
|
|
193
|
-
ret =
|
193
|
+
ret = entry.stage!.inline_contents
|
194
194
|
return %(<style>\n#{ret*"\n"}\n</style>)
|
195
195
|
end
|
196
196
|
|
@@ -135,14 +135,29 @@ module SC
|
|
135
135
|
end
|
136
136
|
|
137
137
|
# Returns a URL with a possible timestamp token appended to the end of
|
138
|
-
# the entry if the target's timestamp_url config is set
|
138
|
+
# the entry if the target's timestamp_url config is set, or with a randomly
|
139
|
+
# assigned domain name prepended if hyper-domaining is turned on. Otherwise
|
139
140
|
# returns the URL itself.
|
140
141
|
def cacheable_url
|
141
142
|
ret = self.url
|
142
143
|
ret = [ret, self.timestamp].join('?') if target.config.timestamp_urls
|
144
|
+
if target.config.hyper_domaining
|
145
|
+
ret = [self.hyperdomain_prefix(ret), ret].join('')
|
146
|
+
end
|
143
147
|
return ret
|
144
148
|
end
|
145
149
|
|
150
|
+
# If the hyper_domaining config is an array of strings, this will select
|
151
|
+
# one of them based on the hash of the URL, and provide an absolute URL
|
152
|
+
# to the entry. The hyperdomain includes the protocol. (http://, etc)
|
153
|
+
def hyperdomain_prefix(url)
|
154
|
+
hyperdomains = target.config.hyper_domaining
|
155
|
+
index = url.hash % hyperdomains.length
|
156
|
+
|
157
|
+
return "#{hyperdomains[index]}"
|
158
|
+
end
|
159
|
+
|
160
|
+
|
146
161
|
# Scans the source paths (first staging any source entries) for the
|
147
162
|
# passed regex. Your block will be executed with each line that matched.
|
148
163
|
# Returns the results of each block
|
@@ -243,6 +258,32 @@ module SC
|
|
243
258
|
def inspect_staging_state
|
244
259
|
inspect_build_to self.staging_path
|
245
260
|
end
|
261
|
+
|
262
|
+
|
263
|
+
def inline_contents
|
264
|
+
unless File.exists?(self.staging_path)
|
265
|
+
|
266
|
+
# stage source entries if needed...
|
267
|
+
(self.source_entries || []).each { |e| e.stage! } if composite?
|
268
|
+
|
269
|
+
# get build task and build it
|
270
|
+
buildfile = manifest.target.buildfile
|
271
|
+
if !buildfile.task_defined?(self.build_task)
|
272
|
+
raise "Could not build entry #{self.filename} because build task '#{self.build_task}' is not defined"
|
273
|
+
end
|
274
|
+
|
275
|
+
buildfile.invoke 'build:minify:inline_javascript',
|
276
|
+
:entry => self,
|
277
|
+
:manifest => self.manifest,
|
278
|
+
:target => self.manifest.target,
|
279
|
+
:config => self.manifest.target.config,
|
280
|
+
:project => self.manifest.target.project,
|
281
|
+
:src_path => self.source_path,
|
282
|
+
:src_paths => self.source_paths,
|
283
|
+
:dst_path => self.staging_path
|
284
|
+
end
|
285
|
+
File.readlines(self.staging_path)
|
286
|
+
end
|
246
287
|
|
247
288
|
private
|
248
289
|
|
@@ -7,6 +7,8 @@
|
|
7
7
|
|
8
8
|
require File.expand_path(File.join(File.dirname(__FILE__), 'manifest'))
|
9
9
|
|
10
|
+
$to_minify=''
|
11
|
+
|
10
12
|
module SC
|
11
13
|
class Tools
|
12
14
|
|
@@ -18,7 +20,7 @@ module SC
|
|
18
20
|
|
19
21
|
# Copy some key props to the env
|
20
22
|
SC.env.build_prefix = options.buildroot if options.buildroot
|
21
|
-
SC.env.
|
23
|
+
SC.env.staging_prefix = options.stageroot if options.stageroot
|
22
24
|
SC.env.use_symlink = options.symlink
|
23
25
|
SC.env.clean = options.clean
|
24
26
|
|
@@ -73,8 +75,22 @@ module SC
|
|
73
75
|
end
|
74
76
|
end
|
75
77
|
end
|
78
|
+
yui_root = File.expand_path(File.join(LIBPATH, '..', 'vendor', 'yui-compressor'))
|
79
|
+
jar_path = File.join(yui_root, 'SCyuicompressor-2.4.2.jar')
|
80
|
+
filecompress = "java -jar " + jar_path + " --charset utf-8 --line-break 80 " + $to_minify + " 2>&1"
|
81
|
+
SC.logger.info filecompress
|
82
|
+
SC.logger.info 'Compressing with YUI: '+ $to_minify + "..."
|
76
83
|
|
84
|
+
output = `#{filecompress}` # It'd be nice to just read STDERR, but
|
85
|
+
# I can't find a reasonable, commonly-
|
86
|
+
# installed, works-on-all-OSes solution.
|
87
|
+
SC.logger.info output
|
88
|
+
if $?.exitstatus != 0
|
89
|
+
SC.logger.fatal(output)
|
90
|
+
SC.logger.fatal("!!!!YUI compressor failed, please check that your js code is valid")
|
91
|
+
SC.logger.fatal("!!!!Failed compressing ... "+ build_root)
|
92
|
+
exit(1)
|
93
|
+
end
|
77
94
|
end
|
78
|
-
|
79
95
|
end
|
80
96
|
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), %w[.. .. .. spec_helper])
|
2
|
+
|
3
|
+
describe SC::ManifestEntry, 'hyperdomain_prefix' do
|
4
|
+
|
5
|
+
include SC::SpecHelpers
|
6
|
+
|
7
|
+
before do
|
8
|
+
@project = fixture_project(:real_world)
|
9
|
+
@target = @project.target_for :contacts
|
10
|
+
@manifest = @target.manifest_for(:language => :en)
|
11
|
+
|
12
|
+
# create entry manually to avoid calling prepare
|
13
|
+
@entry = SC::ManifestEntry.new @manifest,
|
14
|
+
:filename => "filename",
|
15
|
+
:url => "/foo.jpg",
|
16
|
+
:source_path => "imaginary" / "path"
|
17
|
+
end
|
18
|
+
|
19
|
+
it "should not alter url by calling hyperdomain_prefix if hyper_domaining array is empty in config" do
|
20
|
+
@target.config.timestamp_urls = false # preconditon for the simplicity of this test
|
21
|
+
|
22
|
+
@entry.cacheable_url.should == '/foo.jpg'
|
23
|
+
end
|
24
|
+
|
25
|
+
it "should prepend a fully qualified hyper domain to the url by calling hyperdomain_prefix if hyper_domaining array is NOT empty in config" do
|
26
|
+
@target.config.timestamp_urls = false # preconditon for the simplicity of this test
|
27
|
+
|
28
|
+
@target.config.hyper_domaining = ["http://hyper1.sproutcore.com", "http://hyper2.sproutcore.com"]
|
29
|
+
# hashing algorithm should pick 'http://hyper2.sproutcore.com' as the hyper domain
|
30
|
+
@entry.cacheable_url.should == 'http://hyper2.sproutcore.com/foo.jpg'
|
31
|
+
end
|
32
|
+
|
33
|
+
|
34
|
+
end
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sproutcore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1042
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sprout Systems, Inc. Apple Inc. and contributors
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-12-21 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -92,7 +92,7 @@ dependencies:
|
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: 1.2.0
|
94
94
|
version:
|
95
|
-
description:
|
95
|
+
description: |-
|
96
96
|
sproutcore - abbot
|
97
97
|
by Charles Jolley and contributors
|
98
98
|
http://www.sproutcore.com
|
@@ -175,7 +175,7 @@ description: |
|
|
175
175
|
== LICENSE:
|
176
176
|
|
177
177
|
Copyright (c) 2009 Apple Inc.
|
178
|
-
Portions copyright (c) 2006-2009 Sprout Systems
|
178
|
+
Portions copyright (c) 2006-2009 Sprout Systems Inc. and contributors
|
179
179
|
|
180
180
|
Permission is hereby granted, free of charge, to any person obtaining
|
181
181
|
a copy of this software and associated documentation files (the
|
@@ -195,7 +195,8 @@ description: |
|
|
195
195
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
196
196
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
197
197
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
198
|
-
|
198
|
+
|
199
|
+
SproutCore and the SproutCore logo are trademarks of Sprout Systems Inc.
|
199
200
|
email: contact@sproutcore.com
|
200
201
|
executables:
|
201
202
|
- sc-build
|
@@ -338,6 +339,11 @@ files:
|
|
338
339
|
- frameworks/sproutcore/design/TestRunner Design.graffle/image31.png
|
339
340
|
- frameworks/sproutcore/design/TestRunner Design.graffle/image8.png
|
340
341
|
- frameworks/sproutcore/design/TestRunner Design.graffle/image9.png
|
342
|
+
- frameworks/sproutcore/frameworks/animation/Buildfile
|
343
|
+
- frameworks/sproutcore/frameworks/animation/LICENSE
|
344
|
+
- frameworks/sproutcore/frameworks/animation/README.md
|
345
|
+
- frameworks/sproutcore/frameworks/animation/core.js
|
346
|
+
- frameworks/sproutcore/frameworks/animation/tests/core.js
|
341
347
|
- frameworks/sproutcore/frameworks/bootstrap/README
|
342
348
|
- frameworks/sproutcore/frameworks/bootstrap/core.js
|
343
349
|
- frameworks/sproutcore/frameworks/bootstrap/setup_body_class_names.js
|
@@ -440,6 +446,7 @@ files:
|
|
440
446
|
- frameworks/sproutcore/frameworks/datejs/time.js
|
441
447
|
- frameworks/sproutcore/frameworks/datejs/validators/datejs.js
|
442
448
|
- frameworks/sproutcore/frameworks/debug/core.js
|
449
|
+
- frameworks/sproutcore/frameworks/debug/invoke_once_last_debugging.js
|
443
450
|
- frameworks/sproutcore/frameworks/designer/coders/design.js
|
444
451
|
- frameworks/sproutcore/frameworks/designer/coders/localization.js
|
445
452
|
- frameworks/sproutcore/frameworks/designer/coders/object.js
|
@@ -466,13 +473,7 @@ files:
|
|
466
473
|
- frameworks/sproutcore/frameworks/desktop/english.lproj/disclosure.css
|
467
474
|
- frameworks/sproutcore/frameworks/desktop/english.lproj/drag.css
|
468
475
|
- frameworks/sproutcore/frameworks/desktop/english.lproj/icons.css
|
469
|
-
- frameworks/sproutcore/frameworks/desktop/english.lproj/images/icons/mini_222222.png
|
470
|
-
- frameworks/sproutcore/frameworks/desktop/english.lproj/images/icons/mini_454545.png
|
471
|
-
- frameworks/sproutcore/frameworks/desktop/english.lproj/images/icons/mini_888888.png
|
472
|
-
- frameworks/sproutcore/frameworks/desktop/english.lproj/images/icons/mini_ffffff.png
|
473
476
|
- frameworks/sproutcore/frameworks/desktop/english.lproj/images/icons/shared.png
|
474
|
-
- frameworks/sproutcore/frameworks/desktop/english.lproj/images/panels/sprite-x.png
|
475
|
-
- frameworks/sproutcore/frameworks/desktop/english.lproj/images/panels/sprite-y.png
|
476
477
|
- frameworks/sproutcore/frameworks/desktop/english.lproj/list_item.css
|
477
478
|
- frameworks/sproutcore/frameworks/desktop/english.lproj/menu.css
|
478
479
|
- frameworks/sproutcore/frameworks/desktop/english.lproj/menu_item_view.css
|
@@ -520,6 +521,7 @@ files:
|
|
520
521
|
- frameworks/sproutcore/frameworks/desktop/tests/panes/menu/ui.js
|
521
522
|
- frameworks/sproutcore/frameworks/desktop/tests/panes/palette/methods.js
|
522
523
|
- frameworks/sproutcore/frameworks/desktop/tests/panes/palette/ui.js
|
524
|
+
- frameworks/sproutcore/frameworks/desktop/tests/panes/pane_page.js
|
523
525
|
- frameworks/sproutcore/frameworks/desktop/tests/panes/panel/methods.js
|
524
526
|
- frameworks/sproutcore/frameworks/desktop/tests/panes/panel/ui.js
|
525
527
|
- frameworks/sproutcore/frameworks/desktop/tests/panes/picker/methods.js
|
@@ -756,9 +758,11 @@ files:
|
|
756
758
|
- frameworks/sproutcore/frameworks/foundation/tests/views/text_field/ui.js
|
757
759
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/clippingFrame.js
|
758
760
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/convertFrames.js
|
761
|
+
- frameworks/sproutcore/frameworks/foundation/tests/views/view/convertLayouts.js
|
759
762
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/createChildViews.js
|
760
763
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/createLayer.js
|
761
764
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/destroyLayer.js
|
765
|
+
- frameworks/sproutcore/frameworks/foundation/tests/views/view/didAppendToDocument.js
|
762
766
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/findLayerInParentLayer.js
|
763
767
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/init.js
|
764
768
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/insertBefore.js
|
@@ -768,6 +772,7 @@ files:
|
|
768
772
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/layoutChildViews.js
|
769
773
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/layoutDidChange.js
|
770
774
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/layoutStyle.js
|
775
|
+
- frameworks/sproutcore/frameworks/foundation/tests/views/view/nextValidKeyView.js
|
771
776
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/parentViewDidChange.js
|
772
777
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/prepareContext.js
|
773
778
|
- frameworks/sproutcore/frameworks/foundation/tests/views/view/removeChild.js
|
@@ -1013,6 +1018,12 @@ files:
|
|
1013
1018
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/collection.css
|
1014
1019
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/core.css
|
1015
1020
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/disclosure.css
|
1021
|
+
- frameworks/sproutcore/themes/standard_theme/english.lproj/images/icons/mini_222222.png
|
1022
|
+
- frameworks/sproutcore/themes/standard_theme/english.lproj/images/icons/mini_454545.png
|
1023
|
+
- frameworks/sproutcore/themes/standard_theme/english.lproj/images/icons/mini_888888.png
|
1024
|
+
- frameworks/sproutcore/themes/standard_theme/english.lproj/images/icons/mini_ffffff.png
|
1025
|
+
- frameworks/sproutcore/themes/standard_theme/english.lproj/images/panels/sprite-x.png
|
1026
|
+
- frameworks/sproutcore/themes/standard_theme/english.lproj/images/panels/sprite-y.png
|
1016
1027
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/images/sc-theme-repeat-x.png
|
1017
1028
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/images/sc-theme-ysprite.png
|
1018
1029
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/images/sc-toolbar-view.png
|
@@ -1021,17 +1032,8 @@ files:
|
|
1021
1032
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/menu.css
|
1022
1033
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/menu_item_view.css
|
1023
1034
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/pane.css
|
1024
|
-
- frameworks/sproutcore/themes/standard_theme/english.lproj/
|
1025
|
-
- frameworks/sproutcore/themes/standard_theme/english.lproj/
|
1026
|
-
- frameworks/sproutcore/themes/standard_theme/english.lproj/panels/bottom-edge.png
|
1027
|
-
- frameworks/sproutcore/themes/standard_theme/english.lproj/panels/bottom-left-corner.png
|
1028
|
-
- frameworks/sproutcore/themes/standard_theme/english.lproj/panels/bottom-right-corner.png
|
1029
|
-
- frameworks/sproutcore/themes/standard_theme/english.lproj/panels/left-edge.png
|
1030
|
-
- frameworks/sproutcore/themes/standard_theme/english.lproj/panels/overlay.png
|
1031
|
-
- frameworks/sproutcore/themes/standard_theme/english.lproj/panels/right-edge.png
|
1032
|
-
- frameworks/sproutcore/themes/standard_theme/english.lproj/panels/top-edge.png
|
1033
|
-
- frameworks/sproutcore/themes/standard_theme/english.lproj/panels/top-left-corner.png
|
1034
|
-
- frameworks/sproutcore/themes/standard_theme/english.lproj/panels/top-right-corner.png
|
1035
|
+
- frameworks/sproutcore/themes/standard_theme/english.lproj/panel.css
|
1036
|
+
- frameworks/sproutcore/themes/standard_theme/english.lproj/picker.css
|
1035
1037
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/progress.css
|
1036
1038
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/radio.css
|
1037
1039
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/segmented.css
|
@@ -1040,6 +1042,7 @@ files:
|
|
1040
1042
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/tab.css
|
1041
1043
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/text_field.css
|
1042
1044
|
- frameworks/sproutcore/themes/standard_theme/english.lproj/toolbar.css
|
1045
|
+
- frameworks/sproutcore/themes/standard_theme/english.lproj/well.css
|
1043
1046
|
- gen/Buildfile
|
1044
1047
|
- gen/app/Buildfile
|
1045
1048
|
- gen/app/README
|
@@ -1407,6 +1410,7 @@ files:
|
|
1407
1410
|
- spec/lib/models/manifest/find_entry.rb
|
1408
1411
|
- spec/lib/models/manifest/prepare_spec.rb
|
1409
1412
|
- spec/lib/models/manifest_entry/cacheable_url_spec.rb
|
1413
|
+
- spec/lib/models/manifest_entry/hyperdomain_prefix.rb
|
1410
1414
|
- spec/lib/models/manifest_entry/prepare_spec.rb
|
1411
1415
|
- spec/lib/models/project/add_target_spec.rb
|
1412
1416
|
- spec/lib/models/project/buildfile_spec.rb
|
@@ -1565,6 +1569,7 @@ files:
|
|
1565
1569
|
- vendor/jsdoc/test/synonyms.js
|
1566
1570
|
- vendor/jsdoc/test/tosource.js
|
1567
1571
|
- vendor/jsdoc/test/variable_redefine.js
|
1572
|
+
- vendor/yui-compressor/SCyuicompressor-2.4.2.jar
|
1568
1573
|
- vendor/yui-compressor/yuicompressor-2.4.2.jar
|
1569
1574
|
has_rdoc: true
|
1570
1575
|
homepage: http://www.sproutcore.com
|
@@ -1650,6 +1655,7 @@ test_files:
|
|
1650
1655
|
- spec/lib/models/manifest/find_entry.rb
|
1651
1656
|
- spec/lib/models/manifest/prepare_spec.rb
|
1652
1657
|
- spec/lib/models/manifest_entry/cacheable_url_spec.rb
|
1658
|
+
- spec/lib/models/manifest_entry/hyperdomain_prefix.rb
|
1653
1659
|
- spec/lib/models/manifest_entry/prepare_spec.rb
|
1654
1660
|
- spec/lib/models/project/add_target_spec.rb
|
1655
1661
|
- spec/lib/models/project/buildfile_spec.rb
|
Binary file
|
Binary file
|
Binary file
|
data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/bottom-left-corner.png
DELETED
Binary file
|
data/frameworks/sproutcore/themes/standard_theme/english.lproj/panels/bottom-right-corner.png
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|