forked from openlp/openlp
Fix license issues
This commit is contained in:
parent
bae4cb2a44
commit
7819a9eb02
@ -1,24 +1,24 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
||||||
|
|
||||||
###############################################################################
|
##########################################################################
|
||||||
# OpenLP - Open Source Lyrics Projection #
|
# OpenLP - Open Source Lyrics Projection #
|
||||||
# --------------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
# Copyright (c) 2008-2016 OpenLP Developers #
|
# Copyright (c) 2008-2019 OpenLP Developers #
|
||||||
# --------------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
# This program is free software; you can redistribute it and/or modify it #
|
# This program is free software: you can redistribute it and/or modify #
|
||||||
# under the terms of the GNU General Public License as published by the Free #
|
# it under the terms of the GNU General Public License as published by #
|
||||||
# Software Foundation; version 2 of the License. #
|
# 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 #
|
# This program is distributed in the hope that it will be useful, #
|
||||||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||||
# more details. #
|
# 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, write to the Free Software Foundation, Inc., 59 #
|
# You should have received a copy of the GNU General Public License #
|
||||||
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
|
||||||
###############################################################################
|
##########################################################################
|
||||||
"""
|
"""
|
||||||
This module runs a Pyro4 server using LibreOffice's version of Python
|
This module runs a Pyro4 server using LibreOffice's version of Python
|
||||||
|
|
||||||
|
@ -1,24 +1,24 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
||||||
|
|
||||||
###############################################################################
|
##########################################################################
|
||||||
# OpenLP - Open Source Lyrics Projection #
|
# OpenLP - Open Source Lyrics Projection #
|
||||||
# --------------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
# Copyright (c) 2008-2016 OpenLP Developers #
|
# Copyright (c) 2008-2019 OpenLP Developers #
|
||||||
# --------------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
# This program is free software; you can redistribute it and/or modify it #
|
# This program is free software: you can redistribute it and/or modify #
|
||||||
# under the terms of the GNU General Public License as published by the Free #
|
# it under the terms of the GNU General Public License as published by #
|
||||||
# Software Foundation; version 2 of the License. #
|
# 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 #
|
# This program is distributed in the hope that it will be useful, #
|
||||||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||||
# more details. #
|
# 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, write to the Free Software Foundation, Inc., 59 #
|
# You should have received a copy of the GNU General Public License #
|
||||||
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
|
||||||
###############################################################################
|
##########################################################################
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
from subprocess import Popen
|
from subprocess import Popen
|
||||||
|
@ -1,3 +1,27 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
||||||
|
|
||||||
|
##########################################################################
|
||||||
|
# OpenLP - Open Source Lyrics Projection #
|
||||||
|
# ---------------------------------------------------------------------- #
|
||||||
|
# Copyright (c) 2008-2019 OpenLP Developers #
|
||||||
|
# ---------------------------------------------------------------------- #
|
||||||
|
# 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 <https://www.gnu.org/licenses/>. #
|
||||||
|
##########################################################################
|
||||||
|
"""
|
||||||
|
This module contains some helpers for serializing Path objects in Pyro4
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
from openlp.core.common.path import Path
|
from openlp.core.common.path import Path
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
@ -1,24 +1,24 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
||||||
|
|
||||||
###############################################################################
|
##########################################################################
|
||||||
# OpenLP - Open Source Lyrics Projection #
|
# OpenLP - Open Source Lyrics Projection #
|
||||||
# --------------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
# Copyright (c) 2008-2016 OpenLP Developers #
|
# Copyright (c) 2008-2019 OpenLP Developers #
|
||||||
# --------------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
# This program is free software; you can redistribute it and/or modify it #
|
# This program is free software: you can redistribute it and/or modify #
|
||||||
# under the terms of the GNU General Public License as published by the Free #
|
# it under the terms of the GNU General Public License as published by #
|
||||||
# Software Foundation; version 2 of the License. #
|
# 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 #
|
# This program is distributed in the hope that it will be useful, #
|
||||||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||||
# more details. #
|
# 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, write to the Free Software Foundation, Inc., 59 #
|
# You should have received a copy of the GNU General Public License #
|
||||||
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
|
||||||
###############################################################################
|
##########################################################################
|
||||||
"""
|
"""
|
||||||
Functional tests to test the LibreOffice Pyro server
|
Functional tests to test the LibreOffice Pyro server
|
||||||
"""
|
"""
|
||||||
|
@ -1,24 +1,24 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
||||||
|
|
||||||
###############################################################################
|
##########################################################################
|
||||||
# OpenLP - Open Source Lyrics Projection #
|
# OpenLP - Open Source Lyrics Projection #
|
||||||
# --------------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
# Copyright (c) 2008-2016 OpenLP Developers #
|
# Copyright (c) 2008-2019 OpenLP Developers #
|
||||||
# --------------------------------------------------------------------------- #
|
# ---------------------------------------------------------------------- #
|
||||||
# This program is free software; you can redistribute it and/or modify it #
|
# This program is free software: you can redistribute it and/or modify #
|
||||||
# under the terms of the GNU General Public License as published by the Free #
|
# it under the terms of the GNU General Public License as published by #
|
||||||
# Software Foundation; version 2 of the License. #
|
# 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 #
|
# This program is distributed in the hope that it will be useful, #
|
||||||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||||
# more details. #
|
# 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, write to the Free Software Foundation, Inc., 59 #
|
# You should have received a copy of the GNU General Public License #
|
||||||
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
|
||||||
###############################################################################
|
##########################################################################
|
||||||
"""
|
"""
|
||||||
Functional tests to test the Mac LibreOffice class and related methods.
|
Functional tests to test the Mac LibreOffice class and related methods.
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user