From 4037b601aa1d5372c2daf7ba1f2f9679aa968bb7 Mon Sep 17 00:00:00 2001 From: Kamal Curi Date: Thu, 30 Dec 2021 15:53:59 -0300 Subject: [PATCH 1/2] FIX: Version 1.03 --- .gitignore | 1 + CHANGELOG | 6 ++- steelbox.py | 103 +++++++++++++++++++++++++++++----------------------- steelbox.sh | 4 +- 4 files changed, 65 insertions(+), 49 deletions(-) diff --git a/.gitignore b/.gitignore index bb4465b..e0ac906 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ pasfile.csv poptest.sh what.sh .pasfile.csv +pasfile.csv.gpg diff --git a/CHANGELOG b/CHANGELOG index da40960..a51e70a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -30,4 +30,8 @@ · Major bug fixes: · Fixed 'help command' bug · Fixed 'password modify' bug - · Fixed bug with window resizing \ No newline at end of file + · Fixed bug with window resizing +- 1.03 + · Added --no-symkey-cache to gpg, you will now have to type your password everytime you open Steelbox + · Major bug fixes: + Fixed resising terminal bug, and made data handling logic work. \ No newline at end of file diff --git a/steelbox.py b/steelbox.py index cd61cee..e7272e3 100644 --- a/steelbox.py +++ b/steelbox.py @@ -38,8 +38,7 @@ curses.cbreak() stdscr.keypad(True) stdscr.clear() -def steelbox(): - reloadFiles() +def init(): # Initializes the main window global mainwin mainwin = curses.newwin(TERM_LINES -1, TERM_COLS, 0, 0) @@ -53,6 +52,13 @@ def steelbox(): statuswin.border() cleanWins() + + +# Main function +def steelbox(): + reloadFiles() + init() + while True: termGlobals() reloadFiles() @@ -60,6 +66,46 @@ def steelbox(): stdscr.move(0, 0) command() +# Displays the items on the screen properly +def displayItems(): + cleanWins() + global NROWS + global ITEM_CURSOR + # Creates a name list + global displayList + displayList = [] + # Appends the names in the CSV to display on the main window + for ps_name in files: + displayList.append(ps_name['service'][:15]) + + # Reset global necessities + LINE = 0 + COLUMN = 0 + currItem = 0 + NROWS = 0 + global highOpt + highOpt = () + # Defines what to display + startDisplay = (CURR_PAGE-1)*MAX_ITEMS + stopDisplay = CURR_PAGE*MAX_ITEMS + + for item in displayList[startDisplay:stopDisplay]: + # If the item is the one with the cursor, highlight it + if currItem == ITEM_CURSOR: + mode = curses.A_REVERSE + highOpt = mainwin.getyx() + else: + mode = curses.A_NORMAL + mainwin.addstr(1 + LINE, 1 + COLUMN, item, mode) + LINE+=1 + currItem+=1 + if LINE >= WINLIMIT: + LINE = 0 + COLUMN+=16 + NROWS+=1 + STATUS_MESSAGE = "(n)ew,(d|el),(c)opy,(m)odify,(h)elp,(q)uit" + displayStatus(STATUS_MESSAGE) + mainwin.refresh() # Defines global variables def globals(): @@ -190,6 +236,14 @@ def command(): rwin() elif c == ord('h'): sbhelp() + # This avoids the program crashing when resizing the terminal + elif c == curses.KEY_RESIZE: + y, x = stdscr.getmaxyx() + stdscr.clear() + curses.resize_term(y, x) + cleanWins() + globals() + init() def newFile(): @@ -371,6 +425,7 @@ def copy(): # Cleans the windows def cleanWins(): + stdscr.clear() mainwin.clear() statuswin.clear() mainwin.border() @@ -379,50 +434,6 @@ def cleanWins(): mainwin.refresh() statuswin.refresh() - - -# Displays the items on the screen properly -def displayItems(): - cleanWins() - global NROWS - global ITEM_CURSOR - # Creates a name list - global displayList - displayList = [] - # Appends the names in the CSV to display on the main window - for ps_name in files: - displayList.append(ps_name['service'][:15]) - - # Reset global necessities - LINE = 0 - COLUMN = 0 - currItem = 0 - NROWS = 0 - global highOpt - highOpt = () - # Defines what to display - startDisplay = (CURR_PAGE-1)*MAX_ITEMS - stopDisplay = CURR_PAGE*MAX_ITEMS - - for item in displayList[startDisplay:stopDisplay]: - # If the item is the one with the cursor, highlight it - if currItem == ITEM_CURSOR: - mode = curses.A_REVERSE - highOpt = mainwin.getyx() - else: - mode = curses.A_NORMAL - mainwin.addstr(1 + LINE, 1 + COLUMN, item, mode) - LINE+=1 - currItem+=1 - if LINE >= WINLIMIT: - LINE = 0 - COLUMN+=16 - NROWS+=1 - STATUS_MESSAGE = "(n)ew,(d|el),(c)opy,(m)odify,(h)elp,(q)uit" - displayStatus(STATUS_MESSAGE) - mainwin.refresh() - - # Displays on the status window def displayStatus(msg): statuswin.border() diff --git a/steelbox.sh b/steelbox.sh index 2077a31..2717992 100755 --- a/steelbox.sh +++ b/steelbox.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -version="1.02" +version="1.03" echo Steelbox V$version @@ -23,7 +23,7 @@ fi python3 /opt/steelbox.py $version -gpg -c --cipher-algo AES256 $HOME/.pasfile.csv +gpg -c --no-symkey-cache --cipher-algo AES256 $HOME/.pasfile.csv if [ $? -gt 0 ] then From 9d644b4eada560fa9355e7bc182ac4c8c657cfad Mon Sep 17 00:00:00 2001 From: Kamal Curi Date: Thu, 30 Dec 2021 19:11:59 -0300 Subject: [PATCH 2/2] FIX:Version 1.03 --- .gitignore | 16 + CHANGELOG | 1 + doc/MANUAL.pdf | Bin 0 -> 228245 bytes doc/MANUAL.tex | 1272 +++++++++++++++++++ doc/MANUAL.txt | 414 +++++++ doc/manual/MANUAL.css | 142 +++ doc/manual/MANUAL.html | 2673 ++++++++++++++++++++++++++++++++++++++++ 7 files changed, 4518 insertions(+) create mode 100644 doc/MANUAL.pdf create mode 100644 doc/MANUAL.tex create mode 100644 doc/MANUAL.txt create mode 100644 doc/manual/MANUAL.css create mode 100644 doc/manual/MANUAL.html diff --git a/.gitignore b/.gitignore index e0ac906..7edc1d2 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,19 @@ poptest.sh what.sh .pasfile.csv pasfile.csv.gpg +MANUAL.aux +MANUAL.fdb_latexmk +MANUAL.fls +MANUAL.log +MANUAL.synctex.gz +MANUAL.out +doc/MANUAL.toc +doc/MANUAL.4ct +doc/MANUAL.4tc +doc/MANUAL.dvi +doc/MANUAL.idv +doc/MANUAL.lg +doc/MANUAL.tmp +doc/MANUAL.xref +doc/MANUAL.html +doc/MANUAL.css diff --git a/CHANGELOG b/CHANGELOG index a51e70a..e4f3f89 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -33,5 +33,6 @@ · Fixed bug with window resizing - 1.03 · Added --no-symkey-cache to gpg, you will now have to type your password everytime you open Steelbox + · Added a user manual, both in PDF and HTML, and plain text, it is accompanied by its TEX source. · Major bug fixes: Fixed resising terminal bug, and made data handling logic work. \ No newline at end of file diff --git a/doc/MANUAL.pdf b/doc/MANUAL.pdf new file mode 100644 index 0000000000000000000000000000000000000000..95aadd32f382adf95411f467b5423d61e8e56471 GIT binary patch literal 228245 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

PjmO$nXI6~Tqj6s_%6lvGY&_^_e!{%yetKPP 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�SpTv;+G+Xfq-qc-ox>|c;>q=b-0 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 + + Copyright (C) + + 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 . + \end{verbatim} + } + + Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short + notice like this when it starts in an interactive mode: + + {\footnotesize + \begin{verbatim} + Copyright (C) + + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + \end{verbatim} + } + + The hypothetical commands {\tt show w} and {\tt show c} should show + the appropriate + parts of the General Public License. Of course, your program's commands + might be different; for a GUI interface, you would use an ``about box''. + + You should also get your employer (if you work as a programmer) or + school, if any, to sign a ``copyright disclaimer'' for the program, if + necessary. For more information on this, and how to apply and follow + the GNU GPL, see \texttt{https://www.gnu.org/licenses/}. + + The GNU General Public License does not permit incorporating your + program into proprietary programs. If your program is a subroutine + library, you may consider it more useful to permit linking proprietary + applications with the library. If this is what you want to do, use + the GNU Lesser General Public License instead of this License. But + first, please read \texttt{https://www.gnu.org/licenses/why-not-lgpl.html}. + + \end{enumerate} + \subsection{pyperclip} + Copyright (c) 2014, Al Sweigart\\ + All rights reserved.\\ + + Redistribution and use in source and binary forms, with or without\\ + modification, are permitted provided that the following conditions are met:\\ +\\ + * Redistributions of source code must retain the above copyright notice, this\\ + list of conditions and the following disclaimer.\\ +\\ + * Redistributions in binary form must reproduce the above copyright notice,\\ + this list of conditions and the following disclaimer in the documentation\\ + and/or other materials provided with the distribution.\\ +\\ + * Neither the name of the {organization} nor the names of its\\ + contributors may be used to endorse or promote products derived from\\ + this software without specific prior written permission.\\ +\\ + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"\\ + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\\ + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\\ + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\\ + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\\ + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\\ + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\\ + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\\ + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\\ + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\\ + \subsection{Steelbox} + \begin{center} + {\parindent 0in + + Copyright \copyright\ 1989, 1991 Free Software Foundation, Inc. + + \bigskip + + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + + \bigskip + + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + } + \end{center} + + \begin{center} + {\bf\large Preamble} + \end{center} + + + The licenses for most software are designed to take away your freedom to + share and change it. By contrast, the GNU General Public License is + intended to guarantee your freedom to share and change free software---to + make sure the software is free for all its users. This General Public + License applies to most of the Free Software Foundation's software and to + any other program whose authors commit to using it. (Some other Free + Software Foundation software is covered by the GNU Library General Public + License instead.) You can apply it to your programs, too. + + When we speak of free software, we are referring to freedom, not price. + Our General Public Licenses are designed to make sure that you have the + freedom to distribute copies of free software (and charge for this service + if you wish), that you receive source code or can get it if you want it, + that you can change the software or use pieces of it in new free programs; + and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid anyone to + deny you these rights or to ask you to surrender the rights. These + restrictions translate to certain responsibilities for you if you + distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether gratis or + for a fee, you must give the recipients all the rights that you have. You + must make sure that they, too, receive or can get the source code. And + you must show them these terms so they know their rights. + + We protect your rights with two steps: (1) copyright the software, and (2) + offer you this license which gives you legal permission to copy, + distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain that + everyone understands that there is no warranty for this free software. If + the software is modified by someone else and passed on, we want its + recipients to know that what they have is not the original, so that any + problems introduced by others will not reflect on the original authors' + reputations. + + Finally, any free program is threatened constantly by software patents. + We wish to avoid the danger that redistributors of a free program will + individually obtain patent licenses, in effect making the program + proprietary. To prevent this, we have made it clear that any patent must + be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and + modification follow. + + \begin{center} + {\Large \sc Terms and Conditions For Copying, Distribution and + Modification} + \end{center} + + + %\renewcommand{\theenumi}{\alpha{enumi}} + \begin{enumerate} + + \addtocounter{enumi}{-1} + + \item + + This License applies to any program or other work which contains a notice + placed by the copyright holder saying it may be distributed under the + terms of this General Public License. The ``Program'', below, refers to + any such program or work, and a ``work based on the Program'' means either + the Program or any derivative work under copyright law: that is to say, a + work containing the Program or a portion of it, either verbatim or with + modifications and/or translated into another language. (Hereinafter, + translation is included without limitation in the term ``modification''.) + Each licensee is addressed as ``you''. + + Activities other than copying, distribution and modification are not + covered by this License; they are outside its scope. The act of + running the Program is not restricted, and the output from the Program + is covered only if its contents constitute a work based on the + Program (independent of having been made by running the Program). + Whether that is true depends on what the Program does. + + \item You may copy and distribute verbatim copies of the Program's source + code as you receive it, in any medium, provided that you conspicuously + and appropriately publish on each copy an appropriate copyright notice + and disclaimer of warranty; keep intact all the notices that refer to + this License and to the absence of any warranty; and give any other + recipients of the Program a copy of this License along with the Program. + + You may charge a fee for the physical act of transferring a copy, and you + may at your option offer warranty protection in exchange for a fee. + + \item + + You may modify your copy or copies of the Program or any portion + of it, thus forming a work based on the Program, and copy and + distribute such modifications or work under the terms of Section 1 + above, provided that you also meet all of these conditions: + + \begin{enumerate} + + \item + + You must cause the modified files to carry prominent notices stating that + you changed the files and the date of any change. + + \item + + You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + \item + If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + + \end{enumerate} + + + These requirements apply to the modified work as a whole. If + identifiable sections of that work are not derived from the Program, + and can be reasonably considered independent and separate works in + themselves, then this License, and its terms, do not apply to those + sections when you distribute them as separate works. But when you + distribute the same sections as part of a whole which is a work based + on the Program, the distribution of the whole must be on the terms of + this License, whose permissions for other licensees extend to the + entire whole, and thus to each and every part regardless of who wrote it. + + Thus, it is not the intent of this section to claim rights or contest + your rights to work written entirely by you; rather, the intent is to + exercise the right to control the distribution of derivative or + collective works based on the Program. + + In addition, mere aggregation of another work not based on the Program + with the Program (or with a work based on the Program) on a volume of + a storage or distribution medium does not bring the other work under + the scope of this License. + + \item + You may copy and distribute the Program (or a work based on it, + under Section 2) in object code or executable form under the terms of + Sections 1 and 2 above provided that you also do one of the following: + + \begin{enumerate} + + \item + + Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + \item + + Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + \item + + Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + + \end{enumerate} + + + The source code for a work means the preferred form of the work for + making modifications to it. For an executable work, complete source + code means all the source code for all modules it contains, plus any + associated interface definition files, plus the scripts used to + control compilation and installation of the executable. However, as a + special exception, the source code distributed need not include + anything that is normally distributed (in either source or binary + form) with the major components (compiler, kernel, and so on) of the + operating system on which the executable runs, unless that component + itself accompanies the executable. + + If distribution of executable or object code is made by offering + access to copy from a designated place, then offering equivalent + access to copy the source code from the same place counts as + distribution of the source code, even though third parties are not + compelled to copy the source along with the object code. + + \item + You may not copy, modify, sublicense, or distribute the Program + except as expressly provided under this License. Any attempt + otherwise to copy, modify, sublicense or distribute the Program is + void, and will automatically terminate your rights under this License. + However, parties who have received copies, or rights, from you under + this License will not have their licenses terminated so long as such + parties remain in full compliance. + + \item + You are not required to accept this License, since you have not + signed it. However, nothing else grants you permission to modify or + distribute the Program or its derivative works. These actions are + prohibited by law if you do not accept this License. Therefore, by + modifying or distributing the Program (or any work based on the + Program), you indicate your acceptance of this License to do so, and + all its terms and conditions for copying, distributing or modifying + the Program or works based on it. + + \item + Each time you redistribute the Program (or any work based on the + Program), the recipient automatically receives a license from the + original licensor to copy, distribute or modify the Program subject to + these terms and conditions. You may not impose any further + restrictions on the recipients' exercise of the rights granted herein. + You are not responsible for enforcing compliance by third parties to + this License. + + \item + If, as a consequence of a court judgment or allegation of patent + infringement or for any other reason (not limited to patent issues), + conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot + distribute so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you + may not distribute the Program at all. For example, if a patent + license would not permit royalty-free redistribution of the Program by + all those who receive copies directly or indirectly through you, then + the only way you could satisfy both it and this License would be to + refrain entirely from distribution of the Program. + + If any portion of this section is held invalid or unenforceable under + any particular circumstance, the balance of the section is intended to + apply and the section as a whole is intended to apply in other + circumstances. + + It is not the purpose of this section to induce you to infringe any + patents or other property right claims or to contest validity of any + such claims; this section has the sole purpose of protecting the + integrity of the free software distribution system, which is + implemented by public license practices. Many people have made + generous contributions to the wide range of software distributed + through that system in reliance on consistent application of that + system; it is up to the author/donor to decide if he or she is willing + to distribute software through any other system and a licensee cannot + impose that choice. + + This section is intended to make thoroughly clear what is believed to + be a consequence of the rest of this License. + + \item + If the distribution and/or use of the Program is restricted in + certain countries either by patents or by copyrighted interfaces, the + original copyright holder who places the Program under this License + may add an explicit geographical distribution limitation excluding + those countries, so that distribution is permitted only in or among + countries not thus excluded. In such case, this License incorporates + the limitation as if written in the body of this License. + + \item + The Free Software Foundation may publish revised and/or new versions + of the General Public License from time to time. Such new versions will + be similar in spirit to the present version, but may differ in detail to + address new problems or concerns. + + Each version is given a distinguishing version number. If the Program + specifies a version number of this License which applies to it and ``any + later version'', you have the option of following the terms and conditions + either of that version or of any later version published by the Free + Software Foundation. If the Program does not specify a version number of + this License, you may choose any version ever published by the Free Software + Foundation. + + \item + If you wish to incorporate parts of the Program into other free + programs whose distribution conditions are different, write to the author + to ask for permission. For software which is copyrighted by the Free + Software Foundation, write to the Free Software Foundation; we sometimes + make exceptions for this. Our decision will be guided by the two goals + of preserving the free status of all derivatives of our free software and + of promoting the sharing and reuse of software generally. + + \begin{center} + {\Large\sc + No Warranty + } + \end{center} + + \item + {\sc Because the program is licensed free of charge, there is no warranty + for the program, to the extent permitted by applicable law. Except when + otherwise stated in writing the copyright holders and/or other parties + provide the program ``as is'' without warranty of any kind, either expressed + or implied, including, but not limited to, the implied warranties of + merchantability and fitness for a particular purpose. The entire risk as + to the quality and performance of the program is with you. Should the + program prove defective, you assume the cost of all necessary servicing, + repair or correction.} + + \item + {\sc In no event unless required by applicable law or agreed to in writing + will any copyright holder, or any other party who may modify and/or + redistribute the program as permitted above, be liable to you for damages, + including any general, special, incidental or consequential damages arising + out of the use or inability to use the program (including but not limited + to loss of data or data being rendered inaccurate or losses sustained by + you or third parties or a failure of the program to operate with any other + programs), even if such holder or other party has been advised of the + possibility of such damages.} + + \end{enumerate} + + + \begin{center} + {\Large\sc End of Terms and Conditions} + \end{center} + + + \pagebreak[2] + + \section*{Appendix: How to Apply These Terms to Your New Programs} + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these + terms. + + To do so, attach the following notices to the program. It is safest to + attach them to the start of each source file to most effectively convey + the exclusion of warranty; and each file should have at least the + ``copyright'' line and a pointer to where the full notice is found. + + \begin{quote} + one line to give the program's name and a brief idea of what it does. \\ + Copyright (C) yyyy name of author \\ + + 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 2 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, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + \end{quote} + + Also add information on how to contact you by electronic and paper mail. + + If the program is interactive, make it output a short notice like this + when it starts in an interactive mode: + + \begin{quote} + Gnomovision version 69, Copyright (C) yyyy name of author \\ + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. \\ + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + \end{quote} + + + The hypothetical commands {\tt show w} and {\tt show c} should show the + appropriate parts of the General Public License. Of course, the commands + you use may be called something other than {\tt show w} and {\tt show c}; + they could even be mouse-clicks or menu items---whatever suits your + program. + + You should also get your employer (if you work as a programmer) or your + school, if any, to sign a ``copyright disclaimer'' for the program, if + necessary. Here is a sample; alter the names: + + \begin{quote} + Yoyodyne, Inc., hereby disclaims all copyright interest in the program \\ + `Gnomovision' (which makes passes at compilers) written by James Hacker. \\ + + signature of Ty Coon, 1 April 1989 \\ + Ty Coon, President of Vice + \end{quote} + + + This General Public License does not permit incorporating your program + into proprietary programs. If your program is a subroutine library, you + may consider it more useful to permit linking proprietary applications + with the library. If this is what you want to do, use the GNU Library + General Public License instead of this License. + +\end{document} \ No newline at end of file diff --git a/doc/MANUAL.txt b/doc/MANUAL.txt new file mode 100644 index 0000000..8e2221b --- /dev/null +++ b/doc/MANUAL.txt @@ -0,0 +1,414 @@ +Steelbox v1.03 +User Manual +Kamal ’brejela’ Curi + +December 30, 2021 +Contents + 1 What is Steelbox + 2 How to install Steelbox + 2.1 Steelbox dependencies + 2.2 How to uninstall steelbox + 2.3 How to run Steelbox + 3 How to use Steelbox + 3.1 Navigate through passwords + 3.2 View a password + 3.3 Create a new password + 3.4 Modify a password + 3.5 Copy the password to your clipboard + 3.6 Delete a password + 3.7 Generate a random string + 3.8 Open the help window + 3.9 Quit steelbox + 4 F.A.Q. + 5 Licenses + 5.1 GnuPG + 5.2 pyperclip + 5.3 Steelbox +1 What is Steelbox +Steelbox is a password manager that runs under your terminal with curses, it uses GnuPG for encryption. +2 How to install Steelbox +Running the install script install.sh will copy all necessary files to /opt, create a link in /usr/bin, and create your empty, encrypted, password file. IMPORTANT: Do not run install.sh with sudo. Running the install script with sudo will result in failure to install (The GPG agent must not be run with root, and so the installation fails), the script will ask for your password when needed. +If you’re upgrading steelbox, your password file won’t be changed + +2.1 Steelbox dependencies +Steelbox is written in Python, it will run under any interpreter with a python version newer than 3.10. +Steelbox uses the python module pyperclip, and xclip or xsel for clipboard support, it has not been tested on wayland and as such, I don’t know whether or not clipboard support works in it. +You can (and are encouraged) to install pyperclip using pip, with +pip3 install pyperclip +And while it is not completely necessary, it is recommended running Steelbox on st or Alacritty for better experience. + +2.2 How to uninstall steelbox +Execute the install script as install.sh remove, this will remove all steelbox files from /opt, and the link in /usr/bin. The script will not remove your encrypted password file. It’ll stay in $HOME/.pasfile.csv.gpg. If you reinstall steelbox and don’t remove your password file, it will not be changed and will be used as the user’s password file. + +2.3 How to run Steelbox +Just run steelbox from your terminal, GPG will ask for your password and attempt to decrypt your file. If you mistype your password or quit GnuPG’s password prompt, your password file will not be decrypted and you won’t have access to your passwords. Do not lose your main password. There is no way to recover your passwords without it. +To run steelbox, your terminal must be bigger than 20 lines and 80 columns. If your terminal is not big enough, steelbox will quit with the message ”ERROR: Your terminal is too small!” and you will be asked to reencrypt your password file. +3 How to use Steelbox +After correctly entering your password, you will first see the main window, and the status/help bar at the bottom, this window will list the services for which you have a password saved. You can: + +Navigate through your passwords + +View a password (ENTER or E) + +Create a new password (N or F4) + +Modify an existing password (M or F5) + +Copy the password to your clipboard (C or F3) + +Delete a password (D or Delete) + +Generate a random string (R) + +Open the help window (H) + +Quit Steelbox (Q) + +3.1 Navigate through passwords +You can move around the main window with the directional keys. If you have more passwords than can fit on the screen, your list will have multiple pages. You can change your current page with PageUp/F2 and PageDown/F1. +3.2 View a password +To view a password, press ENTER. The view password window will open. You can modify, copy or delete the password in the view password window. +3.3 Create a new password +To create a new password, press N, the new password window will open, first type the service name (SRVC), then the username (USER), then the password (PSWD). To cancel the addition of a new password, lave either the SRVC or the USER fields empty . Press ENTER to move to the next field +3.3.1 Using random strings as passwords +To create a random password for your service, leave the PSWD field empty. A random string will be given to it as a password. +3.4 Modify a password +To modify a password, press M, the modify password window will open, first edit the service name, then the username, then the password. Leaving the PSWD field empty in the modify window will give it a random string. You can navigate through the currently selected field with: + +CTRL+A to go to the far left of the field + +CTRL+E to go to the far right of the field + +CTRL+B to move the cursor once to the left + +CTRL+F to move the cursor once to the right + +CTRL+H to remove one character (Backspace) + +CTRL+D to remove highlghted character (Delete) + +CTRL+O to clear the field + +You can see these commands with in the help window. +3.5 Copy the password to your clipboard +To copy a highlighted service’s password, press C. You can do this in the main window or in the View Password window. +3.6 Delete a password +To delete a password, press D. You can do this in the main window or in the View Password window. Steelbox will prompt you for confirmation, pressing anything but Y will not remove your password. +3.7 Generate a random string +If you just wish to generate a random string, you can press R. It will open a window with a random string in it. +3.8 Open the help window +To open the help window, press H. The help window has information on steelbox. +3.9 Quit steelbox +To quit steelbox, press Q from the main window. Steelbox will close its windows and you’ll be asked to lock your password file with a password again. If you quit the GPG password prompt, your password file will not be encrypted and will be visible in $HOME/pasfile.csv. Opening steelbox again will throw a warning saying that no encrypted password file could be found, it will then try to open the unencrypted file. Quitting steelbox and entering a password solves this problem. +4 F.A.Q. +Q: Why do I need to put my password when I enter *and* when I quit steelbox +A: To avoid saving the main password in the computer. Considering entering your password when opening still box as ”unlocking” your box, and typing it when quitting as ”locking” it back. +Q: Can I add a password with no service/user name? +A: Yes. You first create a password with a dummy entry in whichever field you wish to leave empty, and then modify it, leaving it empty. +5 Licenses +5.1 GnuPG +Copyright © 2007 Free Software Foundation, Inc. https://fsf.org/ +Everyone is permitted to copy and distribute verbatim copies of this +license document, but changing it is not allowed. + +Preamble +The GNU General Public License is a free, copyleft license for software and other kinds of works. +The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program–to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. +To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. +For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. +Developers that use the GNU GPL protect your rights wit two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. +For the developers’ and authors’ protection, the GPL clearly explains that there is no warranty for this free software. For both users’ and authors’ sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. +Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users’ freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. +Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. +The precise terms and conditions for copying, distribution and modification follow. + +Terms and Conditions + +Definitions. +“This License” refers to version 3 of the GNU General Public License. +“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. +“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. +To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. +A “covered work” means either the unmodified Program or a work based on the Program. +To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. +To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. +An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. + +Source Code. +The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. +A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. +The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. +The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work’s System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. +The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. +The Corresponding Source for a work in source code form is that same work. + +Basic Permissions. +All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. +You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. +Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + +Protecting Users’ Legal Rights From Anti-Circumvention Law. +No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. +When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work’s users, your or third parties’ legal rights to forbid circumvention of technological measures. + +Conveying Verbatim Copies. +You may convey verbatim copies of the Program’s source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. +You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. + +Conveying Modified Source Versions. +You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: + +The work must carry prominent notices stating that you modified it, and giving a relevant date. + +The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. + +You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. + +If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation’s users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. + +Conveying Non-Source Forms. +You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: + +Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. + +Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. + +Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. + +Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. + +Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. +A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. +“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. +If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). +The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. +Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. + +Additional Terms. +“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. +When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. +Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: + +Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or + +Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or + +Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or + +Limiting the use for publicity purposes of names of licensors or authors of the material; or + +Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or + +Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. +If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. +Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. + +Termination. +You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). +However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. +Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. +Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. + +Acceptance Not Required for Having Copies. +You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. + +Automatic Licensing of Downstream Recipients. +Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. +An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party’s predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. +You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. + +Patents. +A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor’s “contributor version”. +A contributor’s “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. +Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor’s essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. +In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. +If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient’s use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. +If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. +A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. +Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. + +No Surrender of Others’ Freedom. +If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. + +Use with the GNU Affero General Public License. +Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. + +Revised Versions of this License. +The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. +Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. +If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy’s public statement of acceptance of a version permanently authorizes you to choose that version for the Program. +Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. + +Disclaimer of Warranty. +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +Limitation of Liability. +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +Interpretation of Sections 15 and 16. +If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. + +End of Terms and Conditions +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found. + + + + Copyright (C) + + 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 . + +Also add information on how to contact you by electronic and paper mail. +If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: + + Copyright (C) + + This program comes with ABSOLUTELY NO WARRANTY; for details type ‘show w’. + This is free software, and you are welcome to redistribute it + under certain conditions; type ‘show c’ for details. + +The hypothetical commands show w and show c should show the appropriate parts of the General Public License. Of course, your program’s commands might be different; for a GUI interface, you would use an “about box”. +You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see https://www.gnu.org/licenses/. +The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read https://www.gnu.org/licenses/why-not-lgpl.html. + +5.2 pyperclip +Copyright (c) 2014, Al Sweigart +All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + +Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation +and/or other materials provided with the distribution. + +Neither the name of the organization nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ”AS IS” +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +5.3 Steelbox +Copyright © 1989, 1991 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software—to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation’s software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. +Also, for each author’s protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors’ reputations. +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone’s free use or not licensed at all. +The precise terms and conditions for copying, distribution and modification follow. + +Terms and Conditions For Copying, Distribution and Modification + +This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The “Program”, below, refers to any such program or work, and a “work based on the Program” means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term “modification”.) Each licensee is addressed as “you”. +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +You may copy and distribute verbatim copies of the Program’s source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: +You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: +Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients’ exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and “any later version”, you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +No Warranty + +Because the program is licensed free of charge, there is no warranty for the program, to the extent permitted by applicable law. Except when otherwise stated in writing the copyright holders and/or other parties provide the program \as is” without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of the program is with you. Should the program prove defective, you assume the cost of all necessary servicing, repair or correction. + +In no event unless required by applicable law or agreed to in writing will any copyright holder, or any other party who may modify and/or redistribute the program as permitted above, be liable to you for damages, including any general, special, incidental or consequential damages arising out of the use or inability to use the program (including but not limited to loss of data or data being rendered inaccurate or losses sustained by you or third parties or a failure of the program to operate with any other programs), even if such holder or other party has been advised of the possibility of such damages. + +End of Terms and Conditions + +Appendix: How to Apply These Terms to Your New Programs +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found. +one line to give the program’s name and a brief idea of what it does. +Copyright (C) yyyy name of author +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 2 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +Also add information on how to contact you by electronic and paper mail. +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: +Gnomovision version 69, Copyright (C) yyyy name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type ‘show w’. +This is free software, and you are welcome to redistribute it under certain conditions; type ‘show c’ for details. + +The hypothetical commands show w and show c should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than show w and show c; they could even be mouse-clicks or menu items—whatever suits your program. +You should also get your employer (if you work as a programmer) or your school, if any, to sign a “copyright disclaimer” for the program, if necessary. Here is a sample; alter the names: +Yoyodyne, Inc., hereby disclaims all copyright interest in the program +‘Gnomovision’ (which makes passes at compilers) written by James Hacker. +signature of Ty Coon, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License.h diff --git a/doc/manual/MANUAL.css b/doc/manual/MANUAL.css new file mode 100644 index 0000000..c4c4996 --- /dev/null +++ b/doc/manual/MANUAL.css @@ -0,0 +1,142 @@ + +/* start css.sty */ +.cmr-17{font-size:170%;} +.cmbx-12x-x-144{font-size:172%; font-weight: bold;} +.cmbx-12x-x-144{ font-weight: bold;} +.cmbx-12x-x-144{ font-weight: bold;} +.cmbx-12x-x-144{ font-weight: bold;} +.cmr-12{font-size:120%;} +.cmtt-10{font-family: monospace,monospace;} +.cmtt-10{font-family: monospace,monospace;} +.cmbx-10{ font-weight: bold;} +.cmbx-10{ font-weight: bold;} +.cmbx-10{ font-weight: bold;} +.cmbx-10{ font-weight: bold;} +.cmbx-12{font-size:120%; font-weight: bold;} +.cmbx-12{ font-weight: bold;} +.cmbx-12{ font-weight: bold;} +.cmbx-12{ font-weight: bold;} +.tctt-1000{font-family: monospace,monospace;} +.cmr-9{font-size:90%;} +.cmbx-9{font-size:90%; font-weight: bold;} +.cmbx-9{ font-weight: bold;} +.cmbx-9{ font-weight: bold;} +.cmbx-9{ font-weight: bold;} +.cmcsc-10x-x-144{font-size:144%;} +.cmtt-8{font-size:80%;font-family: monospace,monospace;} +.cmtt-8{font-family: monospace,monospace;} +.small-caps{font-variant: small-caps; } +p{margin-top:0;margin-bottom:0} +p.indent{text-indent:0;} +p + p{margin-top:1em;} +p + div, p + pre {margin-top:1em;} +div + p, pre + p {margin-top:1em;} +a { overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; hyphens: auto; } +@media print {div.crosslinks {visibility:hidden;}} +table.tabular{border-collapse: collapse; border-spacing: 0;} +a img { border-top: 0; border-left: 0; border-right: 0; } +center { margin-top:1em; margin-bottom:1em; } +td center { margin-top:0em; margin-bottom:0em; } +.Canvas { position:relative; } +img.math{vertical-align:middle;} +div.par-math-display, div.math-display{text-align:center;} +li p.indent { text-indent: 0em } +li p:first-child{ margin-top:0em; } +li p:last-child, li div:last-child { margin-bottom:0.5em; } +li p:first-child{ margin-bottom:0; } +li p~ul:last-child, li p~ol:last-child{ margin-bottom:0.5em; } +.enumerate1 {list-style-type:decimal;} +.enumerate2 {list-style-type:lower-alpha;} +.enumerate3 {list-style-type:lower-roman;} +.enumerate4 {list-style-type:upper-alpha;} +div.newtheorem { margin-bottom: 2em; margin-top: 2em;} +div.newtheorem .head{font-weight: bold;} +.obeylines-h,.obeylines-v {white-space: nowrap; } +div.obeylines-v p { margin-top:0; margin-bottom:0; } +.overline{ text-decoration:overline; } +.overline img{ border-top: 1px solid black; } +td.displaylines {text-align:center; white-space:nowrap;} +.centerline {text-align:center;} +.rightline {text-align:right;} +pre.verbatim {font-family: monospace,monospace; text-align:left; clear:both; } +.fbox {padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt; } +div.fbox {display:table} +div.center div.fbox {text-align:center; clear:both; padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt; } +div.minipage{width:100%;} +div.center, div.center div.center {text-align: center; margin-left:1em; margin-right:1em;} +div.center div {text-align: left;} +div.flushright, div.flushright div.flushright {text-align: right;} +div.flushright div {text-align: left;} +div.flushleft {text-align: left;} +.underline{ text-decoration:underline; } +.underline img{ border-bottom: 1px solid black; margin-bottom:1pt; } +.framebox-c, .framebox-l, .framebox-r { padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt; } +.framebox-c {text-align:center;} +.framebox-l {text-align:left;} +.framebox-r {text-align:right;} +span.thank-mark{ vertical-align: super } +span.footnote-mark sup.textsuperscript, span.footnote-mark a sup.textsuperscript{ font-size:80%; } +div.tabular, div.center div.tabular {text-align: center; margin-top:0.5em; margin-bottom:0.5em; } +table.tabular td p{margin-top:0em;} +table.tabular {margin-left: auto; margin-right: auto;} +td p:first-child{ margin-top:0em; } +td p:last-child{ margin-bottom:0em; } +div.td00{ margin-left:0pt; margin-right:0pt; } +div.td01{ margin-left:0pt; margin-right:5pt; } +div.td10{ margin-left:5pt; margin-right:0pt; } +div.td11{ margin-left:5pt; margin-right:5pt; } +table[rules] {border-left:solid black 0.4pt; border-right:solid black 0.4pt; } +td.td00{ padding-left:0pt; padding-right:0pt; } +td.td01{ padding-left:0pt; padding-right:5pt; } +td.td10{ padding-left:5pt; padding-right:0pt; } +td.td11{ padding-left:5pt; padding-right:5pt; } +table[rules] {border-left:solid black 0.4pt; border-right:solid black 0.4pt; } +.hline hr, .cline hr{ height : 0px; margin:0px; } +.hline td, .cline td{ padding: 0; } +.hline hr, .cline hr{border:none;border-top:1px solid black;} +.hline {border-top: 1px solid black;} +.tabbing-right {text-align:right;} +div.float, div.figure {margin-left: auto; margin-right: auto;} +div.float img {text-align:center;} +div.figure img {text-align:center;} +.marginpar,.reversemarginpar {width:20%; float:right; text-align:left; margin-left:auto; margin-top:0.5em; font-size:85%; text-decoration:underline;} +.marginpar p,.reversemarginpar p{margin-top:0.4em; margin-bottom:0.4em;} +.reversemarginpar{float:left;} +table.equation {width:100%;} +.equation td{text-align:center; } +td.equation { margin-top:1em; margin-bottom:1em; } +td.equation-label { width:5%; text-align:center; } +td.eqnarray4 { width:5%; white-space: normal; } +td.eqnarray2 { width:5%; } +table.eqnarray-star, table.eqnarray {width:100%;} +div.eqnarray{text-align:center;} +div.array {text-align:center;} +div.pmatrix {text-align:center;} +table.pmatrix {width:100%;} +span.pmatrix img{vertical-align:middle;} +div.pmatrix {text-align:center;} +table.pmatrix {width:100%;} +span.bar-css {text-decoration:overline;} +img.cdots{vertical-align:middle;} +.partToc a, .partToc, .likepartToc a, .likepartToc {line-height: 200%; font-weight:bold; font-size:110%;} +.chapterToc a, .chapterToc, .likechapterToc a, .likechapterToc, .appendixToc a, .appendixToc {line-height: 200%; font-weight:bold;} +.index-item, .index-subitem, .index-subsubitem {display:block} +div.caption {text-indent:-2em; margin-left:3em; margin-right:1em; text-align:left;} +div.caption span.id{font-weight: bold; white-space: nowrap; } +h1.partHead{text-align: center} +p.bibitem { text-indent: -2em; margin-left: 2em; margin-top:0.6em; margin-bottom:0.6em; } +p.bibitem-p { text-indent: 0em; margin-left: 2em; margin-top:0.6em; margin-bottom:0.6em; } +.paragraphHead, .likeparagraphHead { margin-top:2em; font-weight: bold;} +.subparagraphHead, .likesubparagraphHead { font-weight: bold;} +.verse{white-space:nowrap; margin-left:2em} +div.maketitle {text-align:center;} +h2.titleHead{text-align:center;} +div.maketitle{ margin-bottom: 2em; } +div.author, div.date {text-align:center;} +div.thanks{text-align:left; margin-left:10%; font-size:85%; font-style:italic; } +div.author{white-space: nowrap;} +div.abstract p {margin-left:5%; margin-right:5%;} +div.abstract {width:100%;} +.abstracttitle{text-align:center;margin-bottom:1em;} +/* end css.sty */ + diff --git a/doc/manual/MANUAL.html b/doc/manual/MANUAL.html new file mode 100644 index 0000000..a263676 --- /dev/null +++ b/doc/manual/MANUAL.html @@ -0,0 +1,2673 @@ + + +Steelbox v1.03 +User Manual + + + + + + + +

+

Contents

+ + + + +

1 What is Steelbox

+

Steelbox is a password manager that runs under your terminal with curses, it uses +GnuPG for encryption. +

+

2 How to install Steelbox

+

Running the install script install.sh will copy all necessary files to /opt, create a +link in /usr/bin, and create your empty, encrypted, password file. IMPORTANT: +Do not run install.sh with sudo. Running the install script with sudo +will result in failure to install (The GPG agent must not be run with root, +and so the installation fails), the script will ask for your password when +needed.
If you’re upgrading steelbox, your password file won’t be changed +

2.1 Steelbox dependencies

+

Steelbox is written in Python, it will run under any interpreter with a python version +newer than 3.10.
Steelbox uses the python module pyperclip, and xclip or xsel for clipboard support, it +has not been tested on wayland and as such, I don’t know whether or not clipboard +support works in it.
You can (and are encouraged) to install pyperclip using pip, with
pip3 install pyperclip
And while it is not completely necessary, it is recommended running Steelbox on st +or Alacritty for better experience. +

2.2 How to uninstall steelbox

+

Execute the install script as install.sh remove, this will remove all steelbox files +from /opt, and the link in /usr/bin. The script will not remove your encrypted +password file. It’ll stay in $HOME/.pasfile.csv.gpg. If you reinstall steelbox and +don’t remove your password file, it will not be changed and will be used as the user’s +password file. +

2.3 How to run Steelbox

+

Just run steelbox from your terminal, GPG will ask for your password and attempt +to decrypt your file. If you mistype your password or quit GnuPG’s password +prompt, your password file will not be decrypted and you won’t have access to your +passwords. Do not lose your main password. There is no way to recover your +passwords without it.
To run steelbox, your terminal must be bigger than 20 lines and 80 columns. If your + + + +terminal is not big enough, steelbox will quit with the message ”ERROR: Your +terminal is too small!” and you will be asked to reencrypt your password +file. +

+

3 How to use Steelbox

+

After correctly entering your password, you will first see the main window, and the +status/help bar at the bottom, this window will list the services for which you have a +password saved. You can: +

    +
  • +

    Navigate through your passwords +

  • +
  • +

    View a password (ENTER or E) +

  • +
  • +

    Create a new password (N or F4) +

  • +
  • +

    Modify an existing password (M or F5) +

  • +
  • +

    Copy the password to your clipboard (C or F3) +

  • +
  • +

    Delete a password (D or Delete) +

  • +
  • +

    Generate a random string (R) +

  • +
  • +

    Open the help window (H) +

  • +
  • +

    Quit Steelbox (Q)

+ + + +

+

3.1 Navigate through passwords

+

You can move around the main window with the directional keys. If you have more +passwords than can fit on the screen, your list will have multiple pages. You can +change your current page with PageUp/F2 and PageDown/F1. +

+

3.2 View a password

+

To view a password, press ENTER. The view password window will open. You can +modify, copy or delete the password in the view password window. +

+

3.3 Create a new password

+

To create a new password, press N, the new password window will open, first type +the service name (SRVC), then the username (USER), then the password (PSWD). To +cancel the addition of a new password, lave either the SRVC or the USER +fields empty . Press ENTER to move to the next field +

+

3.3.1 Using random strings as passwords
+

To create a random password for your service, leave the PSWD field empty. A random +string will be given to it as a password. +

+

3.4 Modify a password

+

To modify a password, press M, the modify password window will open, first edit the +service name, then the username, then the password. Leaving the PSWD field +empty in the modify window will give it a random string. You can navigate +through the currently selected field with: +

    +
  • +

    CTRL+A to go to the far left of the field +

  • +
  • +

    CTRL+E to go to the far right of the field +

  • +
  • +

    CTRL+B to move the cursor once to the left + + + +

  • +
  • +

    CTRL+F to move the cursor once to the right +

  • +
  • +

    CTRL+H to remove one character (Backspace) +

  • +
  • +

    CTRL+D to remove highlghted character (Delete) +

  • +
  • +

    CTRL+O to clear the field

+

You can see these commands with in the help window. +

+

3.5 Copy the password to your clipboard

+

To copy a highlighted service’s password, press C. You can do this in the main +window or in the View Password window. +

+

3.6 Delete a password

+

To delete a password, press D. You can do this in the main window or in the View +Password window. Steelbox will prompt you for confirmation, pressing anything but +Y will not remove your password. +

+

3.7 Generate a random string

+

If you just wish to generate a random string, you can press R. It will open a window +with a random string in it. +

+

3.8 Open the help window

+

To open the help window, press H. The help window has information on +steelbox. + + + +

+

3.9 Quit steelbox

+

To quit steelbox, press Q from the main window. Steelbox will close its windows and +you’ll be asked to lock your password file with a password again. If you quit the +GPG password prompt, your password file will not be encrypted and will +be visible in $HOME/pasfile.csv. Opening steelbox again will throw a warning +saying that no encrypted password file could be found, it will then try to open +the unencrypted file. Quitting steelbox and entering a password solves this +problem. +

+

4 F.A.Q.

+

Q: Why do I need to put my password when I enter *and* when I quit +steelbox
A: To avoid saving the main password in the computer. Considering entering your +password when opening still box as ”unlocking” your box, and typing it when +quitting as ”locking” it back.
Q: Can I add a password with no service/user name?
A: Yes. You first create a password with a dummy entry in whichever field you wish +to leave empty, and then modify it, leaving it empty. +

+

5 Licenses

+

+

5.1 GnuPG

+
+

+

Copyright  2007 Free Software Foundation, Inc. https://fsf.org/ +

Everyone is permitted to copy and distribute verbatim copies of this +

license document, but changing it is not allowed. +

+
+

+Preamble + + + +

+

+

The GNU General Public License is a free, copyleft license for software + and other kinds of works. +

The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + the GNU General Public License is intended to guarantee your freedom + to share and change all versions of a program–to make sure it remains + free software for all its users. We, the Free Software Foundation, use the + GNU General Public License for most of our software; it applies also to + any other work released this way by its authors. You can apply it to your + programs, too. +

When we speak of free software, we are referring to freedom, not price. + Our General Public Licenses are designed to make sure that you have the + freedom to distribute copies of free software (and charge for them if you + wish), that you receive source code or can get it if you want it, that you + can change the software or use pieces of it in new free programs, and that + you know you can do these things. +

To protect your rights, we need to prevent others from denying you + these rights or asking you to surrender the rights. Therefore, you have + certain responsibilities if you distribute copies of the software, or if you + modify it: responsibilities to respect the freedom of others. +

For example, if you distribute copies of such a program, whether gratis + or for a fee, you must pass on to the recipients the same freedoms that + you received. You must make sure that they, too, receive or can get the + source code. And you must show them these terms so they know their + rights. +

Developers that use the GNU GPL protect your rights with two steps: + (1) assert copyright on the software, and (2) offer you this License giving + you legal permission to copy, distribute and/or modify it. +

For the developers’ and authors’ protection, the GPL clearly explains + that there is no warranty for this free software. For both users’ and + authors’ sake, the GPL requires that modified versions be marked as + changed, so that their problems will not be attributed erroneously to + authors of previous versions. +

Some devices are designed to deny users access to install or run + modified versions of the software inside them, although the manufacturer + can do so. This is fundamentally incompatible with the aim of protecting + users’ freedom to change the software. The systematic pattern of such + abuse occurs in the area of products for individuals to use, which is + precisely where it is most unacceptable. Therefore, we have designed this + version of the GPL to prohibit the practice for those products. If such + problems arise substantially in other domains, we stand ready to extend + this provision to those domains in future versions of the GPL, as needed + to protect the freedom of users. +

Finally, every program is threatened constantly by software patents. + States should not allow patents to restrict development and use of software + + + + on general-purpose computers, but in those that do, we wish to avoid + the special danger that patents applied to a free program could make + it effectively proprietary. To prevent this, the GPL assures that patents + cannot be used to render the program non-free. +

The precise terms and conditions for copying, distribution and + modification follow. +

+
+

+

Terms and Conditions

+

+

    +
  1. +

    Definitions. +

    “This License” refers to version 3 of the GNU General Public License. +

    “Copyright” also means copyright-like laws that apply to other kinds of + works, such as semiconductor masks. +

    “The Program” refers to any copyrightable work licensed under this + License. Each licensee is addressed as “you”. “Licensees” and “recipients” + may be individuals or organizations. +

    To “modify” a work means to copy from or adapt all or part of the work + in a fashion requiring copyright permission, other than the making of an + exact copy. The resulting work is called a “modified version” of the earlier + work or a work “based on” the earlier work. +

    A “covered work” means either the unmodified Program or a work based + on the Program. +

    To “propagate” a work means to do anything with it that, without + permission, would make you directly or secondarily liable for infringement + under applicable copyright law, except executing it on a computer or + modifying a private copy. Propagation includes copying, distribution (with + or without modification), making available to the public, and in some + countries other activities as well. +

    To “convey” a work means any kind of propagation that enables other + parties to make or receive copies. Mere interaction with a user through a + computer network, with no transfer of a copy, is not conveying. +

    An interactive user interface displays “Appropriate Legal Notices” to the + extent that it includes a convenient and prominently visible feature that + (1) displays an appropriate copyright notice, and (2) tells the user that + + + + there is no warranty for the work (except to the extent that warranties + are provided), that licensees may convey the work under this License, and + how to view a copy of this License. If the interface presents a list of user + commands or options, such as a menu, a prominent item in the list meets + this criterion. +

  2. +
  3. +

    Source Code. +

    The “source code” for a work means the preferred form of the work for + making modifications to it. “Object code” means any non-source form of + a work. +

    A “Standard Interface” means an interface that either is an official + standard defined by a recognized standards body, or, in the case of + interfaces specified for a particular programming language, one that is + widely used among developers working in that language. +

    The “System Libraries” of an executable work include anything, other + than the work as a whole, that (a) is included in the normal form of + packaging a Major Component, but which is not part of that Major + Component, and (b) serves only to enable use of the work with that + Major Component, or to implement a Standard Interface for which an + implementation is available to the public in source code form. A “Major + Component”, in this context, means a major essential component (kernel, + window system, and so on) of the specific operating system (if any) on + which the executable work runs, or a compiler used to produce the work, + or an object code interpreter used to run it. +

    The “Corresponding Source” for a work in object code form means all the + source code needed to generate, install, and (for an executable work) run + the object code and to modify the work, including scripts to control those + activities. However, it does not include the work’s System Libraries, or + general-purpose tools or generally available free programs which are used + unmodified in performing those activities but which are not part of the + work. For example, Corresponding Source includes interface definition files + associated with source files for the work, and the source code for shared + libraries and dynamically linked subprograms that the work is specifically + designed to require, such as by intimate data communication or control + flow between those subprograms and other parts of the work. +

    The Corresponding Source need not include anything that users can + regenerate automatically from other parts of the Corresponding Source. +

    The Corresponding Source for a work in source code form is that same + work. +

  4. + + + +
  5. +

    Basic Permissions. +

    All rights granted under this License are granted for the term of copyright + on the Program, and are irrevocable provided the stated conditions are + met. This License explicitly affirms your unlimited permission to run the + unmodified Program. The output from running a covered work is covered + by this License only if the output, given its content, constitutes a covered + work. This License acknowledges your rights of fair use or other equivalent, + as provided by copyright law. +

    You may make, run and propagate covered works that you do not convey, + without conditions so long as your license otherwise remains in force. You + may convey covered works to others for the sole purpose of having them + make modifications exclusively for you, or provide you with facilities for + running those works, provided that you comply with the terms of this + License in conveying all material for which you do not control copyright. + Those thus making or running the covered works for you must do so + exclusively on your behalf, under your direction and control, on terms + that prohibit them from making any copies of your copyrighted material + outside their relationship with you. +

    Conveying under any other circumstances is permitted solely under the + conditions stated below. Sublicensing is not allowed; section 10 makes it + unnecessary. +

  6. +
  7. +

    Protecting Users’ Legal Rights From Anti-Circumvention Law. +

    No covered work shall be deemed part of an effective technological measure + under any applicable law fulfilling obligations under article 11 of the WIPO + copyright treaty adopted on 20 December 1996, or similar laws prohibiting + or restricting circumvention of such measures. +

    When you convey a covered work, you waive any legal power to forbid + circumvention of technological measures to the extent such circumvention + is effected by exercising rights under this License with respect to the + covered work, and you disclaim any intention to limit operation or + modification of the work as a means of enforcing, against the work’s users, + your or third parties’ legal rights to forbid circumvention of technological + measures. +

  8. +
  9. +

    Conveying Verbatim Copies. + + + +

    You may convey verbatim copies of the Program’s source code as + you receive it, in any medium, provided that you conspicuously and + appropriately publish on each copy an appropriate copyright notice; keep + intact all notices stating that this License and any non-permissive terms + added in accord with section 7 apply to the code; keep intact all notices of + the absence of any warranty; and give all recipients a copy of this License + along with the Program. +

    You may charge any price or no price for each copy that you convey, and + you may offer support or warranty protection for a fee. +

  10. +
  11. +

    Conveying Modified Source Versions. +

    You may convey a work based on the Program, or the modifications to produce + it from the Program, in the form of source code under the terms of section 4, + provided that you also meet all of these conditions: +

      +
    1. +

      The work must carry prominent notices stating that you modified it, + and giving a relevant date. +

    2. +
    3. +

      The work must carry prominent notices stating that it is released + under this License and any conditions added under section 7. This + requirement modifies the requirement in section 4 to “keep intact all + notices”. +

    4. +
    5. +

      You must license the entire work, as a whole, under this License + to anyone who comes into possession of a copy. This License will + therefore apply, along with any applicable section 7 additional terms, + to the whole of the work, and all its parts, regardless of how they + are packaged. This License gives no permission to license the work in + any other way, but it does not invalidate such permission if you have + separately received it. +

    6. +
    7. + + + +

      If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your work + need not make them do so.

    +

    A compilation of a covered work with other separate and independent works, + which are not by their nature extensions of the covered work, and + which are not combined with it such as to form a larger program, + in or on a volume of a storage or distribution medium, is called an + “aggregate” if the compilation and its resulting copyright are not used + to limit the access or legal rights of the compilation’s users beyond + what the individual works permit. Inclusion of a covered work in an + aggregate does not cause this License to apply to the other parts of the + aggregate. +

  12. +
  13. +

    Conveying Non-Source Forms. +

    You may convey a covered work in object code form under the terms of + sections 4 and 5, provided that you also convey the machine-readable + Corresponding Source under the terms of this License, in one of these + ways: +

      +
    1. +

      Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by + the Corresponding Source fixed on a durable physical medium + customarily used for software interchange. +

    2. +
    3. +

      Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a written + offer, valid for at least three years and valid for as long as you + offer spare parts or customer support for that product model, to + give anyone who possesses the object code either (1) a copy of the + Corresponding Source for all the software in the product that is + covered by this License, on a durable physical medium customarily + used for software interchange, for a price no more than your + reasonable cost of physically performing this conveying of source, or + (2) access to copy the Corresponding Source from a network server + at no charge. + + + +

    4. +
    5. +

      Convey individual copies of the object code with a copy of the written + offer to provide the Corresponding Source. This alternative is allowed + only occasionally and noncommercially, and only if you received the + object code with such an offer, in accord with subsection 6b. +

    6. +
    7. +

      Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place + at no further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to copy + the object code is a network server, the Corresponding Source may be + on a different server (operated by you or a third party) that supports + equivalent copying facilities, provided you maintain clear directions + next to the object code saying where to find the Corresponding + Source. Regardless of what server hosts the Corresponding Source, + you remain obligated to ensure that it is available for as long as + needed to satisfy these requirements. +

    8. +
    9. +

      Convey the object code using peer-to-peer transmission, provided you + inform other peers where the object code and Corresponding Source + of the work are being offered to the general public at no charge under + subsection 6d.

    +

    A separable portion of the object code, whose source code is excluded from the + Corresponding Source as a System Library, need not be included in conveying + the object code work. +

    A “User Product” is either (1) a “consumer product”, which means any + tangible personal property which is normally used for personal, family, or + household purposes, or (2) anything designed or sold for incorporation into a + dwelling. In determining whether a product is a consumer product, doubtful + cases shall be resolved in favor of coverage. For a particular product received by + a particular user, “normally used” refers to a typical or common use of that + class of product, regardless of the status of the particular user or of the way in + which the particular user actually uses, or expects or is expected to use, + the product. A product is a consumer product regardless of whether + the product has substantial commercial, industrial or non-consumer + uses, unless such uses represent the only significant mode of use of the + product. + + + +

    “Installation Information” for a User Product means any methods, procedures, + authorization keys, or other information required to install and execute + modified versions of a covered work in that User Product from a modified + version of its Corresponding Source. The information must suffice to ensure + that the continued functioning of the modified object code is in no + case prevented or interfered with solely because modification has been + made. +

    If you convey an object code work under this section in, or with, or specifically + for use in, a User Product, and the conveying occurs as part of a transaction in + which the right of possession and use of the User Product is transferred to the + recipient in perpetuity or for a fixed term (regardless of how the transaction is + characterized), the Corresponding Source conveyed under this section must be + accompanied by the Installation Information. But this requirement does not + apply if neither you nor any third party retains the ability to install modified + object code on the User Product (for example, the work has been installed in + ROM). +

    The requirement to provide Installation Information does not include a + requirement to continue to provide support service, warranty, or updates for a + work that has been modified or installed by the recipient, or for the User + Product in which it has been modified or installed. Access to a network may be + denied when the modification itself materially and adversely affects the + operation of the network or violates the rules and protocols for communication + across the network. +

    Corresponding Source conveyed, and Installation Information provided, in + accord with this section must be in a format that is publicly documented (and + with an implementation available to the public in source code form), and + must require no special password or key for unpacking, reading or + copying. +

  14. +
  15. +

    Additional Terms. +

    “Additional permissions” are terms that supplement the terms of this License + by making exceptions from one or more of its conditions. Additional + permissions that are applicable to the entire Program shall be treated as + though they were included in this License, to the extent that they are valid + under applicable law. If additional permissions apply only to part of the + Program, that part may be used separately under those permissions, but the + entire Program remains governed by this License without regard to the + additional permissions. +

    When you convey a copy of a covered work, you may at your option remove any + additional permissions from that copy, or from any part of it. (Additional + permissions may be written to require their own removal in certain cases when + + + + you modify the work.) You may place additional permissions on material, + added by you to a covered work, for which you have or can give appropriate + copyright permission. +

    Notwithstanding any other provision of this License, for material you add to a + covered work, you may (if authorized by the copyright holders of that material) + supplement the terms of this License with terms: +

      +
    1. +

      Disclaiming warranty or limiting liability differently from the terms + of sections 15 and 16 of this License; or +

    2. +
    3. +

      Requiring preservation of specified reasonable legal notices or author + attributions in that material or in the Appropriate Legal Notices + displayed by works containing it; or +

    4. +
    5. +

      Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or +

    6. +
    7. +

      Limiting the use for publicity purposes of names of licensors or + authors of the material; or +

    8. +
    9. +

      Declining to grant rights under trademark law for use of some trade + names, trademarks, or service marks; or +

    10. +
    11. +

      Requiring indemnification of licensors and authors of that material + by anyone who conveys the material (or modified versions of it) with + contractual assumptions of liability to the recipient, for any liability + that these contractual assumptions directly impose on those licensors + and authors.

    + + + +

    All other non-permissive additional terms are considered “further restrictions” + within the meaning of section 10. If the Program as you received it, or + any part of it, contains a notice stating that it is governed by this + License along with a term that is a further restriction, you may remove + that term. If a license document contains a further restriction but + permits relicensing or conveying under this License, you may add to a + covered work material governed by the terms of that license document, + provided that the further restriction does not survive such relicensing or + conveying. +

    If you add terms to a covered work in accord with this section, you must place, + in the relevant source files, a statement of the additional terms that + apply to those files, or a notice indicating where to find the applicable + terms. +

    Additional terms, permissive or non-permissive, may be stated in the form of a + separately written license, or stated as exceptions; the above requirements + apply either way. +

  16. +
  17. +

    Termination. +

    You may not propagate or modify a covered work except as expressly provided + under this License. Any attempt otherwise to propagate or modify it is + void, and will automatically terminate your rights under this License + (including any patent licenses granted under the third paragraph of section + 11). +

    However, if you cease all violation of this License, then your license from + a particular copyright holder is reinstated (a) provisionally, unless + and until the copyright holder explicitly and finally terminates your + license, and (b) permanently, if the copyright holder fails to notify you of + the violation by some reasonable means prior to 60 days after the + cessation. +

    Moreover, your license from a particular copyright holder is reinstated + permanently if the copyright holder notifies you of the violation by some + reasonable means, this is the first time you have received notice of + violation of this License (for any work) from that copyright holder, + and you cure the violation prior to 30 days after your receipt of the + notice. +

    Termination of your rights under this section does not terminate the licenses of + parties who have received copies or rights from you under this License. If your + rights have been terminated and not permanently reinstated, you do not + qualify to receive new licenses for the same material under section + 10. + + + +

  18. +
  19. +

    Acceptance Not Required for Having Copies. +

    You are not required to accept this License in order to receive or run a copy of + the Program. Ancillary propagation of a covered work occurring solely as a + consequence of using peer-to-peer transmission to receive a copy likewise does + not require acceptance. However, nothing other than this License grants you + permission to propagate or modify any covered work. These actions infringe + copyright if you do not accept this License. Therefore, by modifying or + propagating a covered work, you indicate your acceptance of this License to do + so. +

  20. +
  21. +

    Automatic Licensing of Downstream Recipients. +

    Each time you convey a covered work, the recipient automatically receives a + license from the original licensors, to run, modify and propagate that work, + subject to this License. You are not responsible for enforcing compliance by + third parties with this License. +

    An “entity transaction” is a transaction transferring control of an organization, + or substantially all assets of one, or subdividing an organization, or merging + organizations. If propagation of a covered work results from an entity + transaction, each party to that transaction who receives a copy of the work + also receives whatever licenses to the work the party’s predecessor + in interest had or could give under the previous paragraph, plus a + right to possession of the Corresponding Source of the work from the + predecessor in interest, if the predecessor has it or can get it with reasonable + efforts. +

    You may not impose any further restrictions on the exercise of the rights + granted or affirmed under this License. For example, you may not impose a + license fee, royalty, or other charge for exercise of rights granted under this + License, and you may not initiate litigation (including a cross-claim or + counterclaim in a lawsuit) alleging that any patent claim is infringed by + making, using, selling, offering for sale, or importing the Program or any + portion of it. +

  22. +
  23. +

    Patents. +

    A “contributor” is a copyright holder who authorizes use under this License of + the Program or a work on which the Program is based. The work thus licensed + + + + is called the contributor’s “contributor version”. +

    A contributor’s “essential patent claims” are all patent claims owned or + controlled by the contributor, whether already acquired or hereafter acquired, + that would be infringed by some manner, permitted by this License, of making, + using, or selling its contributor version, but do not include claims that would be + infringed only as a consequence of further modification of the contributor + version. For purposes of this definition, “control” includes the right to grant + patent sublicenses in a manner consistent with the requirements of this + License. +

    Each contributor grants you a non-exclusive, worldwide, royalty-free patent + license under the contributor’s essential patent claims, to make, use, sell, offer + for sale, import and otherwise run, modify and propagate the contents of its + contributor version. +

    In the following three paragraphs, a “patent license” is any express agreement + or commitment, however denominated, not to enforce a patent (such as an + express permission to practice a patent or covenant not to sue for patent + infringement). To “grant” such a patent license to a party means to make + such an agreement or commitment not to enforce a patent against the + party. +

    If you convey a covered work, knowingly relying on a patent license, and the + Corresponding Source of the work is not available for anyone to copy, free of + charge and under the terms of this License, through a publicly available + network server or other readily accessible means, then you must either (1) + cause the Corresponding Source to be so available, or (2) arrange to + deprive yourself of the benefit of the patent license for this particular + work, or (3) arrange, in a manner consistent with the requirements of + this License, to extend the patent license to downstream recipients. + “Knowingly relying” means you have actual knowledge that, but for the + patent license, your conveying the covered work in a country, or your + recipient’s use of the covered work in a country, would infringe one or more + identifiable patents in that country that you have reason to believe are + valid. +

    If, pursuant to or in connection with a single transaction or arrangement, you + convey, or propagate by procuring conveyance of, a covered work, and + grant a patent license to some of the parties receiving the covered work + authorizing them to use, propagate, modify or convey a specific copy of + the covered work, then the patent license you grant is automatically + extended to all recipients of the covered work and works based on + it. +

    A patent license is “discriminatory” if it does not include within the scope of its + coverage, prohibits the exercise of, or is conditioned on the non-exercise + of one or more of the rights that are specifically granted under this + License. You may not convey a covered work if you are a party to an + arrangement with a third party that is in the business of distributing + + + + software, under which you make payment to the third party based on the + extent of your activity of conveying the work, and under which the + third party grants, to any of the parties who would receive the covered + work from you, a discriminatory patent license (a) in connection with + copies of the covered work conveyed by you (or copies made from those + copies), or (b) primarily for and in connection with specific products or + compilations that contain the covered work, unless you entered into that + arrangement, or that patent license was granted, prior to 28 March + 2007. +

    Nothing in this License shall be construed as excluding or limiting any implied + license or other defenses to infringement that may otherwise be available to you + under applicable patent law. +

  24. +
  25. +

    No Surrender of Others’ Freedom. +

    If conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not excuse + you from the conditions of this License. If you cannot convey a covered work + so as to satisfy simultaneously your obligations under this License + and any other pertinent obligations, then as a consequence you may + not convey it at all. For example, if you agree to terms that obligate + you to collect a royalty for further conveying from those to whom + you convey the Program, the only way you could satisfy both those + terms and this License would be to refrain entirely from conveying the + Program. +

  26. +
  27. +

    Use with the GNU Affero General Public License. +

    Notwithstanding any other provision of this License, you have permission to + link or combine any covered work with a work licensed under version + 3 of the GNU Affero General Public License into a single combined + work, and to convey the resulting work. The terms of this License will + continue to apply to the part which is the covered work, but the special + requirements of the GNU Affero General Public License, section 13, + concerning interaction through a network will apply to the combination as + such. +

  28. +
  29. +

    Revised Versions of this License. + + + +

    The Free Software Foundation may publish revised and/or new versions of the + GNU General Public License from time to time. Such new versions will be + similar in spirit to the present version, but may differ in detail to address new + problems or concerns. +

    Each version is given a distinguishing version number. If the Program + specifies that a certain numbered version of the GNU General Public + License “or any later version” applies to it, you have the option of + following the terms and conditions either of that numbered version or of + any later version published by the Free Software Foundation. If the + Program does not specify a version number of the GNU General Public + License, you may choose any version ever published by the Free Software + Foundation. +

    If the Program specifies that a proxy can decide which future versions of the + GNU General Public License can be used, that proxy’s public statement of + acceptance of a version permanently authorizes you to choose that version for + the Program. +

    Later license versions may give you additional or different permissions. + However, no additional obligations are imposed on any author or copyright + holder as a result of your choosing to follow a later version. +

  30. +
  31. +

    Disclaimer of Warranty. +

    THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT + PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE + STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER + PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF + ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS + TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS + WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU + ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR + CORRECTION. +

  32. +
  33. +

    Limitation of Liability. +

    IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR + AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR + ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE + PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR + + + + DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR + CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR + INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED + TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR + LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF + THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN + IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES. +

  34. +
  35. +

    Interpretation of Sections 15 and 16. +

    If the disclaimer of warranty and limitation of liability provided above cannot + be given local legal effect according to their terms, reviewing courts shall apply + local law that most closely approximates an absolute waiver of all + civil liability in connection with the Program, unless a warranty or + assumption of liability accompanies a copy of the Program in return for a + fee. +

    +

    +

    End of Terms and Conditions +

    How to Apply These Terms to Your New Programs

    +

    If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these + terms. +

    To do so, attach the following notices to the program. It is safest to attach + them to the start of each source file to most effectively state the exclusion of + warranty; and each file should have at least the “copyright” line and a pointer + to where the full notice is found. + + + +

    +         <one line to give the program’s name and a brief idea of what it does.>
    +     
    +         Copyright (C) <textyear>  <name of author>
    +     
    +         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/>.
    +         
    +
    +

    +

    Also add information on how to contact you by electronic and paper + mail. +

    If the program does terminal interaction, make it output a short notice like this + when it starts in an interactive mode: + + + +

    +         <program>  Copyright (C) <year>  <name of author>
    +     
    +         This program comes with ABSOLUTELY NO WARRANTY; for details type ‘show w’.
    +         This is free software, and you are welcome to redistribute it
    +         under certain conditions; type ‘show c’ for details.
    +         
    +
    +

    +

    The hypothetical commands show w and show c should show the appropriate + parts of the General Public License. Of course, your program’s commands + might be different; for a GUI interface, you would use an “about box”. +

    You should also get your employer (if you work as a programmer) or school, if + any, to sign a “copyright disclaimer” for the program, if necessary. For more + information on this, and how to apply and follow the GNU GPL, see + https://www.gnu.org/licenses/. +

    The GNU General Public License does not permit incorporating your program + into proprietary programs. If your program is a subroutine library, you + may consider it more useful to permit linking proprietary applications + with the library. If this is what you want to do, use the GNU Lesser + General Public License instead of this License. But first, please read + https://www.gnu.org/licenses/why-not-lgpl.html. +

+

+

5.2 pyperclip

+

Copyright (c) 2014, Al Sweigart
All rights reserved.
+

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

Neither the name of the organization nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND +CONTRIBUTORS ”AS IS”
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY +WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE.
+

5.3 Steelbox

+
+

+

Copyright  1989, 1991 Free Software Foundation, Inc. +

51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA +

Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed.

+
+

+

Preamble

+

The licenses for most software are designed to take away your freedom to share and +change it. By contrast, the GNU General Public License is intended to guarantee +your freedom to share and change free software—to make sure the software is free for + + + +all its users. This General Public License applies to most of the Free Software +Foundation’s software and to any other program whose authors commit to using +it. (Some other Free Software Foundation software is covered by the GNU +Library General Public License instead.) You can apply it to your programs, +too. +

When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom to +distribute copies of free software (and charge for this service if you wish), that you +receive source code or can get it if you want it, that you can change the software or +use pieces of it in new free programs; and that you know you can do these +things. +

To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions translate to +certain responsibilities for you if you distribute copies of the software, or if you +modify it. +

For example, if you distribute copies of such a program, whether gratis or for a +fee, you must give the recipients all the rights that you have. You must make sure +that they, too, receive or can get the source code. And you must show them these +terms so they know their rights. +

We protect your rights with two steps: (1) copyright the software, and (2) offer +you this license which gives you legal permission to copy, distribute and/or modify +the software. +

Also, for each author’s protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the software +is modified by someone else and passed on, we want its recipients to know that what +they have is not the original, so that any problems introduced by others will not +reflect on the original authors’ reputations. +

Finally, any free program is threatened constantly by software patents. We wish +to avoid the danger that redistributors of a free program will individually obtain +patent licenses, in effect making the program proprietary. To prevent this, we have +made it clear that any patent must be licensed for everyone’s free use or not licensed +at all. +

The precise terms and conditions for copying, distribution and modification +follow. +

+

+

Terms and Conditions For Copying, +Distribution and Modification

+

+

    +
  1. + + + +

    +

    This License applies to any program or other work which contains a notice + placed by the copyright holder saying it may be distributed under the + terms of this General Public License. The “Program”, below, refers to + any such program or work, and a “work based on the Program” means + either the Program or any derivative work under copyright law: that is to + say, a work containing the Program or a portion of it, either verbatim or + with modifications and/or translated into another language. (Hereinafter, + translation is included without limitation in the term “modification”.) + Each licensee is addressed as “you”. +

    Activities other than copying, distribution and modification are not + covered by this License; they are outside its scope. The act of running the + Program is not restricted, and the output from the Program is covered only + if its contents constitute a work based on the Program (independent of + having been made by running the Program). Whether that is true depends + on what the Program does. +

  2. +
  3. +

    You may copy and distribute verbatim copies of the Program’s source code + as you receive it, in any medium, provided that you conspicuously and + appropriately publish on each copy an appropriate copyright notice and + disclaimer of warranty; keep intact all the notices that refer to this License + and to the absence of any warranty; and give any other recipients of the + Program a copy of this License along with the Program. +

    You may charge a fee for the physical act of transferring a copy, and you + may at your option offer warranty protection in exchange for a fee. +

  4. +
  5. +

    +

    You may modify your copy or copies of the Program or any portion of it, + thus forming a work based on the Program, and copy and distribute such + modifications or work under the terms of Section 1 above, provided that + you also meet all of these conditions: +

    +

      +
    1. +

      +

      You must cause the modified files to carry prominent notices stating + that you changed the files and the date of any change. + + + +

    2. +
    3. +

      +

      You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any part + thereof, to be licensed as a whole at no charge to all third parties + under the terms of this License. +

    4. +
    5. +

      If the modified program normally reads commands interactively when + run, you must cause it, when started running for such interactive + use in the most ordinary way, to print or display an announcement + including an appropriate copyright notice and a notice that there + is no warranty (or else, saying that you provide a warranty) and + that users may redistribute the program under these conditions, and + telling the user how to view a copy of this License. (Exception: if + the Program itself is interactive but does not normally print such an + announcement, your work based on the Program is not required to + print an announcement.) +

    +

    These requirements apply to the modified work as a whole. If identifiable + sections of that work are not derived from the Program, and can be reasonably + considered independent and separate works in themselves, then this License, + and its terms, do not apply to those sections when you distribute them as + separate works. But when you distribute the same sections as part of a whole + which is a work based on the Program, the distribution of the whole must be on + the terms of this License, whose permissions for other licensees extend to the + entire whole, and thus to each and every part regardless of who wrote + it. +

    Thus, it is not the intent of this section to claim rights or contest your rights to + work written entirely by you; rather, the intent is to exercise the right to + control the distribution of derivative or collective works based on the + Program. +

    In addition, mere aggregation of another work not based on the Program with + the Program (or with a work based on the Program) on a volume of a storage + or distribution medium does not bring the other work under the scope of this + License. +

  6. +
  7. + + + +

    You may copy and distribute the Program (or a work based on it, under + Section 2) in object code or executable form under the terms of Sections 1 and + 2 above provided that you also do one of the following: +

    +

      +
    1. +

      +

      Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections 1 + and 2 above on a medium customarily used for software interchange; + or, +

    2. +
    3. +

      +

      Accompany it with a written offer, valid for at least three years, to + give any third party, for a charge no more than your cost of physically + performing source distribution, a complete machine-readable copy of + the corresponding source code, to be distributed under the terms of + Sections 1 and 2 above on a medium customarily used for software + interchange; or, +

    4. +
    5. +

      +

      Accompany it with the information you received as to the offer to + distribute corresponding source code. (This alternative is allowed + only for noncommercial distribution and only if you received the + program in object code or executable form with such an offer, in + accord with Subsection b above.) +

    +

    The source code for a work means the preferred form of the work for + making modifications to it. For an executable work, complete source + code means all the source code for all modules it contains, plus any + associated interface definition files, plus the scripts used to control + compilation and installation of the executable. However, as a special + exception, the source code distributed need not include anything that is + normally distributed (in either source or binary form) with the major + components (compiler, kernel, and so on) of the operating system on which + the executable runs, unless that component itself accompanies the + executable. + + + +

    If distribution of executable or object code is made by offering access to copy + from a designated place, then offering equivalent access to copy the source code + from the same place counts as distribution of the source code, even though + third parties are not compelled to copy the source along with the object + code. +

  8. +
  9. +

    You may not copy, modify, sublicense, or distribute the Program except + as expressly provided under this License. Any attempt otherwise to + copy, modify, sublicense or distribute the Program is void, and will + automatically terminate your rights under this License. However, parties who + have received copies, or rights, from you under this License will not + have their licenses terminated so long as such parties remain in full + compliance. +

  10. +
  11. +

    You are not required to accept this License, since you have not signed it. + However, nothing else grants you permission to modify or distribute the + Program or its derivative works. These actions are prohibited by law if you + do not accept this License. Therefore, by modifying or distributing + the Program (or any work based on the Program), you indicate your + acceptance of this License to do so, and all its terms and conditions for + copying, distributing or modifying the Program or works based on + it. +

  12. +
  13. +

    Each time you redistribute the Program (or any work based on the Program), + the recipient automatically receives a license from the original licensor to copy, + distribute or modify the Program subject to these terms and conditions. You + may not impose any further restrictions on the recipients’ exercise of the rights + granted herein. You are not responsible for enforcing compliance by third + parties to this License. +

  14. +
  15. +

    If, as a consequence of a court judgment or allegation of patent infringement + or for any other reason (not limited to patent issues), conditions are + imposed on you (whether by court order, agreement or otherwise) that + contradict the conditions of this License, they do not excuse you from the + + + + conditions of this License. If you cannot distribute so as to satisfy + simultaneously your obligations under this License and any other pertinent + obligations, then as a consequence you may not distribute the Program + at all. For example, if a patent license would not permit royalty-free + redistribution of the Program by all those who receive copies directly or + indirectly through you, then the only way you could satisfy both it + and this License would be to refrain entirely from distribution of the + Program. +

    If any portion of this section is held invalid or unenforceable under any + particular circumstance, the balance of the section is intended to apply and the + section as a whole is intended to apply in other circumstances. +

    It is not the purpose of this section to induce you to infringe any patents or + other property right claims or to contest validity of any such claims; this + section has the sole purpose of protecting the integrity of the free software + distribution system, which is implemented by public license practices. Many + people have made generous contributions to the wide range of software + distributed through that system in reliance on consistent application of that + system; it is up to the author/donor to decide if he or she is willing to + distribute software through any other system and a licensee cannot impose that + choice. +

    This section is intended to make thoroughly clear what is believed to be a + consequence of the rest of this License. +

  16. +
  17. +

    If the distribution and/or use of the Program is restricted in certain countries + either by patents or by copyrighted interfaces, the original copyright holder who + places the Program under this License may add an explicit geographical + distribution limitation excluding those countries, so that distribution is + permitted only in or among countries not thus excluded. In such case, this + License incorporates the limitation as if written in the body of this + License. +

  18. +
  19. +

    The Free Software Foundation may publish revised and/or new versions of the + General Public License from time to time. Such new versions will be similar in + spirit to the present version, but may differ in detail to address new problems + or concerns. +

    Each version is given a distinguishing version number. If the Program specifies + a version number of this License which applies to it and “any later version”, + you have the option of following the terms and conditions either of + that version or of any later version published by the Free Software + + + + Foundation. If the Program does not specify a version number of this + License, you may choose any version ever published by the Free Software + Foundation. +

  20. +
  21. +

    If you wish to incorporate parts of the Program into other free programs whose + distribution conditions are different, write to the author to ask for permission. + For software which is copyrighted by the Free Software Foundation, write to the + Free Software Foundation; we sometimes make exceptions for this. Our decision + will be guided by the two goals of preserving the free status of all derivatives of + our free software and of promoting the sharing and reuse of software + generally. +

    +

    +

    No Warranty

    +
  22. +
  23. +

    Because the program is licensed free of charge, there is no + warranty for the program, to the extent permitted by + applicable law. Except when otherwise stated in writing the + copyright holders and/or other parties provide the program + \as iswithout warranty of any kind, either expressed or + implied, including, but not limited to, the implied warranties + of merchantability and fitness for a particular purpose. + The entire risk as to the quality and performance of the + program is with you. Should the program prove defective, + you assume the cost of all necessary servicing, repair or + correction. +

  24. +
  25. +

    In no event unless required by applicable law or agreed to in + writing will any copyright holder, or any other party who may + modify and/or redistribute the program as permitted above, be + liable to you for damages, including any general, special, + incidental or consequential damages arising out of the use or + inability to use the program (including but not limited to loss of + + + + data or data being rendered inaccurate or losses sustained + by you or third parties or a failure of the program to + operate with any other programs), even if such holder + or other party has been advised of the possibility of such + damages. +

+
+

+

End of Terms and Conditions

+

+

Appendix: How to Apply These Terms to Your New Programs

+

If you develop a new program, and you want it to be of the greatest possible use to +the public, the best way to achieve this is to make it free software which everyone can +redistribute and change under these terms. +

To do so, attach the following notices to the program. It is safest to attach them +to the start of each source file to most effectively convey the exclusion of warranty; +and each file should have at least the “copyright” line and a pointer to where the full +notice is found. +

+

+

one line to give the program’s name and a brief idea of what it does. +
Copyright (C) yyyy name of author
+

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 2 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, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA.

+ + + +

Also add information on how to contact you by electronic and paper +mail. +

If the program is interactive, make it output a short notice like this when it starts +in an interactive mode: +

+

+

Gnomovision version 69, Copyright (C) yyyy name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for + details type ‘show w’.
This is free software, and you are welcome to redistribute it under + certain conditions; type ‘show c’ for details.

+

The hypothetical commands show w and show c should show the appropriate +parts of the General Public License. Of course, the commands you use may be called +something other than show w and show c; they could even be mouse-clicks or menu +items—whatever suits your program. +

You should also get your employer (if you work as a programmer) or your school, +if any, to sign a “copyright disclaimer” for the program, if necessary. Here is a +sample; alter the names: +

+

+

Yoyodyne, Inc., hereby disclaims all copyright interest in the + program
‘Gnomovision’ (which makes passes at compilers) written by James + Hacker.
+

signature of Ty Coon, 1 April 1989
Ty Coon, President of Vice

+

This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may consider it +more useful to permit linking proprietary applications with the library. If this is what +you want to do, use the GNU Library General Public License instead of this +License. + + + + + +