summaryrefslogtreecommitdiff
path: root/chef-server
diff options
context:
space:
mode:
authorAdam Jacob <adam@hjksolutions.com>2009-01-09 14:22:48 -0800
committerAdam Jacob <adam@hjksolutions.com>2009-01-09 14:22:48 -0800
commit4963dd7717b6ed4bd02c6c8ad3697ce7eca876c5 (patch)
tree0e33a8b87470bd330f8ed1446ae9b61998b308aa /chef-server
parent60b65e35d7088799216605defb0ee2a6a09e4699 (diff)
downloadchef-4963dd7717b6ed4bd02c6c8ad3697ce7eca876c5.tar.gz
Opscode, little C
Diffstat (limited to 'chef-server')
-rw-r--r--chef-server/README.txt2
-rwxr-xr-xchef-server/bin/chef-indexer2
-rwxr-xr-xchef-server/bin/chef-server2
-rw-r--r--chef-server/lib/chef/search.rb2
-rw-r--r--chef-server/lib/chef/search_index.rb2
-rw-r--r--chef-server/lib/controllers/application.rb2
-rw-r--r--chef-server/lib/controllers/cookbook_attributes.rb2
-rw-r--r--chef-server/lib/controllers/cookbook_definitions.rb2
-rw-r--r--chef-server/lib/controllers/cookbook_files.rb2
-rw-r--r--chef-server/lib/controllers/cookbook_libraries.rb2
-rw-r--r--chef-server/lib/controllers/cookbook_recipes.rb2
-rw-r--r--chef-server/lib/controllers/cookbook_templates.rb2
-rw-r--r--chef-server/lib/controllers/cookbooks.rb2
-rw-r--r--chef-server/lib/controllers/exceptions.rb2
-rw-r--r--chef-server/lib/controllers/nodes.rb2
-rw-r--r--chef-server/lib/controllers/openid_consumer.rb2
-rw-r--r--chef-server/lib/controllers/openid_register.rb2
-rw-r--r--chef-server/lib/controllers/openid_server.rb2
-rw-r--r--chef-server/lib/controllers/search.rb2
-rw-r--r--chef-server/lib/controllers/search_entries.rb2
-rw-r--r--chef-server/lib/helpers/cookbooks_helper.rb2
-rw-r--r--chef-server/lib/helpers/global_helpers.rb2
-rw-r--r--chef-server/lib/helpers/nodes_helper.rb2
-rw-r--r--chef-server/lib/helpers/openid_server_helpers.rb2
-rw-r--r--chef-server/lib/init.rb2
-rw-r--r--chef-server/lib/public/javascript/chef.js2
-rw-r--r--chef-server/spec/spec_helper.rb2
-rw-r--r--chef-server/spec/unit/search_index_spec.rb2
-rw-r--r--chef-server/spec/unit/search_spec.rb2
29 files changed, 29 insertions, 29 deletions
diff --git a/chef-server/README.txt b/chef-server/README.txt
index 4f7519df96..c269193de0 100644
--- a/chef-server/README.txt
+++ b/chef-server/README.txt
@@ -60,7 +60,7 @@ Install all of the above. To fire up a develpment environment, do the following
Chef - A configuration management system
Author:: Adam Jacob (<adam@opscode.com>)
-Copyright:: Copyright (c) 2008 OpsCode, Inc.
+Copyright:: Copyright (c) 2008 Opscode, Inc.
License:: Apache License, Version 2.0
Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/bin/chef-indexer b/chef-server/bin/chef-indexer
index 7dd3a0053b..f36e09a8c3 100755
--- a/chef-server/bin/chef-indexer
+++ b/chef-server/bin/chef-indexer
@@ -3,7 +3,7 @@
# ./chef-indexer - Build indexes from Chef Queues!
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/bin/chef-server b/chef-server/bin/chef-server
index 6fff1d3db7..a68cf1b202 100755
--- a/chef-server/bin/chef-server
+++ b/chef-server/bin/chef-server
@@ -3,7 +3,7 @@
# ./chef-server - Serving up piping hot infrastructure!
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/chef/search.rb b/chef-server/lib/chef/search.rb
index 725a0127e2..4723aa0756 100644
--- a/chef-server/lib/chef/search.rb
+++ b/chef-server/lib/chef/search.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/chef/search_index.rb b/chef-server/lib/chef/search_index.rb
index 717bdf8f17..ad0f5ee731 100644
--- a/chef-server/lib/chef/search_index.rb
+++ b/chef-server/lib/chef/search_index.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/application.rb b/chef-server/lib/controllers/application.rb
index d659cf50d4..dd300ee2d8 100644
--- a/chef-server/lib/controllers/application.rb
+++ b/chef-server/lib/controllers/application.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/cookbook_attributes.rb b/chef-server/lib/controllers/cookbook_attributes.rb
index a910ba6f6b..49a72c5953 100644
--- a/chef-server/lib/controllers/cookbook_attributes.rb
+++ b/chef-server/lib/controllers/cookbook_attributes.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/cookbook_definitions.rb b/chef-server/lib/controllers/cookbook_definitions.rb
index 958835ca0e..c9252f2d96 100644
--- a/chef-server/lib/controllers/cookbook_definitions.rb
+++ b/chef-server/lib/controllers/cookbook_definitions.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/cookbook_files.rb b/chef-server/lib/controllers/cookbook_files.rb
index 69bb93cc6c..679ca11524 100644
--- a/chef-server/lib/controllers/cookbook_files.rb
+++ b/chef-server/lib/controllers/cookbook_files.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/cookbook_libraries.rb b/chef-server/lib/controllers/cookbook_libraries.rb
index 1230e7a914..b1f9dbcd73 100644
--- a/chef-server/lib/controllers/cookbook_libraries.rb
+++ b/chef-server/lib/controllers/cookbook_libraries.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/cookbook_recipes.rb b/chef-server/lib/controllers/cookbook_recipes.rb
index 53c5eca37f..18698591d3 100644
--- a/chef-server/lib/controllers/cookbook_recipes.rb
+++ b/chef-server/lib/controllers/cookbook_recipes.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/cookbook_templates.rb b/chef-server/lib/controllers/cookbook_templates.rb
index 242657b5d0..066ff0f6e8 100644
--- a/chef-server/lib/controllers/cookbook_templates.rb
+++ b/chef-server/lib/controllers/cookbook_templates.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/cookbooks.rb b/chef-server/lib/controllers/cookbooks.rb
index fd3f27c4c0..d96a78d9ee 100644
--- a/chef-server/lib/controllers/cookbooks.rb
+++ b/chef-server/lib/controllers/cookbooks.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/exceptions.rb b/chef-server/lib/controllers/exceptions.rb
index 2fc885d397..5d1f097693 100644
--- a/chef-server/lib/controllers/exceptions.rb
+++ b/chef-server/lib/controllers/exceptions.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/nodes.rb b/chef-server/lib/controllers/nodes.rb
index 94a6fae3c7..72e9aaf5a5 100644
--- a/chef-server/lib/controllers/nodes.rb
+++ b/chef-server/lib/controllers/nodes.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/openid_consumer.rb b/chef-server/lib/controllers/openid_consumer.rb
index bd456b2211..0279ea911e 100644
--- a/chef-server/lib/controllers/openid_consumer.rb
+++ b/chef-server/lib/controllers/openid_consumer.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/openid_register.rb b/chef-server/lib/controllers/openid_register.rb
index 232766ca63..cc601658ff 100644
--- a/chef-server/lib/controllers/openid_register.rb
+++ b/chef-server/lib/controllers/openid_register.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/openid_server.rb b/chef-server/lib/controllers/openid_server.rb
index 68ffb2970b..f12fea766a 100644
--- a/chef-server/lib/controllers/openid_server.rb
+++ b/chef-server/lib/controllers/openid_server.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/search.rb b/chef-server/lib/controllers/search.rb
index 5a453b89d1..1c05f80f83 100644
--- a/chef-server/lib/controllers/search.rb
+++ b/chef-server/lib/controllers/search.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/controllers/search_entries.rb b/chef-server/lib/controllers/search_entries.rb
index 938923ad17..f841f0b2ee 100644
--- a/chef-server/lib/controllers/search_entries.rb
+++ b/chef-server/lib/controllers/search_entries.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/helpers/cookbooks_helper.rb b/chef-server/lib/helpers/cookbooks_helper.rb
index 98fa081440..25b74f8d8c 100644
--- a/chef-server/lib/helpers/cookbooks_helper.rb
+++ b/chef-server/lib/helpers/cookbooks_helper.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/helpers/global_helpers.rb b/chef-server/lib/helpers/global_helpers.rb
index f5e3e335de..1495996120 100644
--- a/chef-server/lib/helpers/global_helpers.rb
+++ b/chef-server/lib/helpers/global_helpers.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/helpers/nodes_helper.rb b/chef-server/lib/helpers/nodes_helper.rb
index 91bd27f4cc..89c47e93d1 100644
--- a/chef-server/lib/helpers/nodes_helper.rb
+++ b/chef-server/lib/helpers/nodes_helper.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/helpers/openid_server_helpers.rb b/chef-server/lib/helpers/openid_server_helpers.rb
index 7eda1917ba..bf8814382e 100644
--- a/chef-server/lib/helpers/openid_server_helpers.rb
+++ b/chef-server/lib/helpers/openid_server_helpers.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/init.rb b/chef-server/lib/init.rb
index 83e983b9ff..497fe8bd4e 100644
--- a/chef-server/lib/init.rb
+++ b/chef-server/lib/init.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/lib/public/javascript/chef.js b/chef-server/lib/public/javascript/chef.js
index a4379ae840..5562953937 100644
--- a/chef-server/lib/public/javascript/chef.js
+++ b/chef-server/lib/public/javascript/chef.js
@@ -1,6 +1,6 @@
//
// Author:: Adam Jacob (<adam@opscode.com>)
-// Copyright:: Copyright (c) 2008 OpsCode, Inc.
+// Copyright:: Copyright (c) 2008 Opscode, Inc.
// License:: Apache License, Version 2.0
//
// Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/spec/spec_helper.rb b/chef-server/spec/spec_helper.rb
index 4308f5f8f7..c60b8e0613 100644
--- a/chef-server/spec/spec_helper.rb
+++ b/chef-server/spec/spec_helper.rb
@@ -1,5 +1,5 @@
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: GNU General Public License version 2 or later
#
# This program and entire repository is free software; you can
diff --git a/chef-server/spec/unit/search_index_spec.rb b/chef-server/spec/unit/search_index_spec.rb
index 4285ab1585..0422fada37 100644
--- a/chef-server/spec/unit/search_index_spec.rb
+++ b/chef-server/spec/unit/search_index_spec.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/chef-server/spec/unit/search_spec.rb b/chef-server/spec/unit/search_spec.rb
index b3113f0294..8c3bf4424c 100644
--- a/chef-server/spec/unit/search_spec.rb
+++ b/chef-server/spec/unit/search_spec.rb
@@ -1,6 +1,6 @@
#
# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 OpsCode, Inc.
+# Copyright:: Copyright (c) 2008 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");