Skip to content

Commit bfcfa90

Browse files
committed
Add license MPL 2.0
1 parent 4407a0d commit bfcfa90

37 files changed

+664
-2
lines changed

LICENSE

+373
Large diffs are not rendered by default.

bin/odoo-helper

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
#!/bin/bash
22

3+
# Copyright © 2015-2018 Dmytro Katyukha <[email protected]>
4+
5+
#######################################################################
6+
# This Source Code Form is subject to the terms of the Mozilla Public #
7+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
8+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
9+
#######################################################################
10+
11+
312
# Use odoo-helper --help for a documentation
413

514

bin/odoo-helper-addons

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
#!/bin/bash
22

3+
# Copyright © 2016-2018 Dmytro Katyukha <[email protected]>
4+
5+
#######################################################################
6+
# This Source Code Form is subject to the terms of the Mozilla Public #
7+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
8+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
9+
#######################################################################
10+
11+
312
# Use odoo-helper --help for a documentation
413

514

bin/odoo-helper-db

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
#!/bin/bash
22

3+
# Copyright © 2016-2018 Dmytro Katyukha <[email protected]>
4+
5+
#######################################################################
6+
# This Source Code Form is subject to the terms of the Mozilla Public #
7+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
8+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
9+
#######################################################################
10+
11+
312
# Use odoo-helper --help for a documentation
413

514

bin/odoo-helper-fetch

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
#!/bin/bash
22

3+
# Copyright © 2016-2018 Dmytro Katyukha <[email protected]>
4+
5+
#######################################################################
6+
# This Source Code Form is subject to the terms of the Mozilla Public #
7+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
8+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
9+
#######################################################################
10+
11+
312
# Use odoo-helper --help for a documentation
413

514

bin/odoo-helper-log

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
#!/bin/bash
22

3+
# Copyright © 2017-2018 Dmytro Katyukha <[email protected]>
4+
5+
#######################################################################
6+
# This Source Code Form is subject to the terms of the Mozilla Public #
7+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
8+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
9+
#######################################################################
10+
11+
312
# Use odoo-helper --help for a documentation
413

514

bin/odoo-helper-restart

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
#!/bin/bash
22

3+
# Copyright © 2017-2018 Dmytro Katyukha <[email protected]>
4+
5+
#######################################################################
6+
# This Source Code Form is subject to the terms of the Mozilla Public #
7+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
8+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
9+
#######################################################################
10+
11+
312
# Use odoo-helper --help for a documentation
413

514

bin/odoo-helper-server

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
#!/bin/bash
22

3+
# Copyright © 2016-2018 Dmytro Katyukha <[email protected]>
4+
5+
#######################################################################
6+
# This Source Code Form is subject to the terms of the Mozilla Public #
7+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
8+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
9+
#######################################################################
10+
11+
312
# Use odoo-helper --help for a documentation
413

514

bin/odoo-helper-test

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
#!/bin/bash
22

3+
# Copyright © 2016-2018 Dmytro Katyukha <[email protected]>
4+
5+
#######################################################################
6+
# This Source Code Form is subject to the terms of the Mozilla Public #
7+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
8+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
9+
#######################################################################
10+
11+
312
# Use odoo-helper --help for a documentation
413

514

bin/odoo-install

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
#!/bin/bash
22

3+
# Copyright © 2015-2018 Dmytro Katyukha <[email protected]>
4+
5+
#######################################################################
6+
# This Source Code Form is subject to the terms of the Mozilla Public #
7+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
8+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
9+
#######################################################################
10+
11+
312
# Odoo install helper script
413

514
SCRIPT=$0;

install-system.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
#!/bin/bash
22

3+
# Copyright © 2015-2018 Dmytro Katyukha <[email protected]>
4+
5+
#######################################################################
6+
# This Source Code Form is subject to the terms of the Mozilla Public #
7+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
8+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
9+
#######################################################################
10+
311
# Define colors
412
NC='\e[0m';
513
REDC='\e[31m';

install-user.bash

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
#!/bin/bash
22

3+
# Copyright © 2015-2018 Dmytro Katyukha <[email protected]>
4+
5+
#######################################################################
6+
# This Source Code Form is subject to the terms of the Mozilla Public #
7+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
8+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
9+
#######################################################################
10+
11+
312
# Simple script to install odoo-helper-script userspace of current user
413
# This script does not require sudo, but some features of installed
514
# odoo-helper-scripts may require sudo.

lib/addons.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2015-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/common.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2015-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
# predefined filenames
210
CONF_FILE_NAME="odoo-helper.conf";
311

lib/config.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2017-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/db.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2015-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/doc-utils.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/fetch.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2015-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/git.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2015-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/install.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2015-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/link.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2017-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/lint.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/odoo.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2016-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/postgres.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2016-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/pylib/lodoo.py

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# -*- coding: utf-8 -*-
2+
# Copyright © 2017-2018 Dmytro Katyukha <[email protected]>
3+
4+
#######################################################################
5+
# This Source Code Form is subject to the terms of the Mozilla Public #
6+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
7+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
8+
#######################################################################
9+
210
""" Local odoo connection lib
311
"""
412
import os

lib/recursion.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2016-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
# Recursion protection utils
210

311
if [ -z $ODOO_HELPER_LIB ]; then

lib/scaffold.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2016-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/server.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2015-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/system.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2017-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/test.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2015-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
if [ -z $ODOO_HELPER_LIB ]; then
210
echo "Odoo-helper-scripts seems not been installed correctly.";
311
echo "Reinstall it (see Readme on https://gitlab.com/katyukha/odoo-helper-scripts/)";

lib/tr.bash

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Copyright © 2016-2018 Dmytro Katyukha <[email protected]>
2+
3+
#######################################################################
4+
# This Source Code Form is subject to the terms of the Mozilla Public #
5+
# License, v. 2.0. If a copy of the MPL was not distributed with this #
6+
# file, You can obtain one at http://mozilla.org/MPL/2.0/. #
7+
#######################################################################
8+
19
# Translation wrappers
210

311

0 commit comments

Comments
 (0)