diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7bebd3f3..fee32cc3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -103,5 +103,10 @@ Creating good pull requests sometimes what you want can be done in a different way if the reason for the change is known. _What goal is your change trying to accomplish?_ +5. Sign the Google [Contributor License Agreement][cla] (you can sign online at + the bottom of that page). You _must_ sign this form, otherwise we cannot + merge in your changes. + [build-bots]: https://travis-ci.org/Valloric/YouCompleteMe [ycm-users]: https://groups.google.com/forum/?hl=en#!forum/ycm-users +[cla]: https://developers.google.com/open-source/cla/individual diff --git a/README.md b/README.md index 233c46b7..6f6d68f4 100644 --- a/README.md +++ b/README.md @@ -1656,11 +1656,20 @@ The latest version of the plugin is available at The author's homepage is . +Project Management +------------------ + +This open-source project is run by me, Strahinja Val Markovic. I also happen to +work for Google and the code I write here is under Google copyright (for the +sake of simplicity and other reasons). This does **NOT** mean that this is an +official Google product (it isn't) or that Google has (or wants to have) +anything to do with it. + License ------- This software is licensed under the [GPL v3 license][gpl]. -© 2012 Strahinja Val Markovic <>. +© 2013 Google Inc. [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/Valloric/youcompleteme/trend.png)](https://bitdeli.com/free "Bitdeli Badge") diff --git a/autoload/youcompleteme.vim b/autoload/youcompleteme.vim index c2c63c40..5b61a56f 100644 --- a/autoload/youcompleteme.vim +++ b/autoload/youcompleteme.vim @@ -1,4 +1,4 @@ -" Copyright (C) 2011, 2012 Strahinja Val Markovic +" Copyright (C) 2011, 2012 Google Inc. " " This file is part of YouCompleteMe. " diff --git a/cpp/BoostParts/CMakeLists.txt b/cpp/BoostParts/CMakeLists.txt index b2a648df..6c442ff8 100644 --- a/cpp/BoostParts/CMakeLists.txt +++ b/cpp/BoostParts/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 3d9751a5..ce155ada 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/cpp/ycm/CMakeLists.txt b/cpp/ycm/CMakeLists.txt index 9c919f56..099a71d3 100644 --- a/cpp/ycm/CMakeLists.txt +++ b/cpp/ycm/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/cpp/ycm/Candidate.cpp b/cpp/ycm/Candidate.cpp index 22de29f1..703efea8 100644 --- a/cpp/ycm/Candidate.cpp +++ b/cpp/ycm/Candidate.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/Candidate.h b/cpp/ycm/Candidate.h index 99e43ed0..a28cd37f 100644 --- a/cpp/ycm/Candidate.h +++ b/cpp/ycm/Candidate.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/CandidateRepository.cpp b/cpp/ycm/CandidateRepository.cpp index 4ca1416b..026889b2 100644 --- a/cpp/ycm/CandidateRepository.cpp +++ b/cpp/ycm/CandidateRepository.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/CandidateRepository.h b/cpp/ycm/CandidateRepository.h index 7ad8ec0d..92d84372 100644 --- a/cpp/ycm/CandidateRepository.h +++ b/cpp/ycm/CandidateRepository.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/ClangCompleter.cpp b/cpp/ycm/ClangCompleter/ClangCompleter.cpp index cac6bc73..b23004ed 100644 --- a/cpp/ycm/ClangCompleter/ClangCompleter.cpp +++ b/cpp/ycm/ClangCompleter/ClangCompleter.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2013 Strahinja Val Markovic +// Copyright (C) 2011-2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/ClangCompleter.h b/cpp/ycm/ClangCompleter/ClangCompleter.h index 7f89019e..8a21df8d 100644 --- a/cpp/ycm/ClangCompleter/ClangCompleter.h +++ b/cpp/ycm/ClangCompleter/ClangCompleter.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/ClangHelpers.cpp b/cpp/ycm/ClangCompleter/ClangHelpers.cpp index 5f4ad07e..ebadff8a 100644 --- a/cpp/ycm/ClangCompleter/ClangHelpers.cpp +++ b/cpp/ycm/ClangCompleter/ClangHelpers.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2013 Strahinja Val Markovic +// Copyright (C) 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/ClangHelpers.h b/cpp/ycm/ClangCompleter/ClangHelpers.h index 6ddb385a..74ec313e 100644 --- a/cpp/ycm/ClangCompleter/ClangHelpers.h +++ b/cpp/ycm/ClangCompleter/ClangHelpers.h @@ -1,4 +1,4 @@ -// Copyright (C) 2013 Strahinja Val Markovic +// Copyright (C) 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/ClangUtils.cpp b/cpp/ycm/ClangCompleter/ClangUtils.cpp index 12413a67..242f51f6 100644 --- a/cpp/ycm/ClangCompleter/ClangUtils.cpp +++ b/cpp/ycm/ClangCompleter/ClangUtils.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/ClangUtils.h b/cpp/ycm/ClangCompleter/ClangUtils.h index 6799476a..de031b7e 100644 --- a/cpp/ycm/ClangCompleter/ClangUtils.h +++ b/cpp/ycm/ClangCompleter/ClangUtils.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/CompilationDatabase.cpp b/cpp/ycm/ClangCompleter/CompilationDatabase.cpp index 249d9608..984ef25a 100644 --- a/cpp/ycm/ClangCompleter/CompilationDatabase.cpp +++ b/cpp/ycm/ClangCompleter/CompilationDatabase.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/CompilationDatabase.h b/cpp/ycm/ClangCompleter/CompilationDatabase.h index bf75b3ee..35a1218b 100644 --- a/cpp/ycm/ClangCompleter/CompilationDatabase.h +++ b/cpp/ycm/ClangCompleter/CompilationDatabase.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/CompletionData.cpp b/cpp/ycm/ClangCompleter/CompletionData.cpp index ae66f4fb..ea681698 100644 --- a/cpp/ycm/ClangCompleter/CompletionData.cpp +++ b/cpp/ycm/ClangCompleter/CompletionData.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/CompletionData.h b/cpp/ycm/ClangCompleter/CompletionData.h index 573e4c1a..ff9ff41b 100644 --- a/cpp/ycm/ClangCompleter/CompletionData.h +++ b/cpp/ycm/ClangCompleter/CompletionData.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/Diagnostic.h b/cpp/ycm/ClangCompleter/Diagnostic.h index d84b07c9..7751b25c 100644 --- a/cpp/ycm/ClangCompleter/Diagnostic.h +++ b/cpp/ycm/ClangCompleter/Diagnostic.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/Location.h b/cpp/ycm/ClangCompleter/Location.h index d63a0277..317de189 100644 --- a/cpp/ycm/ClangCompleter/Location.h +++ b/cpp/ycm/ClangCompleter/Location.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/Range.cpp b/cpp/ycm/ClangCompleter/Range.cpp index c478bb45..8f0de0aa 100644 --- a/cpp/ycm/ClangCompleter/Range.cpp +++ b/cpp/ycm/ClangCompleter/Range.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2013 Strahinja Val Markovic +// Copyright (C) 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/Range.h b/cpp/ycm/ClangCompleter/Range.h index e4830fa6..ccd9dfdf 100644 --- a/cpp/ycm/ClangCompleter/Range.h +++ b/cpp/ycm/ClangCompleter/Range.h @@ -1,4 +1,4 @@ -// Copyright (C) 2013 Strahinja Val Markovic +// Copyright (C) 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/TranslationUnit.cpp b/cpp/ycm/ClangCompleter/TranslationUnit.cpp index 3c2e8974..b17925ee 100644 --- a/cpp/ycm/ClangCompleter/TranslationUnit.cpp +++ b/cpp/ycm/ClangCompleter/TranslationUnit.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/TranslationUnit.h b/cpp/ycm/ClangCompleter/TranslationUnit.h index 55f58dc5..4f852508 100644 --- a/cpp/ycm/ClangCompleter/TranslationUnit.h +++ b/cpp/ycm/ClangCompleter/TranslationUnit.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/TranslationUnitStore.cpp b/cpp/ycm/ClangCompleter/TranslationUnitStore.cpp index ec62a46d..9b01511f 100644 --- a/cpp/ycm/ClangCompleter/TranslationUnitStore.cpp +++ b/cpp/ycm/ClangCompleter/TranslationUnitStore.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2013 Strahinja Val Markovic +// Copyright (C) 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/TranslationUnitStore.h b/cpp/ycm/ClangCompleter/TranslationUnitStore.h index bfae1bac..a9267ae8 100644 --- a/cpp/ycm/ClangCompleter/TranslationUnitStore.h +++ b/cpp/ycm/ClangCompleter/TranslationUnitStore.h @@ -1,4 +1,4 @@ -// Copyright (C) 2013 Strahinja Val Markovic +// Copyright (C) 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ClangCompleter/UnsavedFile.h b/cpp/ycm/ClangCompleter/UnsavedFile.h index 69bcd2ce..e8d3c0a5 100644 --- a/cpp/ycm/ClangCompleter/UnsavedFile.h +++ b/cpp/ycm/ClangCompleter/UnsavedFile.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/CustomAssert.cpp b/cpp/ycm/CustomAssert.cpp index 6de9e5b4..50c771f7 100644 --- a/cpp/ycm/CustomAssert.cpp +++ b/cpp/ycm/CustomAssert.cpp @@ -1,6 +1,6 @@ /* * Copyright (c) 2008, Power of Two Games LLC -* 2010, Strahinja Markovic +* 2013, Google Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/cpp/ycm/CustomAssert.h b/cpp/ycm/CustomAssert.h index cf7ab070..5e1030c2 100644 --- a/cpp/ycm/CustomAssert.h +++ b/cpp/ycm/CustomAssert.h @@ -1,6 +1,6 @@ /* * Copyright (c) 2008, Power of Two Games LLC -* 2010, Strahinja Markovic +* 2013, Google Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/cpp/ycm/IdentifierCompleter.cpp b/cpp/ycm/IdentifierCompleter.cpp index a6bd2674..8f1f996d 100644 --- a/cpp/ycm/IdentifierCompleter.cpp +++ b/cpp/ycm/IdentifierCompleter.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/IdentifierCompleter.h b/cpp/ycm/IdentifierCompleter.h index 5b14420b..df7086c2 100644 --- a/cpp/ycm/IdentifierCompleter.h +++ b/cpp/ycm/IdentifierCompleter.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/IdentifierDatabase.cpp b/cpp/ycm/IdentifierDatabase.cpp index b1f400a3..d765c32b 100644 --- a/cpp/ycm/IdentifierDatabase.cpp +++ b/cpp/ycm/IdentifierDatabase.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2013 Strahinja Val Markovic +// Copyright (C) 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/IdentifierDatabase.h b/cpp/ycm/IdentifierDatabase.h index fb1910ad..0f4806b7 100644 --- a/cpp/ycm/IdentifierDatabase.h +++ b/cpp/ycm/IdentifierDatabase.h @@ -1,4 +1,4 @@ -// Copyright (C) 2013 Strahinja Val Markovic +// Copyright (C) 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/IdentifierUtils.cpp b/cpp/ycm/IdentifierUtils.cpp index 734ddbcb..45997477 100644 --- a/cpp/ycm/IdentifierUtils.cpp +++ b/cpp/ycm/IdentifierUtils.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/IdentifierUtils.h b/cpp/ycm/IdentifierUtils.h index 7e5ef1c3..775ea9f5 100644 --- a/cpp/ycm/IdentifierUtils.h +++ b/cpp/ycm/IdentifierUtils.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/LetterNode.cpp b/cpp/ycm/LetterNode.cpp index 57ae8dd9..e7d0b3cd 100644 --- a/cpp/ycm/LetterNode.cpp +++ b/cpp/ycm/LetterNode.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/LetterNode.h b/cpp/ycm/LetterNode.h index e7650837..73568ce4 100644 --- a/cpp/ycm/LetterNode.h +++ b/cpp/ycm/LetterNode.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/LetterNodeListMap.cpp b/cpp/ycm/LetterNodeListMap.cpp index 0f129d77..5a7a9801 100644 --- a/cpp/ycm/LetterNodeListMap.cpp +++ b/cpp/ycm/LetterNodeListMap.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/LetterNodeListMap.h b/cpp/ycm/LetterNodeListMap.h index d37a162a..b6ab0a9f 100644 --- a/cpp/ycm/LetterNodeListMap.h +++ b/cpp/ycm/LetterNodeListMap.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/PythonSupport.cpp b/cpp/ycm/PythonSupport.cpp index abab370f..ce2ef967 100644 --- a/cpp/ycm/PythonSupport.cpp +++ b/cpp/ycm/PythonSupport.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012, 2013 Strahinja Val Markovic +// Copyright (C) 2011, 2012, 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/PythonSupport.h b/cpp/ycm/PythonSupport.h index 893389fc..ffe70810 100644 --- a/cpp/ycm/PythonSupport.h +++ b/cpp/ycm/PythonSupport.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012, 2013 Strahinja Val Markovic +// Copyright (C) 2011, 2012, 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ReleaseGil.h b/cpp/ycm/ReleaseGil.h index c22de2be..1cef6b20 100644 --- a/cpp/ycm/ReleaseGil.h +++ b/cpp/ycm/ReleaseGil.h @@ -1,4 +1,4 @@ -// Copyright (C) 2013 Strahinja Val Markovic +// Copyright (C) 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/Result.cpp b/cpp/ycm/Result.cpp index fb4789b8..c1a21c98 100644 --- a/cpp/ycm/Result.cpp +++ b/cpp/ycm/Result.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/Result.h b/cpp/ycm/Result.h index 2aaf8c4d..20475dc5 100644 --- a/cpp/ycm/Result.h +++ b/cpp/ycm/Result.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/Utils.cpp b/cpp/ycm/Utils.cpp index 73047f4e..0eab24ec 100644 --- a/cpp/ycm/Utils.cpp +++ b/cpp/ycm/Utils.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/Utils.h b/cpp/ycm/Utils.h index 55d6b8bd..02282f4c 100644 --- a/cpp/ycm/Utils.h +++ b/cpp/ycm/Utils.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/exceptions.h b/cpp/ycm/exceptions.h index 43d0cb6f..05e75d98 100644 --- a/cpp/ycm/exceptions.h +++ b/cpp/ycm/exceptions.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/standard.h b/cpp/ycm/standard.h index cc704e69..aaeead8d 100644 --- a/cpp/ycm/standard.h +++ b/cpp/ycm/standard.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/tests/CMakeLists.txt b/cpp/ycm/tests/CMakeLists.txt index 1383cc0f..60e43117 100644 --- a/cpp/ycm/tests/CMakeLists.txt +++ b/cpp/ycm/tests/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2011 Strahinja Markovic +# Copyright (C) 2011 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/cpp/ycm/tests/CandidateRepository_test.cpp b/cpp/ycm/tests/CandidateRepository_test.cpp index 116d0799..69783d13 100644 --- a/cpp/ycm/tests/CandidateRepository_test.cpp +++ b/cpp/ycm/tests/CandidateRepository_test.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/tests/Candidate_test.cpp b/cpp/ycm/tests/Candidate_test.cpp index 54a3859e..9e8def7a 100644 --- a/cpp/ycm/tests/Candidate_test.cpp +++ b/cpp/ycm/tests/Candidate_test.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/tests/ClangCompleter/ClangCompleter_test.cpp b/cpp/ycm/tests/ClangCompleter/ClangCompleter_test.cpp index 18be50d2..6d642441 100644 --- a/cpp/ycm/tests/ClangCompleter/ClangCompleter_test.cpp +++ b/cpp/ycm/tests/ClangCompleter/ClangCompleter_test.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/tests/ClangCompleter/TranslationUnit_test.cpp b/cpp/ycm/tests/ClangCompleter/TranslationUnit_test.cpp index aa129f81..56ce4116 100644 --- a/cpp/ycm/tests/ClangCompleter/TranslationUnit_test.cpp +++ b/cpp/ycm/tests/ClangCompleter/TranslationUnit_test.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/tests/IdentifierCompleter_test.cpp b/cpp/ycm/tests/IdentifierCompleter_test.cpp index 7b17c1ab..ea234f1d 100644 --- a/cpp/ycm/tests/IdentifierCompleter_test.cpp +++ b/cpp/ycm/tests/IdentifierCompleter_test.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/tests/IdentifierUtils_test.cpp b/cpp/ycm/tests/IdentifierUtils_test.cpp index 28d585c8..2a480001 100644 --- a/cpp/ycm/tests/IdentifierUtils_test.cpp +++ b/cpp/ycm/tests/IdentifierUtils_test.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/tests/IndexForChar_test.cpp b/cpp/ycm/tests/IndexForChar_test.cpp index 133c8dc9..4c6d6a52 100644 --- a/cpp/ycm/tests/IndexForChar_test.cpp +++ b/cpp/ycm/tests/IndexForChar_test.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/tests/IsUppercase_test.cpp b/cpp/ycm/tests/IsUppercase_test.cpp index 088ca61d..14c79ff4 100644 --- a/cpp/ycm/tests/IsUppercase_test.cpp +++ b/cpp/ycm/tests/IsUppercase_test.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/tests/LetterBitsetFromString_test.cpp b/cpp/ycm/tests/LetterBitsetFromString_test.cpp index 147bc503..e2e959b7 100644 --- a/cpp/ycm/tests/LetterBitsetFromString_test.cpp +++ b/cpp/ycm/tests/LetterBitsetFromString_test.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/tests/TestUtils.cpp b/cpp/ycm/tests/TestUtils.cpp index 3adcdf2b..ebc9ce06 100644 --- a/cpp/ycm/tests/TestUtils.cpp +++ b/cpp/ycm/tests/TestUtils.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/tests/TestUtils.h b/cpp/ycm/tests/TestUtils.h index 242e0e41..f1c46517 100644 --- a/cpp/ycm/tests/TestUtils.h +++ b/cpp/ycm/tests/TestUtils.h @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/versioning.cpp b/cpp/ycm/versioning.cpp index d3bbfa46..d7339dc3 100644 --- a/cpp/ycm/versioning.cpp +++ b/cpp/ycm/versioning.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2013 Strahinja Val Markovic +// Copyright (C) 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/versioning.h b/cpp/ycm/versioning.h index 2b2fc081..909ed122 100644 --- a/cpp/ycm/versioning.h +++ b/cpp/ycm/versioning.h @@ -1,4 +1,4 @@ -// Copyright (C) 2013 Strahinja Val Markovic +// Copyright (C) 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ycm_client_support.cpp b/cpp/ycm/ycm_client_support.cpp index 25b77194..0cb76095 100644 --- a/cpp/ycm/ycm_client_support.cpp +++ b/cpp/ycm/ycm_client_support.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2013 Strahinja Val Markovic +// Copyright (C) 2013 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/cpp/ycm/ycm_core.cpp b/cpp/ycm/ycm_core.cpp index a5d55dc1..9708df09 100644 --- a/cpp/ycm/ycm_core.cpp +++ b/cpp/ycm/ycm_core.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011, 2012 Strahinja Val Markovic +// Copyright (C) 2011, 2012 Google Inc. // // This file is part of YouCompleteMe. // diff --git a/doc/youcompleteme.txt b/doc/youcompleteme.txt index c423e0d9..316879bb 100644 --- a/doc/youcompleteme.txt +++ b/doc/youcompleteme.txt @@ -1896,8 +1896,7 @@ The author's homepage is http://val.markovic.io. *youcompleteme-license* License ~ -This software is licensed under the GPL v3 license [32]. © 2012 Strahinja Val -Markovic . +This software is licensed under the GPL v3 license [32]. © 2013 Google Inc. Image: Bitdeli Badge [33] diff --git a/plugin/youcompleteme.vim b/plugin/youcompleteme.vim index 0841dd02..7a6f4632 100644 --- a/plugin/youcompleteme.vim +++ b/plugin/youcompleteme.vim @@ -1,4 +1,4 @@ -" Copyright (C) 2011, 2012 Strahinja Val Markovic +" Copyright (C) 2011, 2012 Google Inc. " " This file is part of YouCompleteMe. " diff --git a/python/ycm/base.py b/python/ycm/base.py index b31fd11f..e1e4dde0 100644 --- a/python/ycm/base.py +++ b/python/ycm/base.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/client/base_request.py b/python/ycm/client/base_request.py index 9044d38e..eac0830f 100644 --- a/python/ycm/client/base_request.py +++ b/python/ycm/client/base_request.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/client/command_request.py b/python/ycm/client/command_request.py index f2b92ab3..7e5073c2 100644 --- a/python/ycm/client/command_request.py +++ b/python/ycm/client/command_request.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/client/completion_request.py b/python/ycm/client/completion_request.py index 3893e887..8469d29e 100644 --- a/python/ycm/client/completion_request.py +++ b/python/ycm/client/completion_request.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/client/event_notification.py b/python/ycm/client/event_notification.py index 59444015..af10ca02 100644 --- a/python/ycm/client/event_notification.py +++ b/python/ycm/client/event_notification.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/client/omni_completion_request.py b/python/ycm/client/omni_completion_request.py index 2eb26a41..c7338142 100644 --- a/python/ycm/client/omni_completion_request.py +++ b/python/ycm/client/omni_completion_request.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/client/ycmd_keepalive.py b/python/ycm/client/ycmd_keepalive.py index 7f3740ba..69fd1977 100644 --- a/python/ycm/client/ycmd_keepalive.py +++ b/python/ycm/client/ycmd_keepalive.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/all/identifier_completer.py b/python/ycm/completers/all/identifier_completer.py index c3e27bfb..0eabf240 100644 --- a/python/ycm/completers/all/identifier_completer.py +++ b/python/ycm/completers/all/identifier_completer.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/all/omni_completer.py b/python/ycm/completers/all/omni_completer.py index eb405d57..8d74b7a9 100644 --- a/python/ycm/completers/all/omni_completer.py +++ b/python/ycm/completers/all/omni_completer.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012, 2013 Strahinja Val Markovic +# Copyright (C) 2011, 2012, 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/all/tests/identifier_completer_test.py b/python/ycm/completers/all/tests/identifier_completer_test.py index 532773cd..47263133 100644 --- a/python/ycm/completers/all/tests/identifier_completer_test.py +++ b/python/ycm/completers/all/tests/identifier_completer_test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/c/hook.py b/python/ycm/completers/c/hook.py index 7c6f20e5..2d8b3481 100644 --- a/python/ycm/completers/c/hook.py +++ b/python/ycm/completers/c/hook.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/completer.py b/python/ycm/completers/completer.py index 45c0f452..2ef502e8 100644 --- a/python/ycm/completers/completer.py +++ b/python/ycm/completers/completer.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012, 2013 Strahinja Val Markovic +# Copyright (C) 2011, 2012, 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/completer_utils.py b/python/ycm/completers/completer_utils.py index c700e690..464042d2 100644 --- a/python/ycm/completers/completer_utils.py +++ b/python/ycm/completers/completer_utils.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/completer_utils_test.py b/python/ycm/completers/completer_utils_test.py index a9caf885..c182443c 100644 --- a/python/ycm/completers/completer_utils_test.py +++ b/python/ycm/completers/completer_utils_test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/cpp/clang_completer.py b/python/ycm/completers/cpp/clang_completer.py index 07cd089f..b8372e86 100644 --- a/python/ycm/completers/cpp/clang_completer.py +++ b/python/ycm/completers/cpp/clang_completer.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/cpp/clang_helpers.py b/python/ycm/completers/cpp/clang_helpers.py index 7dec8bd0..f158a04b 100644 --- a/python/ycm/completers/cpp/clang_helpers.py +++ b/python/ycm/completers/cpp/clang_helpers.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/cpp/flags.py b/python/ycm/completers/cpp/flags.py index b09737de..10db27e9 100644 --- a/python/ycm/completers/cpp/flags.py +++ b/python/ycm/completers/cpp/flags.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/cpp/hook.py b/python/ycm/completers/cpp/hook.py index 7c6f20e5..2d8b3481 100644 --- a/python/ycm/completers/cpp/hook.py +++ b/python/ycm/completers/cpp/hook.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/cpp/tests/flags_test.py b/python/ycm/completers/cpp/tests/flags_test.py index 73826aa3..2d11e3c0 100644 --- a/python/ycm/completers/cpp/tests/flags_test.py +++ b/python/ycm/completers/cpp/tests/flags_test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/cs/cs_completer.py b/python/ycm/completers/cs/cs_completer.py index 0cce4ef3..03c51566 100755 --- a/python/ycm/completers/cs/cs_completer.py +++ b/python/ycm/completers/cs/cs_completer.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # Copyright (C) 2011, 2012 Chiel ten Brinke -# Strahinja Val Markovic +# Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/general/filename_completer.py b/python/ycm/completers/general/filename_completer.py index 87f10bd7..e4d56915 100644 --- a/python/ycm/completers/general/filename_completer.py +++ b/python/ycm/completers/general/filename_completer.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # Copyright (C) 2013 Stanislav Golovanov -# Strahinja Val Markovic +# Google Inc. # # YouCompleteMe is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/python/ycm/completers/general/general_completer_store.py b/python/ycm/completers/general/general_completer_store.py index e2f63eb4..2e46ef37 100644 --- a/python/ycm/completers/general/general_completer_store.py +++ b/python/ycm/completers/general/general_completer_store.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # Copyright (C) 2013 Stanislav Golovanov -# Strahinja Val Markovic +# Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/general/syntax_parse.py b/python/ycm/completers/general/syntax_parse.py index 0149a346..149154c3 100644 --- a/python/ycm/completers/general/syntax_parse.py +++ b/python/ycm/completers/general/syntax_parse.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/general/tests/syntax_parse_test.py b/python/ycm/completers/general/tests/syntax_parse_test.py index 37b39eda..318c7785 100644 --- a/python/ycm/completers/general/tests/syntax_parse_test.py +++ b/python/ycm/completers/general/tests/syntax_parse_test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/general/ultisnips_completer.py b/python/ycm/completers/general/ultisnips_completer.py index ca7b666e..d1e8a2d4 100644 --- a/python/ycm/completers/general/ultisnips_completer.py +++ b/python/ycm/completers/general/ultisnips_completer.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # Copyright (C) 2013 Stanislav Golovanov -# Strahinja Val Markovic +# Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/general_completer.py b/python/ycm/completers/general_completer.py index 71f013e0..717d97e1 100644 --- a/python/ycm/completers/general_completer.py +++ b/python/ycm/completers/general_completer.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/objc/hook.py b/python/ycm/completers/objc/hook.py index a26da7ed..48e66ec3 100644 --- a/python/ycm/completers/objc/hook.py +++ b/python/ycm/completers/objc/hook.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/objcpp/hook.py b/python/ycm/completers/objcpp/hook.py index 7c6f20e5..2d8b3481 100644 --- a/python/ycm/completers/objcpp/hook.py +++ b/python/ycm/completers/objcpp/hook.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/completers/python/jedi_completer.py b/python/ycm/completers/python/jedi_completer.py index 158b4171..421dc009 100644 --- a/python/ycm/completers/python/jedi_completer.py +++ b/python/ycm/completers/python/jedi_completer.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # # Copyright (C) 2011, 2012 Stephen Sugden -# Strahinja Val Markovic +# Google Inc. # Stanislav Golovanov # # This file is part of YouCompleteMe. diff --git a/python/ycm/diagnostic_interface.py b/python/ycm/diagnostic_interface.py index f03c83ad..8e5b7fbb 100644 --- a/python/ycm/diagnostic_interface.py +++ b/python/ycm/diagnostic_interface.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/extra_conf_store.py b/python/ycm/extra_conf_store.py index 6267a0db..9262ba2d 100644 --- a/python/ycm/extra_conf_store.py +++ b/python/ycm/extra_conf_store.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/server/handlers.py b/python/ycm/server/handlers.py index 0319bde9..e45c7f73 100644 --- a/python/ycm/server/handlers.py +++ b/python/ycm/server/handlers.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/server/responses.py b/python/ycm/server/responses.py index ae86d935..acd1f8cc 100644 --- a/python/ycm/server/responses.py +++ b/python/ycm/server/responses.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/server/server_state.py b/python/ycm/server/server_state.py index 39cd1243..8bc16b20 100644 --- a/python/ycm/server/server_state.py +++ b/python/ycm/server/server_state.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/server/server_utils.py b/python/ycm/server/server_utils.py index 96d566fe..20a90501 100644 --- a/python/ycm/server/server_utils.py +++ b/python/ycm/server/server_utils.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/server/tests/diagnostics_test.py b/python/ycm/server/tests/diagnostics_test.py index 90c00eae..43384f2d 100644 --- a/python/ycm/server/tests/diagnostics_test.py +++ b/python/ycm/server/tests/diagnostics_test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/server/tests/get_completions_test.py b/python/ycm/server/tests/get_completions_test.py index 7762f414..174ed03b 100644 --- a/python/ycm/server/tests/get_completions_test.py +++ b/python/ycm/server/tests/get_completions_test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/server/tests/misc_handlers_test.py b/python/ycm/server/tests/misc_handlers_test.py index e7d4f819..71652fe5 100644 --- a/python/ycm/server/tests/misc_handlers_test.py +++ b/python/ycm/server/tests/misc_handlers_test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/server/tests/subcommands_test.py b/python/ycm/server/tests/subcommands_test.py index 4c629e62..45ba2797 100644 --- a/python/ycm/server/tests/subcommands_test.py +++ b/python/ycm/server/tests/subcommands_test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/server/tests/test_utils.py b/python/ycm/server/tests/test_utils.py index 7c2a86db..aa6bc197 100644 --- a/python/ycm/server/tests/test_utils.py +++ b/python/ycm/server/tests/test_utils.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/server/watchdog_plugin.py b/python/ycm/server/watchdog_plugin.py index 23c48ae6..32e51b6f 100644 --- a/python/ycm/server/watchdog_plugin.py +++ b/python/ycm/server/watchdog_plugin.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/server/ycmd.py b/python/ycm/server/ycmd.py index 738ced00..fac6b2f8 100755 --- a/python/ycm/server/ycmd.py +++ b/python/ycm/server/ycmd.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/test_utils.py b/python/ycm/test_utils.py index ab07013f..1a7c15d6 100644 --- a/python/ycm/test_utils.py +++ b/python/ycm/test_utils.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/tests/base_test.py b/python/ycm/tests/base_test.py index bebc930f..67ab413f 100644 --- a/python/ycm/tests/base_test.py +++ b/python/ycm/tests/base_test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/tests/extra_conf_store_test.py b/python/ycm/tests/extra_conf_store_test.py index 6c34e5b3..f06005ee 100644 --- a/python/ycm/tests/extra_conf_store_test.py +++ b/python/ycm/tests/extra_conf_store_test.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/unsafe_thread_pool_executor.py b/python/ycm/unsafe_thread_pool_executor.py index 3840dd37..132d497d 100644 --- a/python/ycm/unsafe_thread_pool_executor.py +++ b/python/ycm/unsafe_thread_pool_executor.py @@ -1,7 +1,7 @@ # Copyright 2009 Brian Quinlan. All Rights Reserved. # Licensed to PSF under a Contributor Agreement. # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # Changes to this file are licensed under the same terms as the original file # (the Python Software Foundation License). diff --git a/python/ycm/user_options_store.py b/python/ycm/user_options_store.py index fdb422a9..31efa87c 100644 --- a/python/ycm/user_options_store.py +++ b/python/ycm/user_options_store.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2013 Strahinja Val Markovic +# Copyright (C) 2013 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/utils.py b/python/ycm/utils.py index 7bd0660f..fcd81a6c 100644 --- a/python/ycm/utils.py +++ b/python/ycm/utils.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/vimsupport.py b/python/ycm/vimsupport.py index 1d25f2e3..508fb49e 100644 --- a/python/ycm/vimsupport.py +++ b/python/ycm/vimsupport.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. # diff --git a/python/ycm/youcompleteme.py b/python/ycm/youcompleteme.py index f04fef60..8212f023 100644 --- a/python/ycm/youcompleteme.py +++ b/python/ycm/youcompleteme.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (C) 2011, 2012 Strahinja Val Markovic +# Copyright (C) 2011, 2012 Google Inc. # # This file is part of YouCompleteMe. #