From 9afb749561aac3f1ed21cd3d2d83bb69a68d5b1f Mon Sep 17 00:00:00 2001 From: Peter Wagenet Date: Tue, 15 Feb 2011 22:01:25 -0800 Subject: [PATCH] Added missing credits --- guides.yml | 15 +++++++++++++++ source/adding_unit_test.textile | 4 ++++ source/chance.textile | 4 ++++ source/running_unit_tests.textile | 3 +++ source/test_driven_development.textile | 4 ++++ source/testing_guidelines.textile | 6 +++++- source/theming_app.textile | 3 +++ source/todos_tdd.textile | 6 +++++- source/unit_test_framework.textile | 4 ++++ source/writing_unit_tests.textile | 2 ++ 10 files changed, 49 insertions(+), 2 deletions(-) diff --git a/guides.yml b/guides.yml index e716d23..35f0f5d 100644 --- a/guides.yml +++ b/guides.yml @@ -15,9 +15,24 @@ authors: nick: jz description: Jason Zimdars is an experienced creative director and web designer who has lead UI and UX design for numerous websites and web applications. You can see more of his design and writing at Thinkcage.com or follow him on Twitter Contributors: + - name: Alex Iskander + nick: ialexi + description: Member of the SproutCore core team. + - name: Florian Kugler + nick: fkugler + description: "" - name: Shawn Morel nick: shawnmorel description: Shawn Morel is a software generalist with lots of experience building user interfaces in Cocoa, Flex, and bare-bones HTML. + - name: Scott Smith + nick: ssmith + description: "" + - name: Devin Torres + nick: dtorres + description: "" + - name: 'Vibul "Veebs" Imtarnasan' + nick: veebs + description: "" index: Start Here: diff --git a/source/adding_unit_test.textile b/source/adding_unit_test.textile index f7b1707..045183e 100644 --- a/source/adding_unit_test.textile +++ b/source/adding_unit_test.textile @@ -164,3 +164,7 @@ Once you've added a unit test file, now you need to write some unit test code. Learn more by writing your first unit test. On to "Writing Unit Test Cases »":/writing_unit_tests.html + +h3. Changelog + +* February 15, 2011: initial version by "Scott Smith":credits.html#ssmith and "Vibul "Veebs" Imtarnasan":credits.html#veebs diff --git a/source/chance.textile b/source/chance.textile index d783895..52260cd 100644 --- a/source/chance.textile +++ b/source/chance.textile @@ -382,3 +382,7 @@ To avoid needlessly including the same data twice, skip the middle slice: You can supply a space-separated list of slices to skip. The possible slice names are +top-left+, +top+, +top-right+, +left+, +middle+, +right+, +bottom-left+, +bottom+, and +bottom-right+. + +h3. Changelog + +* January 20, 2011: initial version by "Alex Iskander":credits.html#ialexi diff --git a/source/running_unit_tests.textile b/source/running_unit_tests.textile index ce6b587..73c5d2c 100644 --- a/source/running_unit_tests.textile +++ b/source/running_unit_tests.textile @@ -106,4 +106,7 @@ This concludes the main programming guide for working with Unit Tests in SproutC On to the "SproutCore Testing Guidelines »":/testing_guidelines.html +h3. Changelog +* February 15, 2011: initial version by "Scott Smith":credits.html#ssmith and "Vibul "Veebs" Imtarnasan":credits.html#veebs +* February 15, 2011: minor revisions by "Peter Wagenet":credits.html#pwagenet diff --git a/source/test_driven_development.textile b/source/test_driven_development.textile index c85b9ca..deb3487 100644 --- a/source/test_driven_development.textile +++ b/source/test_driven_development.textile @@ -18,3 +18,7 @@ h3. Test-drive SproutCore Method Implementation h3. Test-drive Observer Implementation h3. Test-drive Bindings Implementation + +h3. Changelog + +* February 15, 2011: initial placeholder by "Scott Smith":credits.html#ssmith and "Vibul "Veebs" Imtarnasan":credits.html#veebs diff --git a/source/testing_guidelines.textile b/source/testing_guidelines.textile index 89035e4..353e177 100644 --- a/source/testing_guidelines.textile +++ b/source/testing_guidelines.textile @@ -23,4 +23,8 @@ h3. Next Let's reinvent the *todos* project using TDD techniques. -On to "SproutCore Development Using TDD »":/todos_tdd.html \ No newline at end of file +On to "SproutCore Development Using TDD »":/todos_tdd.html + +h3. Changelog + +* February 15, 2011: initial placeholder by "Scott Smith":credits.html#ssmith and "Vibul "Veebs" Imtarnasan":credits.html#veebs diff --git a/source/theming_app.textile b/source/theming_app.textile index bcf745a..b16849a 100644 --- a/source/theming_app.textile +++ b/source/theming_app.textile @@ -467,3 +467,6 @@ have to add it to your theme's +theme.js+ and remove it from your app's: MyTheme.Error = MyTheme.subtheme('error'); +h3. Changelog + +* January 17, 2011: initial version by "Alex Iskander":credits.html#ialexi diff --git a/source/todos_tdd.textile b/source/todos_tdd.textile index 4fea88b..ef3ff0b 100644 --- a/source/todos_tdd.textile +++ b/source/todos_tdd.textile @@ -351,4 +351,8 @@ Todos.mainPage = SC.Page.design({ }); -Generally, since I tend to think of the binding to the description and the value as functionality, I think I would want an integration test which checks both of those values. However for the sake of brevity (this post is already quite long), I'll leave out those tests. \ No newline at end of file +Generally, since I tend to think of the binding to the description and the value as functionality, I think I would want an integration test which checks both of those values. However for the sake of brevity (this post is already quite long), I'll leave out those tests. + +h3. Changelog + +* February 15, 2011: initial version by "Scott Smith":credits.html#ssmith and "Vibul "Veebs" Imtarnasan":credits.html#veebs diff --git a/source/unit_test_framework.textile b/source/unit_test_framework.textile index 00b00ef..55604e2 100644 --- a/source/unit_test_framework.textile +++ b/source/unit_test_framework.textile @@ -107,3 +107,7 @@ Now that you know the basics of how to use unit tests, it's time to start adding unit tests to your project. See "Adding Unit Test Files »":/adding_unit_test.html + +h3. Changelog + +* February 15, 2011: initial version by "Scott Smith":credits.html#ssmith and "Vibul "Veebs" Imtarnasan":credits.html#veebs diff --git a/source/writing_unit_tests.textile b/source/writing_unit_tests.textile index c26cd09..121a0f5 100644 --- a/source/writing_unit_tests.textile +++ b/source/writing_unit_tests.textile @@ -228,4 +228,6 @@ Now that you have written a unit test case or two, it's time to run them. The n On to "Running Unit Tests »":/running_unit_tests.html +h3. Changelog +* February 15, 2011: initial version by "Scott Smith":credits.html#ssmith and "Vibul "Veebs" Imtarnasan":credits.html#veebs