Mercurial > hgweb > health-hmis-client-plugins
changeset 3:c9e62fbc6113
Fix bug bug #62620: crypto plugin & client 4.0 not running
| author | Luis Falcon <falcon@gnuhealth.org> |
|---|---|
| date | Thu, 16 Jun 2022 19:53:09 +0100 |
| parents | 005bacd1bdc5 |
| children | 9293c8d76ef9 |
| files | crypto/__init__.py crypto/doc/index.rst crypto/version frl/README.rst frl/__init__.py frl/version gnuhealth_camera/README.rst gnuhealth_camera/__init__.py gnuhealth_camera/version |
| diffstat | 9 files changed, 140 insertions(+), 25 deletions(-) [+] |
line wrap: on
line diff
--- a/crypto/__init__.py +++ b/crypto/__init__.py @@ -1,9 +1,8 @@ -# -*- coding: utf-8 -*- ############################################################################## # # GNU Health: The Free Health and Hospital Information System -# Copyright (C) 2008-2019 Luis Falcon <lfalcon@gnusolidario.org> -# Copyright (C) 2011-2019 GNU Solidario <health@gnusolidario.org> +# Copyright (C) 2008-2022 Luis Falcon <lfalcon@gnusolidario.org> +# Copyright (C) 2011-2022 GNU Solidario <health@gnusolidario.org> # # # This program is free software: you can redistribute it and/or modify @@ -21,9 +20,9 @@ # ############################################################################## -import tryton.rpc as rpc -from tryton.common import RPCExecute, warning, message -from tryton.gui.window.form import Form +import gnuhealth.rpc as rpc +from gnuhealth.common import RPCExecute, warning, message +from gnuhealth.gui.window.form import Form import sys import gettext
--- a/crypto/doc/index.rst +++ b/crypto/doc/index.rst @@ -28,6 +28,6 @@ References: -1.- GNU Health : http://health.gnu.org +1.- GNU Health : http://www.gnuhealth.org 2.- Tryton : http://www.tryton.org 3.- GNU Privacy Guard : http://www.gnupg.org
new file mode 100644 --- /dev/null +++ b/frl/README.rst @@ -0,0 +1,117 @@ +GNU Health : The Free / Libre Health and Hospital Information System +==================================================================== + +GNU HEALTH is a Free / Libre, Health and Hospital Information System +that provides the following functionality: + +#. **Hospital Management Information System (HMIS)** +#. **Electronic Medical Record (EMR)** +#. **Health Information System (HIS)** +#. **Laboratory Information System (LIS)** + +GNU Health combines the daily medical practice with state-of-the-art +technology in bioinformatics and genetics. It provides a holistic approach +to the person, from the biological and molecular basis of disease to +the social and environmental determinants of health. + +GNU Health also manages the internal processes of a health institution, +such as calendars, financial management, billing, stock management, +pharmacies or laboratories (LIMS) + +The **GNU Health Federation** allows to interconnect heterogeneous nodes +and build large federated health networks across a region, province +or country. + + +Homepage +-------- + +https://www.gnuhealth.org + + +Documentation +------------- + +Wikibooks: https://en.wikibooks.org/wiki/GNU_Health/ + +Support GNU Health +------------------- + +GNU Health is a project of GNU Solidario. GNU Solidario is an Non-profit +Non-goverment-Organization (NGO) that works globally, delivering health +and education with free software. + +Health and education are the basis for the development and +dignity of societies. + +You can also **donate** to our project via : + +https://www.gnuhealth.org/donate/ + +In addition, you can show your long time commitment to GNU Health by +**becoming a member** of GNU Solidario, so together we can further +deliver Freedom and Equity in Healthcare around the World. + +https://my.gnusolidario.org/join-us/ + +GNU Solidario hosts IWEEE and GnuHealthCon: + +The International Workshop on e-Health in Emerging Economies- a good way to +support GNU Solidario and to get the latest on e-Health is to assist +to the conferences. + + +Need help to implement GNU Health ? +----------------------------------- + +We are committed to do our best in helping out projects that can improve +the health of your country or region. We want the project to be a success, +and since our resources are limited, we need to work together to make a great +and sustainable project. + +In order to be elegible, we need the following information from you, +your NGO or government: + +* An introduction of the current needs +* The project will use free software, both at the server and workstations +* There will be a local designated person that will be in charge of the project and the know-how transfer to the rest of the community.This person must be committed to be from the beginning of the project until two years after its completion. +* There must be a commitment of knowledge transfer to the rest of the team. + +We will do our best to help you out with the implementation and training +for the local team, to build local capacity and make your project sustainable. + +Please contect us and we'll back to you as soon as possible:: + + + Thank you ! + Dr. Luis Falcón, MD + Author and project leader + falcon@gnuhealth.org + + +Email +----- +info@gnuhealth.org + +Mastodon: @gnuhealth + +License +-------- + +GNU Health is licensed under GPL v3+:: + + Copyright (C) 2008-2022 Luis Falcon <falcon@gnuhealth.org> + Copyright (C) 2011-2022 GNU Solidario <health@gnusolidario.org> + + 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/>.
--- a/frl/__init__.py +++ b/frl/__init__.py @@ -1,9 +1,8 @@ -# -*- coding: utf-8 -*- ############################################################################## # # GNU Health: The Free Health and Hospital Information System -# Copyright (C) 2008-2019 Luis Falcon <lfalcon@gnusolidario.org> -# Copyright (C) 2011-2019 GNU Solidario <health@gnusolidario.org> +# Copyright (C) 2008-2022 Luis Falcon <lfalcon@gnusolidario.org> +# Copyright (C) 2011-2022 GNU Solidario <health@gnusolidario.org> # # # This program is free software: you can redistribute it and/or modify @@ -20,10 +19,10 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # ############################################################################## -import tryton.rpc as rpc -from tryton.common import RPCExecute, warning, message, sur -from tryton.gui.window.form import Form -from tryton.common import MODELACCESS +import gnuhealth.rpc as rpc +from gnuhealth.common import RPCExecute, warning, message, sur +from gnuhealth.gui.window.form import Form +from gnuhealth.common import MODELACCESS from gi.repository import Gtk import gettext
--- a/gnuhealth_camera/README.rst +++ b/gnuhealth_camera/README.rst @@ -93,15 +93,15 @@ ----- info@gnuhealth.org -Twitter: @gnuhealth +Mastodon: @gnuhealth License -------- GNU Health is licensed under GPL v3+:: - Copyright (C) 2008-2020 Luis Falcon <falcon@gnuhealth.org> - Copyright (C) 2011-2020 GNU Solidario <health@gnusolidario.org> + Copyright (C) 2008-2022 Luis Falcon <falcon@gnuhealth.org> + Copyright (C) 2011-2022 GNU Solidario <health@gnusolidario.org> 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
--- a/gnuhealth_camera/__init__.py +++ b/gnuhealth_camera/__init__.py @@ -1,8 +1,8 @@ ############################################################################## # # GNU Health: The Free Health and Hospital Information System -# Copyright (C) 2008-2020 Luis Falcon <lfalcon@gnusolidario.org> -# Copyright (C) 2011-2020 GNU Solidario <health@gnusolidario.org> +# Copyright (C) 2008-2022 Luis Falcon <lfalcon@gnusolidario.org> +# Copyright (C) 2011-2022 GNU Solidario <health@gnusolidario.org> # # # This program is free software: you can redistribute it and/or modify @@ -20,9 +20,9 @@ # ############################################################################## -import tryton.rpc as rpc -from tryton.common import RPCExecute, warning, message -from tryton.gui.window.form import Form +import gnuhealth.rpc as rpc +from gnuhealth.common import RPCExecute, warning, message +from gnuhealth.gui.window.form import Form import gettext import numpy as np from datetime import datetime
