From 2c4e4ca4782c0e6825b115366ed72ef8920687e0 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sun, 27 Sep 2015 19:27:20 +0100 Subject: [PATCH] Added docs for v0.8.1 release. --- docs/0.8.1/LOOT Metadata Syntax.html | 654 ++++++++++++ docs/0.8.1/LOOT Readme.html | 732 ++++++++++++++ docs/0.8.1/images/main.png | Bin 0 -> 85621 bytes docs/0.8.1/images/settings.png | Bin 0 -> 79510 bytes ... License (Chromium Embedded Framework).txt | 29 + docs/0.8.1/licenses/BSD License (Polymer).txt | 27 + .../licenses/Boost Software License v1.0.txt | 23 + docs/0.8.1/licenses/GNU FDL v1.3.txt | 423 ++++++++ docs/0.8.1/licenses/GNU GPL v2 (libgit2).txt | 930 ++++++++++++++++++ docs/0.8.1/licenses/GNU GPL v3.txt | 624 ++++++++++++ docs/0.8.1/licenses/Licenses.txt | 17 + .../MIT License (Jed Gettext Parser).txt | 21 + docs/0.8.1/licenses/MIT License (Marked).txt | 19 + .../licenses/MIT License (Pseudosem).txt | 21 + .../0.8.1/licenses/MIT License (yaml-cpp).txt | 19 + docs/index.html | 5 + 16 files changed, 3544 insertions(+) create mode 100644 docs/0.8.1/LOOT Metadata Syntax.html create mode 100644 docs/0.8.1/LOOT Readme.html create mode 100644 docs/0.8.1/images/main.png create mode 100644 docs/0.8.1/images/settings.png create mode 100644 docs/0.8.1/licenses/BSD License (Chromium Embedded Framework).txt create mode 100644 docs/0.8.1/licenses/BSD License (Polymer).txt create mode 100644 docs/0.8.1/licenses/Boost Software License v1.0.txt create mode 100644 docs/0.8.1/licenses/GNU FDL v1.3.txt create mode 100644 docs/0.8.1/licenses/GNU GPL v2 (libgit2).txt create mode 100644 docs/0.8.1/licenses/GNU GPL v3.txt create mode 100644 docs/0.8.1/licenses/Licenses.txt create mode 100644 docs/0.8.1/licenses/MIT License (Jed Gettext Parser).txt create mode 100644 docs/0.8.1/licenses/MIT License (Marked).txt create mode 100644 docs/0.8.1/licenses/MIT License (Pseudosem).txt create mode 100644 docs/0.8.1/licenses/MIT License (yaml-cpp).txt diff --git a/docs/0.8.1/LOOT Metadata Syntax.html b/docs/0.8.1/LOOT Metadata Syntax.html new file mode 100644 index 0000000..8e5645d --- /dev/null +++ b/docs/0.8.1/LOOT Metadata Syntax.html @@ -0,0 +1,654 @@ + + +LOOT Metadata Syntax + + + +

LOOT Metadata Syntax

+ +

Contents

+
    +
  1. Introduction +
  2. Metadata File Contents +
  3. Data Structures +
      +
    1. Tag Data Structure +
    2. File Data Structure +
    3. Message Data Structure +
    4. Location Data Structure +
    5. Dirty Info Data Structure +
    6. Plugin Data Structure +
    +
  4. Condition Strings +
      +
    1. Functions +
    2. The Negator & Junctors +
    3. Order Of Evaluation +
    +
  5. Language Codes +
  6. Version History +
  7. License +
+ +

Introduction

+

The metadata syntax is what LOOT's masterlists and userlists are written in. If you know YAML, good news: the syntax is essentially just YAML 1.2. If you don't know YAML, then its Wikipedia page is a good introduction. All you really need to know is: +

+

An important point that is more specific to how LOOT uses YAML: +

+

Some properties of file paths as used by LOOT: +

+

In this document, where a value's type is given as X list, this is equivalent to a YAML sequence of values which are of the data type X. Where a value's type is given as X set, this is equivalent to a YAML sequence of unique values which are of the data type X. Uniqueness is determined using the equality criteria for that data type. All the non-standard data types that LOOT's metadata syntax uses have their equality criteria defined later in this document. + +

Metadata File Contents

+

The root of a metadata file is a key-value map. LOOT will recognise the following keys, none of which are required: + + +
Key NameValue TypeNotes +
globalsmessage listA list of message data structures for messages that are displayed independently of any plugin. +
pluginsplugin list and plugin setThe plugin data structures that hold all the plugin metadata within the file. It is a mixture of a list and a set because no non-regex plugin value may be equal to any other non-regex plugin value, but there may be any number of equal regex plugin values, and non-regex plugin values may be equal to regex plugin values. +

If multiple plugin values match a single plugin, their metadata is merged in the order the values are listed, and as defined later in this document. +

+

Other keys may also be present, but are not processed by LOOT. The message and plugin data structures are detailed in the next section. +

An example metadata file: +

globals:
+  - type: say
+    content: 'You are using the latest version of LOOT.'
+    condition: 'version("LOOT", "0.5.0.0", ==)'
+plugins:
+  - name: 'Armamentarium.esm'
+    tag:
+      - Relev
+  - name: 'ArmamentariumFran.esm'
+    tag:
+      - Relev
+  - name: 'Beautiful People 2ch-Ed.esm'
+    tag:
+      - Eyes
+      - Graphics
+      - Hair
+      - R.Relations
+
+ + +

Data Structures

+

LOOT expects metadata to be laid out using a certain set of data structures, described in this section. + +

Tag Data Structure

+

LOOT metadata files can contain suggestions for the addition or removal of Bash Tags, and this is the structure used for them. It has two forms: a key-value map and a scalar string. + +

Map Form

+

All values in the map are strings.

+ + +
Key NameRequiredNotes +
nameA Bash Tag, preceded by a minus sign if it is suggested for removal. +
conditionA condition string that is evaluated to determine whether this Bash Tag should be suggested: if it evaluates to true, the Tag is suggested, otherwise it is ignored. See Condition Strings for details. +
+ +

Scalar Form

+
tag
+

where tag is equivalent to the value of the name key in the map form. + +

Equality

+

Two tag data structures are equal if the lowercased values of their name keys are identical. + +

Examples

+
Relations
+
name: -Relations
+condition: 'file("Mart''s Monster Mod for OOO.esm") or file("FCOM_Convergence.esm")'
+
+ +

File Data Structure

+

Not to be confused with the structure of the metadata file itself, this structure can be used to hold file paths. It has two forms: a key-value map and a scalar string. + +

Map Form

+

All values in the map are strings.

+ + +
Key NameRequiredNotes +
nameAn exact (ie. not regex) file path or name. +
displayA substitute string to be displayed instead of the file path in any generated messages, eg. the name of the mod the file belongs to. +
conditionA condition string that is evaluated to determine whether this file data should be used: if it evaluates to true, the data is used, otherwise it is ignored. See Condition Strings for details. +
+ +

Scalar Form

+
filepath
+

where filepath is equivalent to the value of the name key in the map form. + +

Equality

+

Two file data structures are equal if the lowercased values of their name keys are identical. + +

Examples

+
'../obse_loader.exe'
+
name: '../obse_loader.exe'
+condition: 'version("../obse_loader.exe", "0.0.18.0", >=)'
+display: 'OBSE v18+'
+
+ +

Message Data Structure

+

Messages are given as key-value maps. + + +
Key NameValue TypeRequiredNotes +
typestringThe type string can be one of three keywords, see the table below for their semantics. +
contentstring or localised content listEither simply a string, or a list of localised content data structures. If the latter, one of the structures must be for English. +
conditionstringA condition string that is evaluated to determine whether the message should be displayed: if it evaluates to true, the message is displayed, otherwise it is not. See Condition Strings for details. +
subsstring listA list of strings to be substituted into the message content string. The content string must use numbered specifiers (%1%, %2%, etc.), where the numbers correspond to the position of the substitution string in this list to use, to denote where these strings are to be substituted. +
+

LOOT supports formatting of messages using GitHub Flavored Markdown. Support is provided by the Marked library (v0.3). Strings that get substituted into messages, such as file display names and dirty info utility strings, also support the same formatting options. +

LOOT handles messages and languages as follows: +

    +
  1. If a message's content value is a string, the message will use the string as its content if displayed. +
  2. If a message's content value is a list of localised content structures, then the first structure with a language that matches LOOT's current language will be used as the message's content if displayed. If there are no matches, then the first structure in English will be used. +
+ +

Message Types

+ + +
KeywordDescription +
sayA generic message, useful for miscellaneous notes. +
warnA warning message, describing a non-critical issue with the user's mods (eg. dirty mods). +
errorAn error message, decribing a critical installation issue (eg. missing masters, corrupt plugins). +
+ +

Localised Content Data Structure

+

The localised content data structure is a key-value map, with all values being strings: + + +
Key NameRequiredNotes +
strThe actual message content string. +
langThe language that str is written in, given as a POSIX language code. The languages LOOT supports are given in Language Codes. +
+ +

Equality

+

The equality of two message data structures is determined by comparing the values of their content keys. As the values of the keys can be different types, a comparison value is selected for each message using the following logic: +

+

The two message data structures are then equal if their lowercased comparison values are identical. + +

Examples
(translations by Google)

+
type: say
+condition: 'file("foo.esp")'
+content:
+  - lang: en
+    str: 'An example link: <http://www.example.com>'
+  - lang: ru
+    str: 'Это пример ссылки: <http://www.example.com>'
+
+would be displayed as +
+отмечать: Это пример ссылки: http://www.example.com +
+if the current language was Russian and foo.esp was installed, while +
type: say
+content: 'An alternative [example link](http://www.example.com), with no translations.'
+
+would be displayed as +
+отмечать: An alternative example link, with no translations. +
+In English, +
type: say
+content: 'A newer version of %1% [is available](%2%).
+subs:
+  - 'this plugin'
+  - 'http://www.example.com'
+
+would be displayed as +
+Note: A newer version of this plugin is available. +
+ + +

Location Data Structure

+

This data structure is used to hold information on where a plugin is hosted online. It has two forms: a key-value map and a scalar string. + +

Map Form

+

All values in the map are strings.

+ + +
Key NameRequiredNotes +
linkA URL at which the plugin is found. +
nameA descriptive name for the URL, which may be used as hyperlink text. +
+ +

Scalar Form

+
URL
+

where URL is equivalent to the value of the link key in the map form. + +

Equality

+

Two location data structures are equal if the lowercased values of their link keys are identical. + +

Examples

+
'http://skyrim.nexusmods.com/mods/19/'
+
link: 'https://steamcommunity.com/sharedfiles/filedetails/?id=419668499'
+name: 'Unofficial Skyrim Patch on Steam Workshop'
+
+ +

Dirty Info Data Structure

+

This structure holds information on which versions of a plugin are dirty, and how many identical-to-master records, deleted records and deleted navmeshes (if applicable) it contains. Dirty info is given as a key-value map. + + +
Key NameValue TypeRequiredNotes +
crchexadecimal integerThe CRC checksum of the dirty plugin, before cleaning. LOOT displays the CRCs of installed plugins in its report. The 8-character CRC should be preceded by 0x so that it is correctly interpreted. +
utilstringThe utility that should be used to clean the plugin. +
itmintegerThe number of identical-to-master records reported for the dirty plugin. If the number is unknown, this field should not be supplied. If the number is known and zero, this field should be supplied. +
udrintegerThe number of undeleted records reported for the dirty plugin. If the number is unknown, this field should not be supplied. If the number is known and zero, this field should be supplied. +
navintegerThe number of deleted navmeshes reported for the dirty plugin. If the number is unknown, this field should not be supplied. If the number is known and zero, this field should be supplied. +
+ +

Equality

+

Two location data structures are equal if the values of their crc keys are identical. + +

Examples

+
crc: 0x3DF62ABC
+util: '[TES5Edit](http://www.creationkit.com/TES5Edit_Cleaning_Guide_-_TES5Edit)'
+itm: 4
+udr: 160
+nav: 0
+
+ + +

Plugin Data Structure

+

This is the structure that brings all the others together, and forms the main component of a metadata file. It is a key-value map. + + +
Key NameValue TypeRequiredNotes +
namestringCan be an exact plugin filename or a regular expression plugin filename. If the filename contains any of the characters :\*?|, the string will be treated as a regular expression, otherwise it will be treated as an exact filename. For example, Example\.esm will be treated as a regular expression, as it contains a \ character. +
enabledbooleanEnables or disables use of the plugin object. Used for user rules, but no reason to use it in the masterlist. If unspecified, defaults to true. +
priorityintegerModifies plugin position relative to others that change one or more of the same records, but which are otherwise unrelated (ie. neither plugin lists the other as a master, requirement, or in its after list). Plugins that don't change any of the same records are not compared, unless: +
    +
  • One of the plugins is an empty plugin, containing only a header record. +
  • One of the plugins has a priority greater than or equal to 1,000,000. In this case, only the modulo (ie. remainder when divided) with 1,000,000 is used when comparing plugin priority values – the rest is only used to signify that the plugin should be compared against all others. +
+

For example, priority: 153000352 and priority: 352 have equal values when compared, but a plugin with the first priority will be compared against all others, while a (non-empty) plugin with the second priority will be compared against only those it conflicts with. +

A plugin with a higher priority value will load after a plugin with a lower priority value. The value can be anything in the range -2000000000 to 2000000000, and if unspecified defaults to 0. +

afterfile setAn unordered set of plugins that this plugin must load after, but which are not dependencies. Used for resolving specific compatibility issues and by user rules for specifying custom plugin positions. +
reqfile setAn unordered set of files that this plugin requires to be present. This plugin will load after any plugins listed. If any of these files are missing, an error message will be displayed. Intended for use specifying implicit dependencies, as LOOT will detect a plugin's explicit masters itself. +
incfile setAn unordered set of files that this plugin is incompatible with. If any of these files are present, an error message will be displayed. +
msgmessage listThe messages attached to this plugin. The messages will be displayed in the order that they are listed. +
tagtag setAn unordered set of Bash Tags suggested for this plugin. If a Bash Tag is suggested for both addition and removal, the latter will override the former when the list is evaluated. +
urllocation setAn unordered set of locations for this plugin. If the same version can be found at multiple locations, only one location should be recorded. This metadata is not currently used by LOOT. +
dirtydirty info setAn unordered set of dirty info structures for this plugin. Plugin entries with regular expression filenames must not contain dirty info. +
+ +

Equality

+

The equality of two plugin data structures is determined by comparing the values of their name keys. +

+ +

Merging Behaviour

+ + + +
Key NameMerge Behaviour (merging B into A) +
nameNot merged. +
enabledReplaced by B's value. +
priorityReplaced by B's value, unless that value is 0 and it was not explicitly set. +
afterMerged. If B's file set contains an item that is equal to one already present in A's file set, B's item is discarded. +
reqMerged. If B's file set contains an item that is equal to one already present in A's file set, B's item is discarded. +
incMerged. If B's file set contains an item that is equal to one already present in A's file set, B's item is discarded. +
msgMerged. If B's message list contains an item that is equal to one already present in A's message list, B's item is discarded. +
tagMerged.If B's tag set contains an item that is equal to one already present in A's tag set, B's item is discarded. +
urlMerged. If B's location set contains an item that is equal to one already present in A's location set, B's item is discarded. +
dirtyMerged.If B's dirty info set contains an item that is equal to one already present in A's dirty info set, B's item is discarded. +
+ +

Examples

+
name: 'Oscuro''s_Oblivion_Overhaul.esm'
+req:
+  - 'Oblivion.esm'  # Don't do this, Oblivion.esm is a master of Oscuro's_Oblivion_Overhaul.esm, so LOOT already knows it's required.
+  - name: 'example.esp'
+    display: '[Example Mod](http://www.example.com)'
+    condition: 'version("Oscuro''s_Oblivion_Overhaul.esm", "15.0", ==)'
+tag:
+  - Actors.Spells
+  - Graphics
+  - Invent
+  - Relations
+  - Scripts
+  - Stats
+  - name: -Relations
+    condition: 'file("Mart''s Monster Mod for OOO.esm") or file("FCOM_Convergence.esm")'
+msg:
+  - type: say
+    content: 'Do not clean. "Dirty" edits are intentional and required for the mod to function.'
+
+ +

Condition Strings

+

Condition strings can be used to ensure that data is only acted on by LOOT under certain circumstances. They are very similar to boolean conditional expressions in programming languages such as Python, though more limited. Their EBNF grammar is: +

[ negator ], function, { junctor, [ negator ], function } ;
+

The [ negator ], function grammar is referred to as a condition, and two conditions joined by an operator, ie. condition, operator, condition is referred to as a compound condition. +

LOOT caches the results of condition evaluations, so performance is not really an issue. A regular expression check will still take longer than a file check though, so use the former only when appropriate to do so. + +

Functions

+

There are several conditions that can be tested for using the functions detailed in the table below. + + +
FunctionSyntaxDescription +
Filefile("filepath")Returns true if filepath is installed, false otherwise. +
Fileregex("regex")Returns true if a file matching regex is found, false otherwise. +
Manymany("regex")Returns true if more than one file matching regex is found, and false otherwise. +
Checksumchecksum("filepath", checksum)Returns true if the calculated checksum of filepath matches checksum, false otherwise. If filepath does not exist, returns false. +
Versionversion("filepath", "version", comparator)Returns true if the boolean expression (actual version of filepath) comparator version holds true, false otherwise. If filepath does not exist and comparator is ==, > or >=, returns false. If filepath does not exist and comparator is !=, < or <=, returns true. The comparison is not a straightforward per-character comparison, but instead uses the precedence rules defined by Semantic Versioning, extended to allow leading zeroes, an arbitrary number of release version numbers, case-insensitivity and a wider range of separator characters. +
Plugin Active Statusactive("filepath")Returns true if filepath is a .esp or .esm file that is both installed and active, false otherwise. +
+ +

The different types of variable used in the above functions are described in more detail below. + + +
Variable TypeDescription +
filepathA Windows file path, or LOOT, which references the LOOT executable being run. +
regexA regular expression string to match file paths to. +
checksumA string of hexadecimal digits representing an unsigned integer that is the data checksum of a file. LOOT displays the checksums of plugins in its user interface after running. +
versionA string of characters representing the version of a plugin or executable. LOOT displays the versions of plugins in its user interface after running. +
comparatorA comparison operator, ie. one of ==, !=, <, >, <= or >=, meaning "is equal to", "is not equal to", "is less than", "is greater than", "is less than or equal to" and "is greater than or equal to" respectively. +
+ +

The Negator & Junctors

+

The negator, or logical negation operator, inverts the value of the function that follows it. Its inclusion is optional, and its syntax is simply: +

not
+

Below is a truth table for the negator. + + +
Value of functionValue of not function +
falsetrue +
truefalse +
+ +

There are two supported junctors, the logical conjunction (logical and operator) and the logical disjunction (logical or operator), that operate on the expressions to their left and right. + + +
JunctorSyntaxDescription +
Logical ConjunctionandBoth conditions must evaluate to true for the compound condition to evaluate to true. If not, the compound condition evaluates to false. +
Logical DisjunctionorOne condition or both conditions must evaluate to true for the compound condition to evaluate to true. If neither condition is true, then the compound condition evaluates to false. +
+

The following is a truth table for the junctors: + + +
Value of condition1Value of condition2Value of condition1 and condition2Value of condition1 or condition2 +
truetruetruetrue +
truefalsefalsetrue +
falsetruefalsetrue +
falsefalsefalsefalse +
+ +

Order Of Evaluation

+

When a condition string is evaluated, its constituent parts are evaluated according to the standard precedence rules of operator logic, ie. +

    +
  1. Function +
  2. Negator +
  3. Logical and +
  4. Logical or +
+

Below is a table that lists some combinations of conditions, showing for each the order of evaluation by explicit bracketing. To make it easier to read, the negator function pair is shortened to C after the first example. + + +
String StructureEvaluated As +
negator function( negator ( function ) ) +
C and C( C and C ) +
C or C( C or C ) +
C and C and C( ( C and C ) and C ) +
C or C or C( ( C or C ) or C ) +
C and C or C( ( C and C ) or C ) +
C or C and C( C or ( C and C ) ) +
C and C and C and C( ( ( C and C ) and C ) and C ) +
C and C and C or C( ( ( C and C ) and C ) or C ) +
C and C or C and C( ( C and C ) or ( C and C ) ) +
C and C or C or C( ( ( C and C ) or C ) or C) +
C or C or C or C( ( ( C or C ) or C ) or C ) +
C or C or C and C( ( C or C ) or ( C and C ) ) +
C or C and C or C( ( C or ( C and C ) ) or C ) +
C or C and C and C( C or ( ( C and C ) and C ) ) +
+

You can also explicitly enclose any condition in brackets to override the evaluation order, eg. C and ( C or C ) is evaluated as C and ( C or C ), in contrast to the unbracketed string above. + +

Language Codes

+

LOOT supports the following languages and language codes: + + +
LanguagePOSIX Code +
Brazilian Portuguesept_BR +
Chinesezh_CN +
Danishda +
Englishen +
Finnishfi +
Frenchfr +
Germande +
Koreanko +
Polishpl +
Russianru +
Spanishes +
+ +

Version History

+ +

Each version of LOOT has a corresponding version of the metadata format, and its version history is given below. + +

0.8

+ + +

0.7

+ + +

0.6

+

No changes.

+ +

0.5

+

Initial release.

+ +

License

+

This document is part of the LOOT documentation.
+Copyright (C) 2012—2015 WrinklyNinja
+See the file LOOT ReadMe.html for copying conditions. diff --git a/docs/0.8.1/LOOT Readme.html b/docs/0.8.1/LOOT Readme.html new file mode 100644 index 0000000..489209f --- /dev/null +++ b/docs/0.8.1/LOOT Readme.html @@ -0,0 +1,732 @@ + + +LOOT Readme + + + +

LOOT

+ +

Contents

+ +
    +
  1. Introduction +
  2. Installation & Uninstallation +
  3. Using LOOT +
      +
    1. Initialisation +
    2. The Header Bar +
    3. Plugin Cards & Sidebar Items +
    4. Filters +
    5. Editing Plugin Metadata +
    6. Editing Settings +
    +
  4. Themes +
  5. Contributing & Support +
  6. Credits +
  7. License +
  8. Version History +
+ +

Introduction

+ +

LOOT is a plugin load order optimiser for TES IV: Oblivion, TES V: Skyrim, Fallout 3 and Fallout: New Vegas. It is designed to assist mod users in avoiding detrimental conflicts, by automatically calculating a load order that satisfies all plugin dependencies and maximises each plugin's impact on the user's game. + +

LOOT also provides some load order error checking, including checks for requirements, incompatibilities and cyclic dependencies. In addition, it provides a large number of plugin-specific usage notes, bug warnings and Bash Tag suggestions for Wrye Bash. + +

While LOOT is able to calculate correct load order positions for the vast majority of plugins using only their content, it cannot do so for all plugins. As such, LOOT provides a mechanism for supplying additional plugin metadata so that it may sort them correctly. An online masterlist is provided to supply metadata for many plugins that need it, while users can make their own metadata additions, which are saved in their userlist. + +

LOOT is intended to make using mods easier, and mod users should still possess a working knowledge of mod load ordering. See Introduction To Load Orders for an overview. + + +

Installation & Uninstallation

+ +

LOOT does not support Windows XP or earlier. + +

LOOT can be installed either using its automated installer or manually. To install LOOT manually, extract the downloaded archive to a location of your choice. + +

If LOOT was installed using the installer, then use the uninstaller linked to in the Start Menu to uninstall LOOT. If LOOT was installed manually: +

    +
  1. Delete the files you extracted from the location you chose. +
  2. Delete the LOOT folder in your local application data folder, which can be accessed by entering %LOCALAPPDATA% into Windows' File Explorer. +
+ + +

Using LOOT

+ +

Initialisation

+ +

When LOOT is run, it will attempt to detect which of the supported games are installed. If a default game has been set, LOOT will run for it, otherwise it will run for the same game as it last ran for. If the relevant game cannot be detected, or if there is no record of the last game LOOT ran for, it will run for the first detected game. + +

LOOT can also be launched with the --game=<game folder name> command line parameter to set the game to run for. If the supplied game folder name is valid, the default and last game values are ignored. The default folder names are Oblivion, Skyrim, Fallout3 and FalloutNV. + +

If LOOT cannot detect any supported game installs, it will immediately open the Settings dialog. There you can edit LOOT's settings to provide a path to a supported game, after which you can select it from the game menu. + +

Once a game has been set, LOOT will scan its plugins and load the game's masterlist, if one is present. The plugins and any metadata they have are then listed in their current load order. + +

If LOOT detects that it is the first time you have run that version of LOOT, it will display a First-Time Tips dialog, which provides some information about the user interface that may not be immediately obvious. + +

The Header Bar

+ +
+
+
+ +
+
+
LOOT's header bar, divided into sidebar and panel areas. The sidebar area contains the plugins and filters tabs. From left to right in the panel area are the Jump To General Information button, the game menu, and the sorting, masterlist update, search and main menu buttons. The game menu, masterlist update button and sorting button have been disabled, as a plugin metadata editor is open.
+
+ +

The header bar provides access to LOOT's main features. Most of these features get disabled while there is at least one plugin editor open, so if you're trying to use an option that is faded out, first close any editors you have open. + +

Game Menu

+ +

LOOT's active game can be changed by clicking on it in the header bar, and selecting another game from the menu that is displayed. Games that have no install detected are disabled have their menu items disabled. + +

Masterlist Update & Sorting

+ +

The masterlist update process updates the active game's masterlist to the latest revision at the location given by the game's masterlist repository settings. If the latest revision contains errors, LOOT will roll back to the latest revision that works. + +

By default, sorting first updates the masterlist. LOOT then calculates a load order for your plugins, using their internal data and any metadata they may have. If a cyclic interaction is detected (eg. A depends on B depends on A), then sorting will fail. + +

Once LOOT has calculated a load order, the plugin cards are sorted into that order. The masterlist update and sorting buttons are replaced with Apply and Cancel buttons, which apply and discard the calculated load order respectively. Changing games is disabled until the calculated load order is applied or discarded. + +

LOOT is able to sort plugins ghosted by Wrye Bash, and can extract Bash Tags and version numbers from plugin descriptions. Provided that they have the Filter Bash Tag present in their description, LOOT can recognise filter patches and so avoid displaying unnecessary error messages for any of their masters that may be missing. + +

Any errors encountered during sorting or masterlist update will be displayed on the General Information card. + +

Search

+ +

The search toolbar is displayed by clicking the search icon in the header bar, or using the Ctrl-F keyboard shortcut. It may be closed using the close button at the right of the toolbar. + +

Searching is performed as-you-type, or when the Enter key is pressed. All content visible on the front of plugin cards is searched, so the results may be affected by any filters you have active. + +

The plugin card list will be scrolled to the first card that contains a match. Matches may be scrolled between using the up and down chevron buttons, and the current match and the number of matches are displayed between them and the search input. + +

Main Menu

+ +

A few items in the main menu are not self-explanatory: +

+ +

Plugin Cards & Sidebar Items

+ +
+
+
+ +
+
+
Examples of plugin cards.
+
+ +

Each plugin is displayed on its own card, which displays all the information LOOT has for that plugin, and provides access to plugin-specific functionality, including its metadata editor. Each plugin also has an item in the sidebar's Plugins tab. The sidebar item contains the plugin's name and icons for plugins that load BSAs or have user metadata. Clicking on a plugin's sidebar item will jump to its card, while double-clicking will jump to its card and open its metadata editor. + +

The plugin card's header holds the following information, some of which is only displayed if applicable: +

    +
  1. The Active Plugin icon. +
  2. The plugin name. +
  3. The plugin's version number, extracted from its description field. +
  4. The plugin's CRC, which can be used to uniquely identify it. CRCs are only displayed after they have been calculated during conflict filtering or sorting. +
  5. The Master File icon. +
  6. The Empty Plugin icon. +
  7. The Loads BSA icon. +
  8. The Has User Metadata icon. +
  9. The plugin menu button, which provides access to a few plugin-specific features, including a conflict filter and access to its metadata editor. These are explained in later sections. +
+ +

Bash Tag suggestions and messages are displayed below the plugin card's header. + +

If LOOT suggests any Bash Tags to be added, they will be displayed in green text, while any Bash Tags to be removed will be displayed in red text. For completeness, the list of Bash Tags to add will include any Bash Tags that are already specified in the plugin's description field. Users generally don't need to do anything with this information, as if they're using Wrye Bash it will automatically apply LOOT's suggestions, and if they're not using Wrye Bash then this information doesn't apply. + +

LOOT's plugin messages are a valuable resource, acting as a means of providing users with information that they might otherwise not obtain. It is important for a stable, healthy game that you act on any messages that require action. If you think a message suggests an unnecessary action, report it to an official LOOT thread. If you encounter a message that is non-conditional, ie. it suggests an action but is still displayed on subsequent runs of LOOT after the action has been carried out, also report it to an official LOOT thread, so that it can be made conditional. + +

Filters

+

Clicking the Filters tab in the sidebar will replace the sidebar's plugin list with a list of filter toggles that can be applied to hide various combinations of plugins and other content. The available filter toggles are: +

+

The filter toggles have their states saved on quitting LOOT, and they are restored when LOOT is next launched. There are also two other filters: +

+ +

Editing Plugin Metadata

+ +
+
+
+ +
+
+
A metadata editor panel.
+
+ +

LOOT uses metadata to supply plugins with messages and Bash Tag suggestions, and to help it sort plugins that it can't otherwise sort correctly. Users can add to their plugins' metadata through each plugin's metadata editor panel, and plugins with user metadata are indicated with a Has User Metadata icon. + +

A plugin's editor panel is accessed by clicking the Edit Metadata item in the plugin's menu. Multiple plugins can have their editor panels open at once. While at least one editor panel is open, the plugin sidebar also displays any non-zero plugin priorities, to aid setting new priority values. + +

The editor's header bar is similar to the header on the front of the plugin card, minus the Has User Metadata icon, and with the addition of Apply and Cancel icon buttons and a row of tabs. The Main tab contains the following inputs: + +

+ +

The other tabs contain metadata tables, which are detailed below. New rows can be added, and existing user-added rows can be removed, though rows containing metadata from the masterlist cannot. The Load After, Requirements and Incompatibilities tables can have rows added by dragging and dropping plugins from the sidebar into the table area. + + + + +
TableDescription +
Load AfterThis is a list of plugins which, if present, the current plugin must load after, but which are not required. This metadata can be used for resolving specific compatibility issues. Each entry has three fields: +
    +
  • The filename is the path, relative to the game's Data folder, of the file to be checked for. This field is required. +
  • The display name is optional, and if specified will be used instead of the filename in any error messages that are displayed if a problem is encountered relating to the file. +
  • The condition is the optional condition string that is used to determine if the file should be checked for. If left blank, the file will always be checked for. Condition strings are a relatively advanced part of LOOT's functionality, and their syntax is covered in the Metadata Syntax documentation. +
+
RequirementsThis is a list of files that are required by the current plugin for it to function correctly. The current plugin will be loaded after any plugins listed. LOOT will also display an error message if any of the listed files are missing. Any file, not just plugins, can be listed here, and each entry has the same three fields as for the load after table. +

Note that listing a plugin's masters as requirements is unnecessary, as LOOT already checks them. +

IncompatibilitiesThis is a list of files that are incompatible with the plugin. LOOT will display an error message if any of the listed files are found. Any file, not just plugins, can be listed here, and each entry has the same three fields as for the load after table. +
MessagesA list of messages that are to be displayed for the plugin in LOOT's report. These have no bearing on a plugin's position in the load order. Each message has four fields: +
    +
  • The type is fairly self-explanatory, and is used to provide messages of varying severity with appropriate emphasis in LOOT's report. +
  • The content is the actual message text. +
  • The condition is, like for the corresponding file field, used to determine if the message should be displayed. If left blank, the message is displayed. +
  • The language is the language LOOT runs in that the message will be displayed for. This field has no effect for user-added messages, as they cannot contain multiple localisations, and LOOT will always display messages that have only one localisation, even if it doesn't match the current language. +
+

If a message's condition determines that it should not be displayed, then it will not be displayed, no matter the language. However, if a message's condition determines that it should be displayed, but the language is specified and doesn't match the language LOOT is running in, the message will not be displayed. +

Bash TagsA list of Bash Tags. These are used by Wrye Bash when generating a Bashed Patch, and are detailed in Wrye Bash's readme. LOOT's metadata includes Bash Tag addition and removal suggestions, and any Bash Tags that came with the plugin are also displayed. +

As LOOT can suggest Bash Tags be added or removed, it is possible for the same Tag to appear twice, being suggested for addition and removal. In such cases, removal overrides addition. +

Each Bash Tag has three fields: +

    +
  • The state determines whether the Tag is to be suggested for addition or removal. +
  • The name is the actual Bash Tag name. +
  • The condition decides if the Tag is to be suggested or not. It functions as for files and messages. +
+

If a plugin's masters are missing, an error message will be displayed for it. Filter patches are special mods designed for use with a Bashed Patch that do not require all their masters to be present, and so any plugin with the Filter tag applied and missing masters will not cause any errors to be displayed. +

Dirty InfoA list of dirty plugin CRCs and related information. Each row has five fields: +
    +
  • The CRC of the dirty plugin. +
  • The ITM Count for the dirty plugin. +
  • The number of Deleted References that the dirty plugin contains. +
  • The number of Deleted Navmeshes that the dirty plugin contains. +
  • The name of the Cleaning Utility to use to clean the dirty plugin. +
+

LOOT uses the information supplied to construct a warning message for the plugin if it matches any of the given CRCs. +

LocationsA list of URLs that the mod to which the plugin belongs can be found at. This metadata is not currently used by LOOT, but it may be useful to record it. Each location has two fields: +
    +
  • The URL at which the plugin's parent mod can be found. +
  • The Name you wish to give the URL. +
+
+ +

Editing Settings

+
+
+
+ +
+
+
LOOT's settings dialog.
+
+

LOOT's settings may be accessed by clicking Settings button in LOOT's menu bar. The settings are detailed in the table below. + + + +
SettingDescription +
Default GameIf set to something other than Autodetect, this overrides game autodetection. If the game specified is not detected, LOOT falls back to autodetection. +
LanguageControls the language LOOT uses. Any plugin messages that do not have translations in the selected language will be displayed in English, if available, or in their available language otherwise. +
Enable Debug LoggingIf enabled, writes debug output to %LOCALAPPDATA%\LOOT\LOOTDebugLog.txt. Debug logging can have a noticeable impact on performance, so it is off by default. +
Update masterlist before sortingIf checked, LOOT will update its masterlist, should an update be available, before sorting plugins. +
+

LOOT's game-specific settings can be customised in the games table. New game profiles can be added, making it easy to use LOOT across multiple copies of a game, including total conversion mods. LOOT ships with settings for the Nehrim - At Fate's Edge total conversion mod as an example. Game profiles can also be deleted, though the active game cannot have its profile deleted, and LOOT will recreate the profiles for the four base games it supports (Oblivion, Skyrim, Fallout 3, Fallout: New Vegas) when it is next run. + +

The game settings are explained in the table below. + + + +
Game SettingDescription +
NameThe name of the game, or another identifying text, that is displayed in menus and the LOOT's title bar. +
Base Game TypeEvery game LOOT runs for must use the plugin file format and load order system of one of the following games: +
    +
  • TES IV: Oblivion +
  • TES V: Skyrim +
  • Fallout 3 +
  • Fallout: New Vegas +
+
LOOT Folder NameThe sub-folder which LOOT uses to store the game's files in. Each game must be given a unique sub-folder. +
Master FileThe game's main master file. This is specified as it must load before all other plugins. Note that Skyrim-based games will always load Skyrim.esm first, so this column must always be set to Skyrim.esm for such games. +
Masterlist Repository URLThe URL of the repository that LOOT uses to update its local copy of the masterlist. If left empty, masterlist updating will be skipped. +

+ Masterlist repositories are Git repositories that are configured to allow unauthenticated read access and contain a masterlist file named masterlist.yaml in their root directory. The LOOT team maintains a set of official repositories for the games that LOOT supports by default. +
Masterlist Repository BranchThe branch of the masterlist repository that LOOT should get masterlist updates from. +
Install PathThe path to the game's folder, in which the Data folder lies. Either this or a registry key must be supplied. +
Install Path Registry KeyThe registry key, in HKEY_LOCAL_MACHINE, that contains the install path of the game. This is used to obtain the install path if LOOT has no previous record of the game's install path, or LOOT's stored install path is invalid. Either this or an install path must be supplied. +
+ +

Themes

+

LOOT's user interface has experimental support for the use of alternative and custom CSS themes. To use a theme, place its CSS file into the resources/report/css folder inside LOOT's installation folder, and rename the file to theme.css. LOOT will then load this file when it launches. A dark user interface theme is provided with LOOT: to use it, rename dark-theme.css in the resources/report/css folder to theme.css. Theme support is experimental because future updates to LOOT's user interface may break existing CSS selectors.

+ + +

Contributing & Support

+

LOOT is very much a community project, and contributions from its users are very welcome, whether they be metadata, translations, code or anything else. The best way to contribute is to make changes yourself at GitHub! It's the fastest way to get changes you want applied, and you'll get your name automatically immortalised in our credits. + +

If you encounter an issue with LOOT, check the Frequently Asked Questions wiki page in case a solution is available there. + +

Otherwise, general discussion and support takes place in LOOT's official forum thread, which is linked to on LOOT's homepage. + +

If you want to submit metadata, the easiest way to do so is to add the metadata to your own LOOT install, then use the Copy Metadata feature to easily get it in a form that you can then edit into a masterlist on GitHub or post in the official forum threads. + +

Information on dirty plugins is very welcome, but for such information to be useful we require at least the filename and the CRC of the dirty plugin. The CRC may be calculated using Wrye Bash or 7-Zip, with other sources being unverified as correct. In the case of 7-Zip, the CRC checksum for data is the one required. In addition to the CRC, the number of records removed (the ITM count) and/or undeleted (the UDR count) are also welcome. + + +

Credits

+

LOOT is developed by a team on GitHub, with contributions from users. A full list of GitHub contributors may be found here. A list of team members may be viewed on the project wiki. Unless otherwise noted, team members can be contacted on the Bethesda Softworks Forums or on The Nexus Forums via the private messaging system. +

LOOT's masterlists were largely converted from BOSS's masterlists, and so credit is due to the very large number of sources and people who have contributed to them. +

In addition, the following are credited with application-related support: +

+

LOOT is written in C/C++, HTML5, CSS3 and JavaScript, and uses the +Boost, +Jed, +Jed Gettext Parser, +libespm, +libgit2, +libloadorder, +Marked, +pseudosem, +Polymer and +yaml-cpp libraries, and the Chromium Embedded Framework. Copyright license information for all these may be found here. + +

License

+

LOOT is distributed under the GNU General Public License v3.0, aside from the documentation, which is distributed under the GNU Free Documentation License v1.3. The full texts of the licenses are included with LOOT in the accompanying GNU GPL v3.txt and GNU FDL v1.3.txt files. + +

While the GPL license allows anyone to make derivative works of LOOT, the LOOT Team encourages those thinking of doing so to first discuss their reasoning for such an endeavour with the Team. It may be that what the derivative work would do differently is already planned for a future version of LOOT or would be happily integrated into LOOT, thus avoiding any extra effort by others. + +

LOOT has been specifically designed to prevent it being locked into the LOOT Team's official masterlist repositories. Nevertheless, the LOOT Team appeals to the community to avoid the distribution of unofficial masterlists, as this would only hamper the effort to create one set of stores for load order information. Any issues with a masterlist are best brought to the attention of the LOOT Team so that they may be remedied. + +

GNU Free Documentation License Version 1.3 Notice: +

Copyright (C) 2012—2015 WrinklyNinja
+Permission is granted to copy, distribute and/or modify this document +under the terms of the GNU Free Documentation License, Version 1.3 +or any later version published by the Free Software Foundation; +with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
+A copy of the license is included in the file named "GNU FDL v1.3.txt".
+ + +

Version History

+

Only program history is recorded here. A full history of masterlist changes may be viewed by browsing the GitHub repositories. + +

0.8.1 - 27 September 2015

+ + +

0.8.0 - 22 July 2015

+ + +

0.7.1 - 22 June 2015

+ + +

0.7.0 - 20 May 2015

+

Fixes

+ +

Additions

+ +

Changes

+ +

Removals

+ +

API

+ + +

0.6.1 - 22 December 2014

+ + +

0.6.0 - 05 July 2014

+

Fixes

+ +

Additions

+ +

Removals

+ +

Changes

+ + +

0.5.0 - 31 March 2014

+ diff --git a/docs/0.8.1/images/main.png b/docs/0.8.1/images/main.png new file mode 100644 index 0000000000000000000000000000000000000000..814e3e93ccb062c281adc7823900cdd025953647 GIT binary patch literal 85621 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�^)(eD? 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

4P%Bi@n&|RQN=~ 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®6u>w;DlZzxCdr_bV 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 literal 0 HcmV?d00001 diff --git a/docs/0.8.1/licenses/BSD License (Chromium Embedded Framework).txt b/docs/0.8.1/licenses/BSD License (Chromium Embedded Framework).txt new file mode 100644 index 0000000..a5d84ad --- /dev/null +++ b/docs/0.8.1/licenses/BSD License (Chromium Embedded Framework).txt @@ -0,0 +1,29 @@ +// Copyright (c) 2008-2013 Marshall A. Greenblatt. Portions Copyright (c) +// 2006-2009 Google Inc. 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 Google Inc. nor the name Chromium Embedded +// Framework 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 +// OWNER 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. diff --git a/docs/0.8.1/licenses/BSD License (Polymer).txt b/docs/0.8.1/licenses/BSD License (Polymer).txt new file mode 100644 index 0000000..95987ba --- /dev/null +++ b/docs/0.8.1/licenses/BSD License (Polymer).txt @@ -0,0 +1,27 @@ +// Copyright (c) 2014 The Polymer Authors. 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 Google Inc. 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 +// OWNER 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. diff --git a/docs/0.8.1/licenses/Boost Software License v1.0.txt b/docs/0.8.1/licenses/Boost Software License v1.0.txt new file mode 100644 index 0000000..36b7cd9 --- /dev/null +++ b/docs/0.8.1/licenses/Boost Software License v1.0.txt @@ -0,0 +1,23 @@ +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/docs/0.8.1/licenses/GNU FDL v1.3.txt b/docs/0.8.1/licenses/GNU FDL v1.3.txt new file mode 100644 index 0000000..d59e9b3 --- /dev/null +++ b/docs/0.8.1/licenses/GNU FDL v1.3.txt @@ -0,0 +1,423 @@ + + + + GNU Free Documentation License + Version 1.3, 3 November 2008 + + + Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +0. PREAMBLE + +The purpose of this License is to make a manual, textbook, or other +functional and useful document "free" in the sense of freedom: to +assure everyone the effective freedom to copy and redistribute it, +with or without modifying it, either commercially or noncommercially. +Secondarily, this License preserves for the author and publisher a way +to get credit for their work, while not being considered responsible +for modifications made by others. + +This License is a kind of "copyleft", which means that derivative +works of the document must themselves be free in the same sense. It +complements the GNU General Public License, which is a copyleft +license designed for free software. + +We have designed this License in order to use it for manuals for free +software, because free software needs free documentation: a free +program should come with manuals providing the same freedoms that the +software does. But this License is not limited to software manuals; +it can be used for any textual work, regardless of subject matter or +whether it is published as a printed book. We recommend this License +principally for works whose purpose is instruction or reference. + + +1. APPLICABILITY AND DEFINITIONS + +This License applies to any manual or other work, in any medium, that +contains a notice placed by the copyright holder saying it can be +distributed under the terms of this License. Such a notice grants a +world-wide, royalty-free license, unlimited in duration, to use that +work under the conditions stated herein. The "Document", below, +refers to any such manual or work. Any member of the public is a +licensee, and is addressed as "you". You accept the license if you +copy, modify or distribute the work in a way requiring permission +under copyright law. + +A "Modified Version" of the Document means any work containing the +Document or a portion of it, either copied verbatim, or with +modifications and/or translated into another language. + +A "Secondary Section" is a named appendix or a front-matter section of +the Document that deals exclusively with the relationship of the +publishers or authors of the Document to the Document's overall +subject (or to related matters) and contains nothing that could fall +directly within that overall subject. (Thus, if the Document is in +part a textbook of mathematics, a Secondary Section may not explain +any mathematics.) The relationship could be a matter of historical +connection with the subject or with related matters, or of legal, +commercial, philosophical, ethical or political position regarding +them. + +The "Invariant Sections" are certain Secondary Sections whose titles +are designated, as being those of Invariant Sections, in the notice +that says that the Document is released under this License. If a +section does not fit the above definition of Secondary then it is not +allowed to be designated as Invariant. The Document may contain zero +Invariant Sections. If the Document does not identify any Invariant +Sections then there are none. + +The "Cover Texts" are certain short passages of text that are listed, +as Front-Cover Texts or Back-Cover Texts, in the notice that says that +the Document is released under this License. A Front-Cover Text may +be at most 5 words, and a Back-Cover Text may be at most 25 words. + +A "Transparent" copy of the Document means a machine-readable copy, +represented in a format whose specification is available to the +general public, that is suitable for revising the document +straightforwardly with generic text editors or (for images composed of +pixels) generic paint programs or (for drawings) some widely available +drawing editor, and that is suitable for input to text formatters or +for automatic translation to a variety of formats suitable for input +to text formatters. A copy made in an otherwise Transparent file +format whose markup, or absence of markup, has been arranged to thwart +or discourage subsequent modification by readers is not Transparent. +An image format is not Transparent if used for any substantial amount +of text. A copy that is not "Transparent" is called "Opaque". + +Examples of suitable formats for Transparent copies include plain +ASCII without markup, Texinfo input format, LaTeX input format, SGML +or XML using a publicly available DTD, and standard-conforming simple +HTML, PostScript or PDF designed for human modification. Examples of +transparent image formats include PNG, XCF and JPG. Opaque formats +include proprietary formats that can be read and edited only by +proprietary word processors, SGML or XML for which the DTD and/or +processing tools are not generally available, and the +machine-generated HTML, PostScript or PDF produced by some word +processors for output purposes only. + +The "Title Page" means, for a printed book, the title page itself, +plus such following pages as are needed to hold, legibly, the material +this License requires to appear in the title page. For works in +formats which do not have any title page as such, "Title Page" means +the text near the most prominent appearance of the work's title, +preceding the beginning of the body of the text. + +The "publisher" means any person or entity that distributes copies of +the Document to the public. + +A section "Entitled XYZ" means a named subunit of the Document whose +title either is precisely XYZ or contains XYZ in parentheses following +text that translates XYZ in another language. (Here XYZ stands for a +specific section name mentioned below, such as "Acknowledgements", +"Dedications", "Endorsements", or "History".) To "Preserve the Title" +of such a section when you modify the Document means that it remains a +section "Entitled XYZ" according to this definition. + +The Document may include Warranty Disclaimers next to the notice which +states that this License applies to the Document. These Warranty +Disclaimers are considered to be included by reference in this +License, but only as regards disclaiming warranties: any other +implication that these Warranty Disclaimers may have is void and has +no effect on the meaning of this License. + +2. VERBATIM COPYING + +You may copy and distribute the Document in any medium, either +commercially or noncommercially, provided that this License, the +copyright notices, and the license notice saying this License applies +to the Document are reproduced in all copies, and that you add no +other conditions whatsoever to those of this License. You may not use +technical measures to obstruct or control the reading or further +copying of the copies you make or distribute. However, you may accept +compensation in exchange for copies. If you distribute a large enough +number of copies you must also follow the conditions in section 3. + +You may also lend copies, under the same conditions stated above, and +you may publicly display copies. + + +3. COPYING IN QUANTITY + +If you publish printed copies (or copies in media that commonly have +printed covers) of the Document, numbering more than 100, and the +Document's license notice requires Cover Texts, you must enclose the +copies in covers that carry, clearly and legibly, all these Cover +Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on +the back cover. Both covers must also clearly and legibly identify +you as the publisher of these copies. The front cover must present +the full title with all words of the title equally prominent and +visible. You may add other material on the covers in addition. +Copying with changes limited to the covers, as long as they preserve +the title of the Document and satisfy these conditions, can be treated +as verbatim copying in other respects. + +If the required texts for either cover are too voluminous to fit +legibly, you should put the first ones listed (as many as fit +reasonably) on the actual cover, and continue the rest onto adjacent +pages. + +If you publish or distribute Opaque copies of the Document numbering +more than 100, you must either include a machine-readable Transparent +copy along with each Opaque copy, or state in or with each Opaque copy +a computer-network location from which the general network-using +public has access to download using public-standard network protocols +a complete Transparent copy of the Document, free of added material. +If you use the latter option, you must take reasonably prudent steps, +when you begin distribution of Opaque copies in quantity, to ensure +that this Transparent copy will remain thus accessible at the stated +location until at least one year after the last time you distribute an +Opaque copy (directly or through your agents or retailers) of that +edition to the public. + +It is requested, but not required, that you contact the authors of the +Document well before redistributing any large number of copies, to +give them a chance to provide you with an updated version of the +Document. + + +4. MODIFICATIONS + +You may copy and distribute a Modified Version of the Document under +the conditions of sections 2 and 3 above, provided that you release +the Modified Version under precisely this License, with the Modified +Version filling the role of the Document, thus licensing distribution +and modification of the Modified Version to whoever possesses a copy +of it. In addition, you must do these things in the Modified Version: + +A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. +B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has fewer than five), + unless they release you from this requirement. +C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. +D. Preserve all the copyright notices of the Document. +E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. +F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. +G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. +H. Include an unaltered copy of this License. +I. Preserve the section Entitled "History", Preserve its Title, and add + to it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section Entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. +J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. +K. For any section Entitled "Acknowledgements" or "Dedications", + Preserve the Title of the section, and preserve in the section all + the substance and tone of each of the contributor acknowledgements + and/or dedications given therein. +L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. +M. Delete any section Entitled "Endorsements". Such a section + may not be included in the Modified Version. +N. Do not retitle any existing section to be Entitled "Endorsements" + or to conflict in title with any Invariant Section. +O. Preserve any Warranty Disclaimers. + +If the Modified Version includes new front-matter sections or +appendices that qualify as Secondary Sections and contain no material +copied from the Document, you may at your option designate some or all +of these sections as invariant. To do this, add their titles to the +list of Invariant Sections in the Modified Version's license notice. +These titles must be distinct from any other section titles. + +You may add a section Entitled "Endorsements", provided it contains +nothing but endorsements of your Modified Version by various +parties--for example, statements of peer review or that the text has +been approved by an organization as the authoritative definition of a +standard. + +You may add a passage of up to five words as a Front-Cover Text, and a +passage of up to 25 words as a Back-Cover Text, to the end of the list +of Cover Texts in the Modified Version. Only one passage of +Front-Cover Text and one of Back-Cover Text may be added by (or +through arrangements made by) any one entity. If the Document already +includes a cover text for the same cover, previously added by you or +by arrangement made by the same entity you are acting on behalf of, +you may not add another; but you may replace the old one, on explicit +permission from the previous publisher that added the old one. + +The author(s) and publisher(s) of the Document do not by this License +give permission to use their names for publicity for or to assert or +imply endorsement of any Modified Version. + + +5. COMBINING DOCUMENTS + +You may combine the Document with other documents released under this +License, under the terms defined in section 4 above for modified +versions, provided that you include in the combination all of the +Invariant Sections of all of the original documents, unmodified, and +list them all as Invariant Sections of your combined work in its +license notice, and that you preserve all their Warranty Disclaimers. + +The combined work need only contain one copy of this License, and +multiple identical Invariant Sections may be replaced with a single +copy. If there are multiple Invariant Sections with the same name but +different contents, make the title of each such section unique by +adding at the end of it, in parentheses, the name of the original +author or publisher of that section if known, or else a unique number. +Make the same adjustment to the section titles in the list of +Invariant Sections in the license notice of the combined work. + +In the combination, you must combine any sections Entitled "History" +in the various original documents, forming one section Entitled +"History"; likewise combine any sections Entitled "Acknowledgements", +and any sections Entitled "Dedications". You must delete all sections +Entitled "Endorsements". + + +6. COLLECTIONS OF DOCUMENTS + +You may make a collection consisting of the Document and other +documents released under this License, and replace the individual +copies of this License in the various documents with a single copy +that is included in the collection, provided that you follow the rules +of this License for verbatim copying of each of the documents in all +other respects. + +You may extract a single document from such a collection, and +distribute it individually under this License, provided you insert a +copy of this License into the extracted document, and follow this +License in all other respects regarding verbatim copying of that +document. + + +7. AGGREGATION WITH INDEPENDENT WORKS + +A compilation of the Document or its derivatives with other separate +and independent documents or works, in or on a volume of a storage or +distribution medium, is called an "aggregate" if the copyright +resulting from the compilation is not used to limit the legal rights +of the compilation's users beyond what the individual works permit. +When the Document is included in an aggregate, this License does not +apply to the other works in the aggregate which are not themselves +derivative works of the Document. + +If the Cover Text requirement of section 3 is applicable to these +copies of the Document, then if the Document is less than one half of +the entire aggregate, the Document's Cover Texts may be placed on +covers that bracket the Document within the aggregate, or the +electronic equivalent of covers if the Document is in electronic form. +Otherwise they must appear on printed covers that bracket the whole +aggregate. + + +8. TRANSLATION + +Translation is considered a kind of modification, so you may +distribute translations of the Document under the terms of section 4. +Replacing Invariant Sections with translations requires special +permission from their copyright holders, but you may include +translations of some or all Invariant Sections in addition to the +original versions of these Invariant Sections. You may include a +translation of this License, and all the license notices in the +Document, and any Warranty Disclaimers, provided that you also include +the original English version of this License and the original versions +of those notices and disclaimers. In case of a disagreement between +the translation and the original version of this License or a notice +or disclaimer, the original version will prevail. + +If a section in the Document is Entitled "Acknowledgements", +"Dedications", or "History", the requirement (section 4) to Preserve +its Title (section 1) will typically require changing the actual +title. + + +9. TERMINATION + +You may not copy, modify, sublicense, or distribute the Document +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense, or distribute it is void, and +will automatically terminate your rights under this License. + +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, receipt of a copy of some or all of the same material does +not give you any rights to use it. + + +10. FUTURE REVISIONS OF THIS LICENSE + +The Free Software Foundation may publish new, revised versions of the +GNU Free Documentation 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. See +http://www.gnu.org/copyleft/. + +Each version of the License is given a distinguishing version number. +If the Document specifies that a particular numbered version of this +License "or any later version" applies to it, you have the option of +following the terms and conditions either of that specified version or +of any later version that has been published (not as a draft) by the +Free Software Foundation. If the Document does not specify a version +number of this License, you may choose any version ever published (not +as a draft) by the Free Software Foundation. If the Document +specifies that a proxy can decide which future versions of this +License can be used, that proxy's public statement of acceptance of a +version permanently authorizes you to choose that version for the +Document. + +11. RELICENSING + +"Massive Multiauthor Collaboration Site" (or "MMC Site") means any +World Wide Web server that publishes copyrightable works and also +provides prominent facilities for anybody to edit those works. A +public wiki that anybody can edit is an example of such a server. A +"Massive Multiauthor Collaboration" (or "MMC") contained in the site +means any set of copyrightable works thus published on the MMC site. + +"CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0 +license published by Creative Commons Corporation, a not-for-profit +corporation with a principal place of business in San Francisco, +California, as well as future copyleft versions of that license +published by that same organization. + +"Incorporate" means to publish or republish a Document, in whole or in +part, as part of another Document. + +An MMC is "eligible for relicensing" if it is licensed under this +License, and if all works that were first published under this License +somewhere other than this MMC, and subsequently incorporated in whole or +in part into the MMC, (1) had no cover texts or invariant sections, and +(2) were thus incorporated prior to November 1, 2008. + +The operator of an MMC Site may republish an MMC contained in the site +under CC-BY-SA on the same site at any time before August 1, 2009, +provided the MMC is eligible for relicensing. diff --git a/docs/0.8.1/licenses/GNU GPL v2 (libgit2).txt b/docs/0.8.1/licenses/GNU GPL v2 (libgit2).txt new file mode 100644 index 0000000..e0fed07 --- /dev/null +++ b/docs/0.8.1/licenses/GNU GPL v2 (libgit2).txt @@ -0,0 +1,930 @@ + libgit2 is Copyright (C) the libgit2 contributors, + unless otherwise stated. See the AUTHORS file for details. + + Note that the only valid version of the GPL as far as this project + is concerned is _this_ particular version of the license (ie v2, not + v2.2 or v3.x or whatever), unless explicitly otherwise stated. + +---------------------------------------------------------------------- + + LINKING EXCEPTION + + In addition to the permissions in the GNU General Public License, + the authors give you unlimited permission to link the compiled + version of this library into combinations with other programs, + and to distribute those combinations without any restriction + coming from the use of this file. (The General Public License + restrictions do apply in other respects; for example, they cover + modification of the file, and distribution when not linked into + a combined executable.) + +---------------------------------------------------------------------- + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 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. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. 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. + + 1. 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. + + 2. 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: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) 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. + + c) 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. + + 3. 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: + + a) 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, + + b) 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, + + c) 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. + + 4. 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. + + 5. 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. + + 6. 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. + + 7. 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. + + 8. 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. + + 9. 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. + + 10. 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 + + 11. 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. + + 12. 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 + + 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. + + + 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 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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) year 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. + + , 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. + +---------------------------------------------------------------------- + +The bundled ZLib code is licensed under the ZLib license: + +Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Jean-loup Gailly Mark Adler + jloup@gzip.org madler@alumni.caltech.edu + +---------------------------------------------------------------------- + +The priority queue implementation is based on code licensed under the +Apache 2.0 license: + + Copyright 2010 Volkan Yazıcı + Copyright 2006-2010 The Apache Software Foundation + +The full text of the Apache 2.0 license is available at: + + http://www.apache.org/licenses/LICENSE-2.0 + +---------------------------------------------------------------------- + +The Clay framework is licensed under the MIT license: + +Copyright (C) 2011 by Vicent Marti + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +---------------------------------------------------------------------- + +The regex library (deps/regex/) is licensed under the GNU LGPL + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 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. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +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 and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, 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 library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete 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 distribute a copy of this License along with the +Library. + + 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. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +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 Library, 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 Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you 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. + + If distribution of 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 satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be 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. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library 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. + + 9. 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 Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +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 with +this License. + + 11. 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 Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library 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 Library. + +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. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library 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. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser 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 Library +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 Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +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 + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "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 +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. 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 LIBRARY 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 +LIBRARY (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 LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. 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. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; 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. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! diff --git a/docs/0.8.1/licenses/GNU GPL v3.txt b/docs/0.8.1/licenses/GNU GPL v3.txt new file mode 100644 index 0000000..17f76b3 --- /dev/null +++ b/docs/0.8.1/licenses/GNU GPL v3.txt @@ -0,0 +1,624 @@ + + + + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + 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 + + 0. 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. + + 1. 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. + + 2. 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. + + 3. 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. + + 4. 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. + + 5. 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: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) 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". + + c) 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. + + d) 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. + + 6. 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: + + a) 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. + + b) 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. + + c) 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. + + d) 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. + + e) 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. + + 7. 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: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) 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 + + c) 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 + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) 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. + + 8. 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. + + 9. 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. + + 10. 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. + + 11. 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. + + 12. 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. + + 13. 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. + + 14. 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. + + 15. 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. + + 16. 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. + + 17. 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 diff --git a/docs/0.8.1/licenses/Licenses.txt b/docs/0.8.1/licenses/Licenses.txt new file mode 100644 index 0000000..024e6c0 --- /dev/null +++ b/docs/0.8.1/licenses/Licenses.txt @@ -0,0 +1,17 @@ +# Licenses + +LOOT uses a number of libraries, and their licenses are listed in this file. + +* Boost - Boost Software License v1.0; see "Boost Software License v1.0.txt" for the text. +* Chromium Embedded Framework - BSD license; see "BSD License (Chromium Embedded Framework).txt" for the text. +* Jed - WTFPL; the text is not included as allowed by the license. +* Jed Gettext Parser - MIT License; see "MIT License (Jed Gettext Parser).txt" for the text. +* Libespm - GNU GPL v3; see "GNU GPL v3.txt" for the text. +* Libgit2 - GNU GPL v2; see "GNU GPL v2 (libgit2).txt" for the text. +* Libloadorder - GNU GPL v3; see "GNU GPL v3.txt" for the text. +* Marked - MIT License; see "MIT License (Marked).txt" for the text. +* Pseudosem - MIT License; see "MIT License (Pseudosem).txt" for the text. +* Polymer - BSD license; see "BSD License (Polymer).txt" for the text. +* yaml-cpp - MIT License; see "MIT License (yaml-cpp).txt" for the text. + +Source code for all libraries and binaries can be found on the websites linked to in the main LOOT readme. diff --git a/docs/0.8.1/licenses/MIT License (Jed Gettext Parser).txt b/docs/0.8.1/licenses/MIT License (Jed Gettext Parser).txt new file mode 100644 index 0000000..4262699 --- /dev/null +++ b/docs/0.8.1/licenses/MIT License (Jed Gettext Parser).txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Oliver Hamlet + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/docs/0.8.1/licenses/MIT License (Marked).txt b/docs/0.8.1/licenses/MIT License (Marked).txt new file mode 100644 index 0000000..a7b812e --- /dev/null +++ b/docs/0.8.1/licenses/MIT License (Marked).txt @@ -0,0 +1,19 @@ +Copyright (c) 2011-2014, Christopher Jeffrey (https://github.com/chjj/) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/docs/0.8.1/licenses/MIT License (Pseudosem).txt b/docs/0.8.1/licenses/MIT License (Pseudosem).txt new file mode 100644 index 0000000..78f927a --- /dev/null +++ b/docs/0.8.1/licenses/MIT License (Pseudosem).txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015 Oliver Hamlet + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/docs/0.8.1/licenses/MIT License (yaml-cpp).txt b/docs/0.8.1/licenses/MIT License (yaml-cpp).txt new file mode 100644 index 0000000..5bd9e1a --- /dev/null +++ b/docs/0.8.1/licenses/MIT License (yaml-cpp).txt @@ -0,0 +1,19 @@ +Copyright (c) 2008 Jesse Beder. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/docs/index.html b/docs/index.html index e7b2e5f..b08408e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -6,6 +6,11 @@

Each release of LOOT has its documentation listed below.

+
v0.8.1
+
v0.8.0