diff --git a/LICENSE b/LICENSE index d645695..261eeb9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,3 @@ - Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ diff --git a/src/humulus/app.py b/src/humulus/app.py index eb554ee..7af6270 100644 --- a/src/humulus/app.py +++ b/src/humulus/app.py @@ -1,3 +1,5 @@ +"""Functions for instantiating Flask app object.""" + # Copyright 2019 Mike Shoup # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/humulus/static/recipes.js b/src/humulus/static/recipes.js index 300072a..2e057b2 100644 --- a/src/humulus/static/recipes.js +++ b/src/humulus/static/recipes.js @@ -1,3 +1,18 @@ +/* + Copyright 2019 Mike Shoup + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ // Correct all the indices for forms matching item. function adjustIndices(removedIndex, item) { var $forms = $(item); diff --git a/src/humulus/static/style.css b/src/humulus/static/style.css index 995df0e..e874c3a 100644 --- a/src/humulus/static/style.css +++ b/src/humulus/static/style.css @@ -1,3 +1,18 @@ +/* + Copyright 2019 Mike Shoup + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ .placeholder-img { font-size: 1.125rem; text-anchor: middle; diff --git a/src/humulus/templates/_base.html b/src/humulus/templates/_base.html index d1ae2ec..1fa7e9c 100644 --- a/src/humulus/templates/_base.html +++ b/src/humulus/templates/_base.html @@ -11,7 +11,7 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. + limitations under the License. -#} diff --git a/src/humulus/templates/_macros.html b/src/humulus/templates/_macros.html index ce38f32..3e60d5a 100644 --- a/src/humulus/templates/_macros.html +++ b/src/humulus/templates/_macros.html @@ -11,7 +11,7 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. + limitations under the License. -#} {% macro render_field_with_errors(field, size='') %}
diff --git a/src/humulus/templates/index.html b/src/humulus/templates/index.html index a28a626..cf5f34d 100644 --- a/src/humulus/templates/index.html +++ b/src/humulus/templates/index.html @@ -11,7 +11,7 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. + limitations under the License. -#} {% extends '_base.html' %} {% block title %}Home{% endblock %} diff --git a/src/humulus/templates/recipes/create.html b/src/humulus/templates/recipes/create.html index cb924da..37da459 100644 --- a/src/humulus/templates/recipes/create.html +++ b/src/humulus/templates/recipes/create.html @@ -11,7 +11,7 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. + limitations under the License. -#} {% from "_macros.html" import render_field_with_errors %} diff --git a/src/humulus/templates/recipes/info.html b/src/humulus/templates/recipes/info.html index 93ac3ee..93b4a7b 100644 --- a/src/humulus/templates/recipes/info.html +++ b/src/humulus/templates/recipes/info.html @@ -11,7 +11,7 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. + limitations under the License. -#} {% from "_macros.html" import render_field_with_errors %}