sproutit-sproutcore 1.0.20090721145251 → 1.0.20090721145280
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/Rakefile +3 -3
- data/VERSION.yml +2 -2
- data/frameworks/sproutcore/Buildfile +0 -1
- data/gen/app/templates/apps/@target_name@/core.js +27 -0
- data/gen/app/templates/apps/@target_name@/english.lproj/loading.rhtml +9 -0
- data/gen/app/templates/apps/@target_name@/english.lproj/main_page.js +22 -0
- data/gen/app/templates/apps/@target_name@/english.lproj/strings.js +15 -0
- data/gen/app/templates/apps/@target_name@/main.js +30 -0
- data/gen/controller/templates/controllers/@filename@.js +18 -0
- data/gen/controller/templates/tests/controllers/@filename@.js +15 -0
- data/gen/framework/templates/frameworks/@target_name@/core.js +21 -0
- data/gen/framework/templates/frameworks/@target_name@/english.lproj/strings.js +15 -0
- data/gen/language/templates/@filename@/strings.js +14 -0
- data/gen/model/templates/fixtures/@filename@.js +35 -0
- data/gen/model/templates/models/@filename@.js +19 -0
- data/gen/model/templates/tests/models/@filename@.js +15 -0
- data/gen/project/templates/@filename@/Buildfile +7 -0
- data/gen/project/templates/@filename@/README +7 -0
- data/gen/test/templates/tests/@filename@.js +15 -0
- data/gen/theme/templates/themes/@target_name@/english.lproj/strings.js +15 -0
- data/gen/view/templates/tests/views/@filename@.js +15 -0
- data/gen/view/templates/views/@filename@.js +18 -0
- data/lib/sproutcore/models/generator.rb +2 -2
- metadata +21 -33
- data/frameworks/sproutcore/frameworks/deprecated/core.js +0 -59
- data/frameworks/sproutcore/frameworks/deprecated/lib/button_views.rb +0 -330
- data/frameworks/sproutcore/frameworks/deprecated/lib/collection_view.rb +0 -83
- data/frameworks/sproutcore/frameworks/deprecated/lib/core_views.rb +0 -326
- data/frameworks/sproutcore/frameworks/deprecated/lib/form_views.rb +0 -253
- data/frameworks/sproutcore/frameworks/deprecated/lib/index.rhtml +0 -75
- data/frameworks/sproutcore/frameworks/deprecated/lib/menu_views.rb +0 -93
- data/frameworks/sproutcore/frameworks/deprecated/server/rails_server.js +0 -80
- data/frameworks/sproutcore/frameworks/deprecated/server/rest_server.js +0 -178
- data/frameworks/sproutcore/frameworks/deprecated/server/server.js +0 -673
- data/frameworks/sproutcore/frameworks/deprecated/system/animator.js +0 -679
- data/frameworks/sproutcore/frameworks/deprecated/system/binding.js +0 -36
- data/frameworks/sproutcore/frameworks/deprecated/system/browser.js +0 -75
- data/frameworks/sproutcore/frameworks/deprecated/system/classic_responder.js +0 -312
- data/frameworks/sproutcore/frameworks/deprecated/system/event.js +0 -58
- data/frameworks/sproutcore/frameworks/deprecated/system/globals.js +0 -20
- data/frameworks/sproutcore/frameworks/deprecated/system/misc.js +0 -58
- data/frameworks/sproutcore/frameworks/deprecated/system/node_descriptor.js +0 -72
- data/frameworks/sproutcore/frameworks/deprecated/system/object.js +0 -122
- data/frameworks/sproutcore/frameworks/deprecated/system/path_module.js +0 -432
- data/frameworks/sproutcore/frameworks/deprecated/system/string.js +0 -107
- data/frameworks/sproutcore/frameworks/deprecated/tests/application/application.rhtml +0 -125
- data/frameworks/sproutcore/frameworks/deprecated/tests/views/classic_view/clippingFrame.rhtml +0 -401
- data/frameworks/sproutcore/frameworks/deprecated/tests/views/classic_view/frame.rhtml +0 -357
- data/frameworks/sproutcore/frameworks/deprecated/tests/views/classic_view/isVisibleInWindow.rhtml +0 -147
- data/frameworks/sproutcore/frameworks/deprecated/tests/views/collection/base.rhtml +0 -298
- data/frameworks/sproutcore/frameworks/deprecated/tests/views/collection/incremental_rendering.rhtml +0 -260
- data/frameworks/sproutcore/frameworks/deprecated/tests/views/collection/source_list_rendering.rhtml +0 -143
- data/frameworks/sproutcore/frameworks/deprecated/tests/views/popup_button.rhtml +0 -128
- data/frameworks/sproutcore/frameworks/deprecated/tests/views/text_field.rhtml +0 -37
- data/frameworks/sproutcore/frameworks/deprecated/views/collection.js +0 -24
data/Rakefile
CHANGED
@@ -44,6 +44,8 @@ Jeweler::Tasks.new do |gemspec|
|
|
44
44
|
gemspec.add_dependency 'erubis', ">= 2.6.2"
|
45
45
|
gemspec.add_development_dependency 'jeweler', ">= 1.0.1"
|
46
46
|
gemspec.rubyforge_project = "sproutcore"
|
47
|
+
gemspec.extra_rdoc_files.include *%w[History.txt README.txt]
|
48
|
+
|
47
49
|
gemspec.files.include *%w[.htaccess lib/thor/**/* frameworks/sproutcore/**/*]
|
48
50
|
gemspec.files.exclude *%w[^coverage/ .gitignore .gitmodules .DS_Store tmp .hashinfo .svn .git]
|
49
51
|
|
@@ -52,8 +54,6 @@ Jeweler::Tasks.new do |gemspec|
|
|
52
54
|
gemspec.files.exclude *%w[spec .graffle frameworks/sproutcore/themes/standard_theme/Source]
|
53
55
|
gemspec.test_files.exclude *%w[spec]
|
54
56
|
|
55
|
-
gemspec.extra_rdoc_files.include *%w[History.txt README.txt]
|
56
|
-
|
57
57
|
#gemspec.description = File.read(ROOT_PATH / 'README.txt')
|
58
58
|
end
|
59
59
|
|
@@ -175,7 +175,7 @@ task :build => 'gemspec:generate' do
|
|
175
175
|
fixup_gemspec
|
176
176
|
end
|
177
177
|
|
178
|
-
task "gemspec:generate" => 'git:verify_clean'
|
178
|
+
#task "gemspec:generate" => 'git:verify_clean'
|
179
179
|
|
180
180
|
# Extend gemspec to rename afterware
|
181
181
|
task :gemspec do
|
data/VERSION.yml
CHANGED
@@ -0,0 +1,27 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace %>
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> */
|
6
|
+
|
7
|
+
/** @namespace
|
8
|
+
|
9
|
+
My cool new app. Describe your application.
|
10
|
+
|
11
|
+
@extends SC.Object
|
12
|
+
*/
|
13
|
+
<%= namespace %> = SC.Object.create(
|
14
|
+
/** @scope <%= namespace %>.prototype */ {
|
15
|
+
|
16
|
+
NAMESPACE: '<%= namespace %>',
|
17
|
+
VERSION: '0.1.0',
|
18
|
+
|
19
|
+
// This is your application store. You will use this store to access all
|
20
|
+
// of your model data. You can also set a data source on this store to
|
21
|
+
// connect to a backend server. The default setup below connects the store
|
22
|
+
// to any fixtures you define.
|
23
|
+
store: SC.Store.create().from(SC.Record.fixtures)
|
24
|
+
|
25
|
+
// TODO: Add global constants or singleton objects needed by your app here.
|
26
|
+
|
27
|
+
}) ;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<%% content_for :loading do %>
|
2
|
+
<%% # Any HTML in this file will be visible on screen while your page loads
|
3
|
+
# its application JavaScript. SproutCore applications are optimized for
|
4
|
+
# caching and startup very fast, so your users will often only see this
|
5
|
+
# content for a brief moment on their first app load, if at all.
|
6
|
+
%>
|
7
|
+
<p class="loading">Loading...<p>
|
8
|
+
|
9
|
+
<%% end %>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace %> - mainPage
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> */
|
6
|
+
|
7
|
+
// This page describes the main user interface for your application.
|
8
|
+
<%= namespace %>.mainPage = SC.Page.design({
|
9
|
+
|
10
|
+
// The main pane is made visible on screen as soon as your app is loaded.
|
11
|
+
// Add childViews to this pane for views to display immediately on page
|
12
|
+
// load.
|
13
|
+
mainPane: SC.MainPane.design({
|
14
|
+
childViews: 'labelView'.w(),
|
15
|
+
|
16
|
+
labelView: SC.LabelView.design({
|
17
|
+
layout: { centerX: 0, centerY: 0, width: 100, height: 18 },
|
18
|
+
tagName: "h1", value: "Hello World"
|
19
|
+
})
|
20
|
+
})
|
21
|
+
|
22
|
+
});
|
@@ -0,0 +1,15 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace %> Strings
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> */
|
6
|
+
|
7
|
+
// Place strings you want to localize here. In your app, use the key and
|
8
|
+
// localize it using "key string".loc(). HINT: For your key names, use the
|
9
|
+
// english string with an underscore in front. This way you can still see
|
10
|
+
// how your UI will look and you'll notice right away when something needs a
|
11
|
+
// localized string added to this file!
|
12
|
+
//
|
13
|
+
SC.stringsFor('English', {
|
14
|
+
// "_String Key": "Localized String"
|
15
|
+
}) ;
|
@@ -0,0 +1,30 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace %>
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> */
|
6
|
+
|
7
|
+
// This is the function that will start your app running. The default
|
8
|
+
// implementation will load any fixtures you have created then instantiate
|
9
|
+
// your controllers and awake the elements on your page.
|
10
|
+
//
|
11
|
+
// As you develop your application you will probably want to override this.
|
12
|
+
// See comments for some pointers on what to do next.
|
13
|
+
//
|
14
|
+
<%= namespace %>.main = function main() {
|
15
|
+
|
16
|
+
// Step 1: Instantiate Your Views
|
17
|
+
// The default code here will make the mainPane for your application visible
|
18
|
+
// on screen. If you app gets any level of complexity, you will probably
|
19
|
+
// create multiple pages and panes.
|
20
|
+
<%= namespace %>.getPath('mainPage.mainPane').append() ;
|
21
|
+
|
22
|
+
// Step 2. Set the content property on your primary controller.
|
23
|
+
// This will make your app come alive!
|
24
|
+
|
25
|
+
// TODO: Set the content property on your primary controller
|
26
|
+
// ex: <%= class_name %>.contactsController.set('content',<%= class_name %>.contacts);
|
27
|
+
|
28
|
+
} ;
|
29
|
+
|
30
|
+
function main() { <%= namespace %>.main(); }
|
@@ -0,0 +1,18 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace_instance_name %>
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> */
|
6
|
+
|
7
|
+
/** @class
|
8
|
+
|
9
|
+
(Document Your Controller Here)
|
10
|
+
|
11
|
+
@extends <%= base_class_name || 'SC.Object' %>
|
12
|
+
*/
|
13
|
+
<%= namespace_instance_name %> = <%= base_class_name || 'SC.Object' %>.create(
|
14
|
+
/** @scope <%= namespace_instance_name %>.prototype */ {
|
15
|
+
|
16
|
+
// TODO: Add your own code here.
|
17
|
+
|
18
|
+
}) ;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace_instance_name %> Unit Test
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> module test ok equals same stop start */
|
6
|
+
|
7
|
+
module("<%= namespace_instance_name %>");
|
8
|
+
|
9
|
+
// TODO: Replace with real unit test for <%= namespace_instance_name %>
|
10
|
+
test("test description", function() {
|
11
|
+
var expected = "test";
|
12
|
+
var result = "test";
|
13
|
+
equals(result, expected, "test should equal test");
|
14
|
+
});
|
15
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace %>
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> */
|
6
|
+
|
7
|
+
/** @namespace
|
8
|
+
|
9
|
+
My cool new framework. Describe your framework.
|
10
|
+
|
11
|
+
@extends SC.Object
|
12
|
+
*/
|
13
|
+
<%= namespace %> = SC.Object.create(
|
14
|
+
/** @scope <%= namespace %>.prototype */ {
|
15
|
+
|
16
|
+
NAMESPACE: '<%= namespace %>',
|
17
|
+
VERSION: '0.1.0',
|
18
|
+
|
19
|
+
// TODO: Add global constants or singleton objects needed by your app here.
|
20
|
+
|
21
|
+
}) ;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace %> Strings
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> */
|
6
|
+
|
7
|
+
// Place strings you want to localize here. In your app, use the key and
|
8
|
+
// localize it using "key string".loc(). HINT: For your key names, use the
|
9
|
+
// english string with an underscore in front. This way you can still see
|
10
|
+
// how your UI will look and you'll notice right away when something needs a
|
11
|
+
// localized string added to this file!
|
12
|
+
//
|
13
|
+
SC.stringsFor('English', {
|
14
|
+
// "_String Key": "Localized String"
|
15
|
+
}) ;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace %> Strings
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
|
6
|
+
// Place strings you want to localize here. In your app, use the key and
|
7
|
+
// localize it using "key string".loc(). HINT: For your key names, use the
|
8
|
+
// english string with an underscore in front. This way you can still see
|
9
|
+
// how your UI will look and you'll notice right away when something needs a
|
10
|
+
// localized string added to this file!
|
11
|
+
//
|
12
|
+
SC.stringsFor('<%= language %>', {
|
13
|
+
// "_String Key": "Localized String"
|
14
|
+
}) ;
|
@@ -0,0 +1,35 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace_class_name %> Fixtures
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> */
|
6
|
+
|
7
|
+
sc_require('models/<%= filename.ext('') %>');
|
8
|
+
|
9
|
+
<%= namespace_class_name %>.FIXTURES = [
|
10
|
+
|
11
|
+
// TODO: Add your data fixtures here.
|
12
|
+
// All fixture records must have a unique primary key (default 'guid'). See
|
13
|
+
// the example below.
|
14
|
+
|
15
|
+
// { guid: 1,
|
16
|
+
// firstName: "Michael",
|
17
|
+
// lastName: "Scott" },
|
18
|
+
//
|
19
|
+
// { guid: 2,
|
20
|
+
// firstName: "Dwight",
|
21
|
+
// lastName: "Schrute" },
|
22
|
+
//
|
23
|
+
// { guid: 3,
|
24
|
+
// firstName: "Jim",
|
25
|
+
// lastName: "Halpert" },
|
26
|
+
//
|
27
|
+
// { guid: 4,
|
28
|
+
// firstName: "Pam",
|
29
|
+
// lastName: "Beesly" },
|
30
|
+
//
|
31
|
+
// { guid: 5,
|
32
|
+
// firstName: "Ryan",
|
33
|
+
// lastName: "Howard" }
|
34
|
+
|
35
|
+
];
|
@@ -0,0 +1,19 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace_class_name %>
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> */
|
6
|
+
|
7
|
+
/** @class
|
8
|
+
|
9
|
+
(Document your Model here)
|
10
|
+
|
11
|
+
@extends <%= base_class_name || 'SC.Record' %>
|
12
|
+
@version 0.1
|
13
|
+
*/
|
14
|
+
<%= namespace_class_name %> = <%= base_class_name || 'SC.Record' %>.extend(
|
15
|
+
/** @scope <%= namespace_class_name %>.prototype */ {
|
16
|
+
|
17
|
+
// TODO: Add your own code here.
|
18
|
+
|
19
|
+
}) ;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace_class_name %> Unit Test
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> module test ok equals same stop start */
|
6
|
+
|
7
|
+
module("<%= namespace_class_name %>");
|
8
|
+
|
9
|
+
// TODO: Replace with real unit test for <%= class_name %>
|
10
|
+
test("test description", function() {
|
11
|
+
var expected = "test";
|
12
|
+
var result = "test";
|
13
|
+
equals(result, expected, "test should equal test");
|
14
|
+
});
|
15
|
+
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# ===========================================================================
|
2
|
+
# Project: <%= namespace %>
|
3
|
+
# Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
# ===========================================================================
|
5
|
+
|
6
|
+
# Add initial buildfile information here
|
7
|
+
config :all, :required => :sproutcore
|
@@ -0,0 +1,7 @@
|
|
1
|
+
=============================================================================
|
2
|
+
Project: <%= namespace %>
|
3
|
+
Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
=============================================================================
|
5
|
+
|
6
|
+
TODO: Describe Your Project
|
7
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace %> Unit Test
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> module test ok equals same stop start */
|
6
|
+
|
7
|
+
module("<%= namespace %>");
|
8
|
+
|
9
|
+
// TODO: Replace with real unit test
|
10
|
+
test("test description", function() {
|
11
|
+
var expected = "test";
|
12
|
+
var result = "test";
|
13
|
+
equals(result, expected, "test should equal test");
|
14
|
+
});
|
15
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace %> Strings
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> */
|
6
|
+
|
7
|
+
// Place strings you want to localize here. In your app, use the key and
|
8
|
+
// localize it using "key string".loc(). HINT: For your key names, use the
|
9
|
+
// english string with an underscore in front. This way you can still see
|
10
|
+
// how your UI will look and you'll notice right away when something needs a
|
11
|
+
// localized string added to this file!
|
12
|
+
//
|
13
|
+
SC.stringsFor('English', {
|
14
|
+
// "_String Key": "Localized String"
|
15
|
+
}) ;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace_class_name %> Unit Test
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> module test ok equals same stop start */
|
6
|
+
|
7
|
+
module("<%= namespace_class_name %>");
|
8
|
+
|
9
|
+
// TODO: Replace with real unit test for <%= namespace_class_name %>
|
10
|
+
test("test description", function() {
|
11
|
+
var expected = "test";
|
12
|
+
var result = "test";
|
13
|
+
equals(result, expected, "test should equal test");
|
14
|
+
});
|
15
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
// ==========================================================================
|
2
|
+
// Project: <%= namespace_class_name %>
|
3
|
+
// Copyright: ©<%= Time.now.year %> My Company, Inc.
|
4
|
+
// ==========================================================================
|
5
|
+
/*globals <%= namespace %> */
|
6
|
+
|
7
|
+
/** @class
|
8
|
+
|
9
|
+
(Document Your View Here)
|
10
|
+
|
11
|
+
@extends <%= base_class_name || 'SC.View' %>
|
12
|
+
*/
|
13
|
+
<%= namespace_class_name %> = <%= base_class_name || 'SC.View' %>.extend(
|
14
|
+
/** @scope <%= namespace_class_name %>.prototype */ {
|
15
|
+
|
16
|
+
// TODO: Add your own code here.
|
17
|
+
|
18
|
+
});
|
@@ -308,9 +308,9 @@ module SC
|
|
308
308
|
|
309
309
|
# Converts a path with optional template variables into a regular path
|
310
310
|
# by looking up said variables on the receiver. Variables in the pathname
|
311
|
-
# must appear inside of a pair of
|
311
|
+
# must appear inside of a pair of @@.
|
312
312
|
def expand_path(path)
|
313
|
-
path = path.gsub(
|
313
|
+
path = path.gsub(/@(.*?)@/) { self.send($1) || $1 }
|
314
314
|
File.expand_path path
|
315
315
|
end
|
316
316
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sproutit-sproutcore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.20090721145280
|
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-07-
|
12
|
+
date: 2009-07-23 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -211,37 +211,6 @@ files:
|
|
211
211
|
- frameworks/sproutcore/frameworks/datastore/tests/system/store/retrieveRecord.js
|
212
212
|
- frameworks/sproutcore/frameworks/datastore/tests/system/store/writeDataHash.js
|
213
213
|
- frameworks/sproutcore/frameworks/debug/core.js
|
214
|
-
- frameworks/sproutcore/frameworks/deprecated/core.js
|
215
|
-
- frameworks/sproutcore/frameworks/deprecated/lib/button_views.rb
|
216
|
-
- frameworks/sproutcore/frameworks/deprecated/lib/collection_view.rb
|
217
|
-
- frameworks/sproutcore/frameworks/deprecated/lib/core_views.rb
|
218
|
-
- frameworks/sproutcore/frameworks/deprecated/lib/form_views.rb
|
219
|
-
- frameworks/sproutcore/frameworks/deprecated/lib/index.rhtml
|
220
|
-
- frameworks/sproutcore/frameworks/deprecated/lib/menu_views.rb
|
221
|
-
- frameworks/sproutcore/frameworks/deprecated/server/rails_server.js
|
222
|
-
- frameworks/sproutcore/frameworks/deprecated/server/rest_server.js
|
223
|
-
- frameworks/sproutcore/frameworks/deprecated/server/server.js
|
224
|
-
- frameworks/sproutcore/frameworks/deprecated/system/animator.js
|
225
|
-
- frameworks/sproutcore/frameworks/deprecated/system/binding.js
|
226
|
-
- frameworks/sproutcore/frameworks/deprecated/system/browser.js
|
227
|
-
- frameworks/sproutcore/frameworks/deprecated/system/classic_responder.js
|
228
|
-
- frameworks/sproutcore/frameworks/deprecated/system/event.js
|
229
|
-
- frameworks/sproutcore/frameworks/deprecated/system/globals.js
|
230
|
-
- frameworks/sproutcore/frameworks/deprecated/system/misc.js
|
231
|
-
- frameworks/sproutcore/frameworks/deprecated/system/node_descriptor.js
|
232
|
-
- frameworks/sproutcore/frameworks/deprecated/system/object.js
|
233
|
-
- frameworks/sproutcore/frameworks/deprecated/system/path_module.js
|
234
|
-
- frameworks/sproutcore/frameworks/deprecated/system/string.js
|
235
|
-
- frameworks/sproutcore/frameworks/deprecated/tests/application/application.rhtml
|
236
|
-
- frameworks/sproutcore/frameworks/deprecated/tests/views/classic_view/clippingFrame.rhtml
|
237
|
-
- frameworks/sproutcore/frameworks/deprecated/tests/views/classic_view/frame.rhtml
|
238
|
-
- frameworks/sproutcore/frameworks/deprecated/tests/views/classic_view/isVisibleInWindow.rhtml
|
239
|
-
- frameworks/sproutcore/frameworks/deprecated/tests/views/collection/base.rhtml
|
240
|
-
- frameworks/sproutcore/frameworks/deprecated/tests/views/collection/incremental_rendering.rhtml
|
241
|
-
- frameworks/sproutcore/frameworks/deprecated/tests/views/collection/source_list_rendering.rhtml
|
242
|
-
- frameworks/sproutcore/frameworks/deprecated/tests/views/popup_button.rhtml
|
243
|
-
- frameworks/sproutcore/frameworks/deprecated/tests/views/text_field.rhtml
|
244
|
-
- frameworks/sproutcore/frameworks/deprecated/views/collection.js
|
245
214
|
- frameworks/sproutcore/frameworks/designer/coders/design.js
|
246
215
|
- frameworks/sproutcore/frameworks/designer/coders/localization.js
|
247
216
|
- frameworks/sproutcore/frameworks/designer/coders/object.js
|
@@ -736,31 +705,50 @@ files:
|
|
736
705
|
- gen/app/Buildfile
|
737
706
|
- gen/app/README
|
738
707
|
- gen/app/USAGE
|
708
|
+
- gen/app/templates/apps/@target_name@/core.js
|
709
|
+
- gen/app/templates/apps/@target_name@/english.lproj/loading.rhtml
|
710
|
+
- gen/app/templates/apps/@target_name@/english.lproj/main_page.js
|
711
|
+
- gen/app/templates/apps/@target_name@/english.lproj/strings.js
|
712
|
+
- gen/app/templates/apps/@target_name@/main.js
|
739
713
|
- gen/controller/Buildfile
|
740
714
|
- gen/controller/README
|
741
715
|
- gen/controller/USAGE
|
716
|
+
- gen/controller/templates/controllers/@filename@.js
|
717
|
+
- gen/controller/templates/tests/controllers/@filename@.js
|
742
718
|
- gen/framework/Buildfile
|
743
719
|
- gen/framework/README
|
744
720
|
- gen/framework/USAGE
|
721
|
+
- gen/framework/templates/frameworks/@target_name@/core.js
|
722
|
+
- gen/framework/templates/frameworks/@target_name@/english.lproj/strings.js
|
745
723
|
- gen/language/Buildfile
|
746
724
|
- gen/language/README
|
747
725
|
- gen/language/USAGE
|
726
|
+
- gen/language/templates/@filename@/strings.js
|
748
727
|
- gen/model/Buildfile
|
749
728
|
- gen/model/README
|
750
729
|
- gen/model/USAGE
|
730
|
+
- gen/model/templates/fixtures/@filename@.js
|
731
|
+
- gen/model/templates/models/@filename@.js
|
732
|
+
- gen/model/templates/tests/models/@filename@.js
|
751
733
|
- gen/project/Buildfile
|
752
734
|
- gen/project/INIT
|
753
735
|
- gen/project/README
|
754
736
|
- gen/project/USAGE
|
737
|
+
- gen/project/templates/@filename@/Buildfile
|
738
|
+
- gen/project/templates/@filename@/README
|
755
739
|
- gen/test/Buildfile
|
756
740
|
- gen/test/README
|
757
741
|
- gen/test/USAGE
|
742
|
+
- gen/test/templates/tests/@filename@.js
|
758
743
|
- gen/theme/Buildfile
|
759
744
|
- gen/theme/README
|
760
745
|
- gen/theme/USAGE
|
746
|
+
- gen/theme/templates/themes/@target_name@/english.lproj/strings.js
|
761
747
|
- gen/view/Buildfile
|
762
748
|
- gen/view/README
|
763
749
|
- gen/view/USAGE
|
750
|
+
- gen/view/templates/tests/views/@filename@.js
|
751
|
+
- gen/view/templates/views/@filename@.js
|
764
752
|
- lib/sproutcore.rb
|
765
753
|
- lib/sproutcore/builders/base.rb
|
766
754
|
- lib/sproutcore/builders/combine.rb
|