rsclib 0.66__py3-none-any.whl → 0.68__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
rsclib/Config_File.py CHANGED
@@ -4,19 +4,23 @@
4
4
  # Web: http://www.runtux.com Email: office@runtux.com
5
5
  # All rights reserved
6
6
  # ****************************************************************************
7
- # This library is free software; you can redistribute it and/or modify
8
- # it under the terms of the GNU Library General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
11
13
  #
12
- # This program is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
16
  #
17
- # You should have received a copy of the GNU Library General Public
18
- # License along with this program; if not, write to the Free Software
19
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
20
24
  # ****************************************************************************
21
25
 
22
26
  import sys
rsclib/IP_Address.py CHANGED
@@ -4,19 +4,23 @@
4
4
  # Web: http://www.runtux.com Email: office@runtux.com
5
5
  # All rights reserved
6
6
  # ****************************************************************************
7
- # This library is free software; you can redistribute it and/or modify
8
- # it under the terms of the GNU Library General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
11
13
  #
12
- # This program is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
16
  #
17
- # You should have received a copy of the GNU Library General Public
18
- # License along with this program; if not, write to the Free Software
19
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
20
24
  # ****************************************************************************
21
25
 
22
26
  from __future__ import print_function
@@ -162,7 +166,7 @@ class IP_Address (IP_Meta) :
162
166
  def net (self) :
163
167
  return self.__class__ (self._ip)
164
168
  # end def net
165
-
169
+
166
170
  network = net
167
171
 
168
172
  @property
rsclib/Math.py CHANGED
@@ -1,23 +1,26 @@
1
1
  #!/usr/bin/python
2
- # -*- coding: iso-8859-1 -*-
3
2
  # Copyright (C) 2007 Dr. Ralf Schlatterbeck Open Source Consulting.
4
3
  # Reichergasse 131, A-3411 Weidling.
5
4
  # Web: http://www.runtux.com Email: office@runtux.com
6
5
  # All rights reserved
7
6
  # ****************************************************************************
8
- # This library is free software; you can redistribute it and/or modify
9
- # it under the terms of the GNU Library General Public License as
10
- # published by the Free Software Foundation; either version 2 of the
11
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
12
13
  #
13
- # This program is distributed in the hope that it will be useful,
14
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
17
16
  #
18
- # You should have received a copy of the GNU Library General Public
19
- # License along with this program; if not, write to the Free Software
20
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
21
24
  # ****************************************************************************
22
25
 
23
26
  def extended_euclid (m, n) :
rsclib/PDF_Signature.py CHANGED
@@ -4,19 +4,23 @@
4
4
  # Web: http://www.runtux.com Email: office@runtux.com
5
5
  # All rights reserved
6
6
  # ****************************************************************************
7
- # This library is free software; you can redistribute it and/or modify
8
- # it under the terms of the GNU Library General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
11
13
  #
12
- # This program is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
16
  #
17
- # You should have received a copy of the GNU Library General Public
18
- # License along with this program; if not, write to the Free Software
19
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
20
24
  # ****************************************************************************
21
25
 
22
26
  from __future__ import print_function
rsclib/PM_Value.py CHANGED
@@ -4,19 +4,23 @@
4
4
  # Web: http://www.runtux.com Email: office@runtux.com
5
5
  # All rights reserved
6
6
  # ****************************************************************************
7
- # This library is free software; you can redistribute it and/or modify
8
- # it under the terms of the GNU Library General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
11
13
  #
12
- # This program is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
16
  #
17
- # You should have received a copy of the GNU Library General Public
18
- # License along with this program; if not, write to the Free Software
19
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
20
24
  # ****************************************************************************
21
25
 
22
26
  from __future__ import division
rsclib/Phone.py CHANGED
@@ -1,23 +1,26 @@
1
1
  #!/usr/bin/python
2
- # -*- coding: utf-8 -*-
3
2
  # Copyright (C) 2012-17 Dr. Ralf Schlatterbeck Open Source Consulting.
4
3
  # Reichergasse 131, A-3411 Weidling.
5
4
  # Web: http://www.runtux.com Email: office@runtux.com
6
5
  # All rights reserved
7
6
  # ****************************************************************************
8
- # This library is free software; you can redistribute it and/or modify
9
- # it under the terms of the GNU Library General Public License as
10
- # published by the Free Software Foundation; either version 2 of the
11
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
12
13
  #
13
- # This program is distributed in the hope that it will be useful,
14
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
17
16
  #
18
- # You should have received a copy of the GNU Library General Public
19
- # License along with this program; if not, write to the Free Software
20
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
21
24
  # ****************************************************************************
22
25
  #
23
26
  # Phone: parse phone numbers
rsclib/TeX_CSV_Writer.py CHANGED
@@ -4,19 +4,23 @@
4
4
  # Web: http://www.runtux.com Email: office@runtux.com
5
5
  # All rights reserved
6
6
  # ****************************************************************************
7
- # This library is free software; you can redistribute it and/or modify
8
- # it under the terms of the GNU Library General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
11
13
  #
12
- # This program is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
16
  #
17
- # You should have received a copy of the GNU Library General Public
18
- # License along with this program; if not, write to the Free Software
19
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
20
24
  # ****************************************************************************
21
25
 
22
26
  from __future__ import unicode_literals
rsclib/Version.py CHANGED
@@ -1 +1 @@
1
- VERSION="0.66"
1
+ VERSION="0.68"
rsclib/ast_call.py CHANGED
@@ -4,19 +4,23 @@
4
4
  # Web: http://www.runtux.com Email: office@runtux.com
5
5
  # All rights reserved
6
6
  # ****************************************************************************
7
- # This library is free software; you can redistribute it and/or modify
8
- # it under the terms of the GNU Library General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
11
13
  #
12
- # This program is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
16
  #
17
- # You should have received a copy of the GNU Library General Public
18
- # License along with this program; if not, write to the Free Software
19
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
20
24
  # ****************************************************************************
21
25
 
22
26
  from __future__ import print_function
@@ -823,7 +827,7 @@ class Call_Manager (object) :
823
827
  """ Simple call manager for asterisk.
824
828
  By default it's suggested you use something like the following
825
829
  in the dialplan::
826
-
830
+
827
831
  [ansage]
828
832
  exten => 1,1,Noop(ansage)
829
833
  exten => 1,n,Wait(${CALL_DELAY})
rsclib/ast_cdr.py CHANGED
@@ -4,19 +4,23 @@
4
4
  # Web: http://www.runtux.com Email: office@runtux.com
5
5
  # All rights reserved
6
6
  # ****************************************************************************
7
- # This library is free software; you can redistribute it and/or modify
8
- # it under the terms of the GNU Library General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
11
13
  #
12
- # This program is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
16
  #
17
- # You should have received a copy of the GNU Library General Public
18
- # License along with this program; if not, write to the Free Software
19
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
20
24
  # ****************************************************************************
21
25
 
22
26
  from __future__ import print_function
@@ -155,7 +159,7 @@ class CDR_Parser (autosuper) :
155
159
  , ('uniqueid' , "Unique Channel Identifier")
156
160
  , ('userfield' , "A user-defined field, maximum 255 characters")
157
161
  )
158
-
162
+
159
163
  def __init__ (self, * files) :
160
164
  self.files = files
161
165
  # end def __init__
rsclib/ast_probe.py CHANGED
@@ -4,19 +4,23 @@
4
4
  # Web: http://www.runtux.com Email: office@runtux.com
5
5
  # All rights reserved
6
6
  # ****************************************************************************
7
- # This library is free software; you can redistribute it and/or modify
8
- # it under the terms of the GNU Library General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
11
13
  #
12
- # This program is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
16
  #
17
- # You should have received a copy of the GNU Library General Public
18
- # License along with this program; if not, write to the Free Software
19
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
20
24
  # ****************************************************************************
21
25
 
22
26
  from __future__ import print_function
rsclib/base_pickler.py CHANGED
@@ -4,19 +4,23 @@
4
4
  # Web: http://www.runtux.com Email: office@runtux.com
5
5
  # All rights reserved
6
6
  # ****************************************************************************
7
- # This library is free software; you can redistribute it and/or modify
8
- # it under the terms of the GNU Library General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
11
13
  #
12
- # This program is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
16
  #
17
- # You should have received a copy of the GNU Library General Public
18
- # License along with this program; if not, write to the Free Software
19
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
20
24
  # ****************************************************************************
21
25
 
22
26
  from rsclib.autosuper import autosuper
rsclib/bero.py CHANGED
@@ -4,19 +4,23 @@
4
4
  # Web: http://www.runtux.com Email: office@runtux.com
5
5
  # All rights reserved
6
6
  # ****************************************************************************
7
- # This library is free software; you can redistribute it and/or modify
8
- # it under the terms of the GNU Library General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
11
13
  #
12
- # This program is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
16
  #
17
- # You should have received a copy of the GNU Library General Public
18
- # License along with this program; if not, write to the Free Software
19
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
20
24
  # ****************************************************************************
21
25
 
22
26
  from __future__ import print_function
rsclib/capacitance.py CHANGED
@@ -4,19 +4,23 @@
4
4
  # Web: http://www.runtux.com Email: office@runtux.com
5
5
  # All rights reserved
6
6
  # ****************************************************************************
7
- # This library is free software; you can redistribute it and/or modify
8
- # it under the terms of the GNU Library General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
11
13
  #
12
- # This program is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
16
  #
17
- # You should have received a copy of the GNU Library General Public
18
- # License along with this program; if not, write to the Free Software
19
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
20
24
  # ****************************************************************************
21
25
 
22
26
  from __future__ import print_function
rsclib/crm.py CHANGED
@@ -4,19 +4,23 @@
4
4
  # Web: http://www.runtux.com Email: office@runtux.com
5
5
  # All rights reserved
6
6
  # ****************************************************************************
7
- # This library is free software; you can redistribute it and/or modify
8
- # it under the terms of the GNU Library General Public License as
9
- # published by the Free Software Foundation; either version 2 of the
10
- # License, or (at your option) any later version.
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
11
13
  #
12
- # This program is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU Library General Public License for more details.
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
16
  #
17
- # You should have received a copy of the GNU Library General Public
18
- # License along with this program; if not, write to the Free Software
19
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ # SOFTWARE.
20
24
  # ****************************************************************************
21
25
 
22
26
  from __future__ import print_function