Change license to zlib (MIT sucks :()
This commit is contained in:
parent
e6622db4ca
commit
96794a4e49
25 changed files with 43 additions and 62 deletions
33
COPYING
33
COPYING
|
@ -1,19 +1,20 @@
|
|||
Copyright (C) 2010-2011 by Florent Le Coz
|
||||
Copyright (c) 2010-2011 Florent Le Coz
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
This software is provided 'as-is', without any express or implied
|
||||
warranty. In no event will the authors be held liable for any damages
|
||||
arising from the use of this software.
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
Permission is granted to anyone to use this software for any purpose,
|
||||
including commercial applications, and to alter it and redistribute it
|
||||
freely, subject to the following restrictions:
|
||||
|
||||
The software is provided "as is", without warranty of any kind, express or
|
||||
implied, including but not limited to the warranties of merchantability,
|
||||
fitness for a particular purpose and noninfringement. In no event shall the
|
||||
authors or copyright holders be liable for any claim, damages or other
|
||||
liability, whether in an action of contract, tort or otherwise, arising from,
|
||||
out of or in connection with the software or the use or other dealings in
|
||||
the software.
|
||||
1. The origin of this software must not be misrepresented; you must not
|
||||
claim that you wrote the original software. If you use this software
|
||||
in a product, an acknowledgment in the product documentation would be
|
||||
appreciated but is not required.
|
||||
|
||||
2. Altered source versions must be plainly marked as such, and must not be
|
||||
misrepresented as being the original software.
|
||||
|
||||
3. This notice may not be removed or altered from any source
|
||||
distribution.
|
||||
|
|
2
README
2
README
|
@ -73,7 +73,7 @@ Report a bug: http://dev.louiz.org/project/poezio/bugs/add
|
|||
Poezio is Free Software.
|
||||
(learn more: http://www.gnu.org/philosophy/free-sw.html)
|
||||
|
||||
Poezio is released under the MIT License.
|
||||
Poezio is released under the zlib License.
|
||||
Please read the COPYING file for details.
|
||||
|
||||
The artwork logo was made by Gaëtan Ribémont and released under
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
Defines a function returning a dict containing the values from an
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
various useful functions
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
Defines the global config instance, used to get or set (and save) values
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
Defines the Connection class
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
Defines the Resource and Contact classes, which are used in
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
from gettext import gettext as _
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
Defines the data-forms Tab and all the Windows for it.
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
Functions to interact with the keyboard
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
import sys
|
||||
from os import environ, makedirs
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
Implementation of the XEP-0045: Multi-User Chat.
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
|
||||
"""
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
/* This file is part of Poezio. */
|
||||
|
||||
/* Poezio is free software: you can redistribute it and/or modify */
|
||||
/* it under the terms of the MIT license. See the COPYING file. */
|
||||
/* it under the terms of the zlib license. See the COPYING file. */
|
||||
|
||||
/** The poopt python3 module
|
||||
**/
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
import logging
|
||||
log = logging.getLogger(__name__)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
from text_buffer import TextBuffer, Message
|
||||
from datetime import datetime
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
|
||||
"""
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
Defines a Singleton function that initialize an object
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
a Tab object is a way to organize various Windows (see windows.py)
|
||||
|
|
|
@ -1,18 +1,9 @@
|
|||
# Copyright 2010-2011 Le Coz Florent <louiz@louiz.org>
|
||||
# Copyright 2010-2011 Florent Le Coz <louiz@louiz.org>
|
||||
#
|
||||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio 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, version 3 of the License.
|
||||
#
|
||||
# Poezio 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 Poezio. If not, see <http://www.gnu.org/licenses/>.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
Define the TextBuffer class
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
Define the variables (colors and some other stuff) that are
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
To use these, just use core.add_timed_event(event)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
Define the user class.
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See the COPYING file.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
Define all the windows.
|
||||
|
|
15
src/xhtml.py
15
src/xhtml.py
|
@ -1,20 +1,9 @@
|
|||
#!/usr/bin/env python3
|
||||
#
|
||||
# Copyright 2010-2011 Le Coz Florent <louiz@louiz.org>
|
||||
# Copyright 2010-2011 Florent Le Coz <louiz@louiz.org>
|
||||
#
|
||||
# This file is part of Poezio.
|
||||
#
|
||||
# Poezio 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, version 3 of the License.
|
||||
#
|
||||
# Poezio 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 Poezio. If not, see <http://www.gnu.org/licenses/>.
|
||||
# it under the terms of the zlib license. See the COPYING file.
|
||||
|
||||
"""
|
||||
Various methods to convert
|
||||
|
|
Loading…
Reference in a new issue