Skip to content

Commit

Permalink
Populate tree.
Browse files Browse the repository at this point in the history
  • Loading branch information
graydon committed Jun 24, 2010
1 parent c01efc6 commit d6b7c96
Show file tree
Hide file tree
Showing 248 changed files with 52,692 additions and 185 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,4 +1,6 @@
*~
*.x86
*.llvm
*.out
*.exe
*.orig
Expand Down
9 changes: 7 additions & 2 deletions AUTHORS.txt
@@ -1,7 +1,12 @@
Rust authors:
Initial author, project lead, target of blame:

Graydon Hoare <graydon@mozilla.com>

Other authors:

Andreas Gal <gal@mozilla.com>
Brendan Eich <brendan@mozilla.org>
Dave Herman <dherman@mozilla.com>
Michael Bebenita <mbebenita@mozilla.com>
Patrick Walton <pwalton@mozilla.com>
Brendan Eich <brendan@mozilla.com>
Roy Frostig <rfrostig@mozilla.com>
32 changes: 17 additions & 15 deletions LICENSE.txt
Expand Up @@ -53,7 +53,8 @@ The following third party packages are included:
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
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.
Expand All @@ -71,9 +72,10 @@ The following third party packages are included:
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


* Two header files that are part of the Valgrind package. These files are found
at src/rt/valgrind.h and src/rt/memcheck.h, within this distribution. These
files are redistributed under the following terms, as noted in them:
* Two header files that are part of the Valgrind package. These files are
found at src/rt/valgrind.h and src/rt/memcheck.h, within this
distribution. These files are redistributed under the following terms, as
noted in them:

for src/rt/valgrind.h:

Expand Down Expand Up @@ -158,20 +160,20 @@ well as the collective work itslf, is distributed under the following terms:
Copyright (c) 2006-2010 Graydon Hoare
Copyright (c) 2009-2010 Mozilla Foundation

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:
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.
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.
5 changes: 3 additions & 2 deletions doc/Makefile
Expand Up @@ -5,7 +5,8 @@ all: rust.pdf rust.html
texi2pdf $<

%.html: %.texi
makeinfo --html --force --no-split --output=$@ $<
makeinfo --html --ifhtml --force --no-split --output=$@ $<

clean:
rm -f rust.aux rust.cp rust.fn rust.ky rust.log rust.pdf rust.html rust.pg rust.toc rust.tp rust.vr
rm -f rust.aux rust.cp rust.fn rust.ky rust.log rust.pdf \
rust.html rust.pg rust.toc rust.tp rust.vr

1 comment on commit d6b7c96

@luisBazanDev
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mind blowing.

Please sign in to comment.