diff options
| author | MobileMachine\jeremy <[email protected]> | 2017-06-06 22:59:03 -0400 |
|---|---|---|
| committer | MobileMachine\jeremy <[email protected]> | 2017-06-06 22:59:03 -0400 |
| commit | 24725fa8681f906ab44d80687c09fecc171a2896 (patch) | |
| tree | 312a601df29aca7f8db9f44082d96ebc7a679138 /Core/Scripts/ThirdParty/github/GitCommit.py | |
| parent | Initial commit (diff) | |
| download | artv2-24725fa8681f906ab44d80687c09fecc171a2896.tar.xz artv2-24725fa8681f906ab44d80687c09fecc171a2896.zip | |
Initial Submission
First submission of current state of ARTv2. Currently considered to be in Alpha. There are a couple of animation tools not implemented yet, and one module not implemented yet, as well as incomplete documentation.
Diffstat (limited to 'Core/Scripts/ThirdParty/github/GitCommit.py')
| -rw-r--r-- | Core/Scripts/ThirdParty/github/GitCommit.py | 132 |
1 files changed, 132 insertions, 0 deletions
diff --git a/Core/Scripts/ThirdParty/github/GitCommit.py b/Core/Scripts/ThirdParty/github/GitCommit.py new file mode 100644 index 0000000..3467eab --- /dev/null +++ b/Core/Scripts/ThirdParty/github/GitCommit.py @@ -0,0 +1,132 @@ +# -*- coding: utf-8 -*- + +# ########################## Copyrights and license ############################ +# # +# Copyright 2012 Vincent Jacques <[email protected]> # +# Copyright 2012 Zearin <[email protected]> # +# Copyright 2013 AKFish <[email protected]> # +# Copyright 2013 Vincent Jacques <[email protected]> # +# # +# This file is part of PyGithub. http://jacquev6.github.com/PyGithub/ # +# # +# PyGithub is free software: you can redistribute it and/or modify it under # +# the terms of the GNU Lesser General Public License as published by the Free # +# Software Foundation, either version 3 of the License, or (at your option) # +# any later version. # +# # +# PyGithub is distributed in the hope that it will be useful, but WITHOUT ANY # +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more # +# details. # +# # +# You should have received a copy of the GNU Lesser General Public License # +# along with PyGithub. If not, see <http://www.gnu.org/licenses/>. # +# # +# ############################################################################## + +import github.GithubObject + +import github.GitAuthor +import github.GitTree + + +class GitCommit(github.GithubObject.CompletableGithubObject): + """ + This class represents GitCommits as returned for example by http://developer.github.com/v3/todo + """ + + @property + def author(self): + """ + :type: :class:`github.GitAuthor.GitAuthor` + """ + self._completeIfNotSet(self._author) + return self._author.value + + @property + def committer(self): + """ + :type: :class:`github.GitAuthor.GitAuthor` + """ + self._completeIfNotSet(self._committer) + return self._committer.value + + @property + def html_url(self): + """ + :type: string + """ + self._completeIfNotSet(self._html_url) + return self._html_url.value + + @property + def message(self): + """ + :type: string + """ + self._completeIfNotSet(self._message) + return self._message.value + + @property + def parents(self): + """ + :type: list of :class:`github.GitCommit.GitCommit` + """ + self._completeIfNotSet(self._parents) + return self._parents.value + + @property + def sha(self): + """ + :type: string + """ + self._completeIfNotSet(self._sha) + return self._sha.value + + @property + def tree(self): + """ + :type: :class:`github.GitTree.GitTree` + """ + self._completeIfNotSet(self._tree) + return self._tree.value + + @property + def url(self): + """ + :type: string + """ + self._completeIfNotSet(self._url) + return self._url.value + + @property + def _identity(self): + return self.sha + + def _initAttributes(self): + self._author = github.GithubObject.NotSet + self._committer = github.GithubObject.NotSet + self._html_url = github.GithubObject.NotSet + self._message = github.GithubObject.NotSet + self._parents = github.GithubObject.NotSet + self._sha = github.GithubObject.NotSet + self._tree = github.GithubObject.NotSet + self._url = github.GithubObject.NotSet + + def _useAttributes(self, attributes): + if "author" in attributes: # pragma no branch + self._author = self._makeClassAttribute(github.GitAuthor.GitAuthor, attributes["author"]) + if "committer" in attributes: # pragma no branch + self._committer = self._makeClassAttribute(github.GitAuthor.GitAuthor, attributes["committer"]) + if "html_url" in attributes: # pragma no branch + self._html_url = self._makeStringAttribute(attributes["html_url"]) + if "message" in attributes: # pragma no branch + self._message = self._makeStringAttribute(attributes["message"]) + if "parents" in attributes: # pragma no branch + self._parents = self._makeListOfClassesAttribute(GitCommit, attributes["parents"]) + if "sha" in attributes: # pragma no branch + self._sha = self._makeStringAttribute(attributes["sha"]) + if "tree" in attributes: # pragma no branch + self._tree = self._makeClassAttribute(github.GitTree.GitTree, attributes["tree"]) + if "url" in attributes: # pragma no branch + self._url = self._makeStringAttribute(attributes["url"]) |