Skip to content

Commit

Permalink
Added missing credits
Browse files Browse the repository at this point in the history
  • Loading branch information
wagenet committed Feb 16, 2011
1 parent f9e1f14 commit 9afb749
Show file tree
Hide file tree
Showing 10 changed files with 49 additions and 2 deletions.
15 changes: 15 additions & 0 deletions guides.yml
Expand Up @@ -15,9 +15,24 @@ authors:
nick: jz 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 <a href="http://www.thinkcage.com/">Thinkcage.com</a> or follow him on <a href="http://twitter.com/JZ">Twitter</a> 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 <a href="http://www.thinkcage.com/">Thinkcage.com</a> or follow him on <a href="http://twitter.com/JZ">Twitter</a>
Contributors: Contributors:
- name: Alex Iskander
nick: ialexi
description: Member of the SproutCore core team.
- name: Florian Kugler
nick: fkugler
description: ""
- name: Shawn Morel - name: Shawn Morel
nick: shawnmorel nick: shawnmorel
description: Shawn Morel is a software generalist with lots of experience building user interfaces in Cocoa, Flex, and bare-bones HTML. 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: index:
Start Here: Start Here:
Expand Down
4 changes: 4 additions & 0 deletions source/adding_unit_test.textile
Expand Up @@ -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. Learn more by writing your first unit test.


On to "Writing Unit Test Cases »":/writing_unit_tests.html 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 &quot;Veebs&quot; Imtarnasan":credits.html#veebs
4 changes: 4 additions & 0 deletions source/chance.textile
Expand Up @@ -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 You can supply a space-separated list of slices to skip. The possible slice
names are +top-left+, +top+, +top-right+, +left+, +middle+, +right+, names are +top-left+, +top+, +top-right+, +left+, +middle+, +right+,
+bottom-left+, +bottom+, and +bottom-right+. +bottom-left+, +bottom+, and +bottom-right+.

h3. Changelog

* January 20, 2011: initial version by "Alex Iskander":credits.html#ialexi
3 changes: 3 additions & 0 deletions source/running_unit_tests.textile
Expand Up @@ -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 On to the "SproutCore Testing Guidelines »":/testing_guidelines.html


h3. Changelog


* February 15, 2011: initial version by "Scott Smith":credits.html#ssmith and "Vibul &quot;Veebs&quot; Imtarnasan":credits.html#veebs
* February 15, 2011: minor revisions by "Peter Wagenet":credits.html#pwagenet
4 changes: 4 additions & 0 deletions source/test_driven_development.textile
Expand Up @@ -18,3 +18,7 @@ h3. Test-drive SproutCore Method Implementation
h3. Test-drive Observer Implementation h3. Test-drive Observer Implementation


h3. Test-drive Bindings Implementation h3. Test-drive Bindings Implementation

h3. Changelog

* February 15, 2011: initial placeholder by "Scott Smith":credits.html#ssmith and "Vibul &quot;Veebs&quot; Imtarnasan":credits.html#veebs
6 changes: 5 additions & 1 deletion source/testing_guidelines.textile
Expand Up @@ -23,4 +23,8 @@ h3. Next


Let's reinvent the *todos* project using TDD techniques. Let's reinvent the *todos* project using TDD techniques.


On to "SproutCore Development Using TDD »":/todos_tdd.html On to "SproutCore Development Using TDD »":/todos_tdd.html

h3. Changelog

* February 15, 2011: initial placeholder by "Scott Smith":credits.html#ssmith and "Vibul &quot;Veebs&quot; Imtarnasan":credits.html#veebs
3 changes: 3 additions & 0 deletions source/theming_app.textile
Expand Up @@ -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'); MyTheme.Error = MyTheme.subtheme('error');
</javascript> </javascript>


h3. Changelog

* January 17, 2011: initial version by "Alex Iskander":credits.html#ialexi
6 changes: 5 additions & 1 deletion source/todos_tdd.textile
Expand Up @@ -351,4 +351,8 @@ Todos.mainPage = SC.Page.design({
}); });
</javascript> </javascript>


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. 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 &quot;Veebs&quot; Imtarnasan":credits.html#veebs
4 changes: 4 additions & 0 deletions source/unit_test_framework.textile
Expand Up @@ -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. it's time to start adding unit tests to your project.


See "Adding Unit Test Files »":/adding_unit_test.html See "Adding Unit Test Files »":/adding_unit_test.html

h3. Changelog

* February 15, 2011: initial version by "Scott Smith":credits.html#ssmith and "Vibul &quot;Veebs&quot; Imtarnasan":credits.html#veebs
2 changes: 2 additions & 0 deletions source/writing_unit_tests.textile
Expand Up @@ -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 On to "Running Unit Tests »":/running_unit_tests.html


h3. Changelog


* February 15, 2011: initial version by "Scott Smith":credits.html#ssmith and "Vibul &quot;Veebs&quot; Imtarnasan":credits.html#veebs

0 comments on commit 9afb749

Please sign in to comment.