Skip to content

Commit

Permalink
- Added license details to each python script
Browse files Browse the repository at this point in the history
  • Loading branch information
fxnut committed Jul 10, 2017
1 parent e4bca80 commit 1387dc8
Show file tree
Hide file tree
Showing 6 changed files with 114 additions and 1 deletion.
19 changes: 19 additions & 0 deletions houdini/shelf_scripts/patch_rops.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
"""
Hou Farm. A Deadline submission tool for Houdini
Copyright (C) 2017 Andy Nicholas
https://github.com/fxnut/hou_farm
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses.
"""

import hou

global kwargs
Expand Down
19 changes: 19 additions & 0 deletions houdini/shelf_scripts/unpatch_rops.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
"""
Hou Farm. A Deadline submission tool for Houdini
Copyright (C) 2017 Andy Nicholas
https://github.com/fxnut/hou_farm
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses.
"""

import hou

global kwargs
Expand Down
21 changes: 20 additions & 1 deletion python/hou_farm/deadline.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
"""
Hou Farm. A Deadline submission tool for Houdini
Copyright (C) 2017 Andy Nicholas
https://github.com/fxnut/hou_farm
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses.
"""

import os
import imp
import re
Expand Down Expand Up @@ -46,7 +65,7 @@ def validate_environment(error_list_obj):
def get_deadline_command_string():
"""
Retrieves the Deadline/bin path and the Deadline executable path.
If HOUFARM_VIRTUAL_DEADLINE is set, then it returns empty strings in the tuple.
Returns:
Expand Down
18 changes: 18 additions & 0 deletions python/hou_farm/errors.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
"""
Hou Farm. A Deadline submission tool for Houdini
Copyright (C) 2017 Andy Nicholas
https://github.com/fxnut/hou_farm
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses.
"""

try:
import hou
Expand Down
19 changes: 19 additions & 0 deletions python/hou_farm/integersequence.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
"""
Hou Farm. A Deadline submission tool for Houdini
Copyright (C) 2017 Andy Nicholas
https://github.com/fxnut/hou_farm
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses.
"""

import re


Expand Down
19 changes: 19 additions & 0 deletions python/hou_farm/tools.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
"""
Hou Farm. A Deadline submission tool for Houdini
Copyright (C) 2017 Andy Nicholas
https://github.com/fxnut/hou_farm
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses.
"""

import os
import re
import json
Expand Down

0 comments on commit 1387dc8

Please sign in to comment.