Kiln » largefiles » Unity
Clone URL:  

largefiles: copyright headers and CONTRIBUTORS file

Changeset c1c3ea8211ef

Parent 7a6d938fba2d

by Profile picture of User 521Andrew Pritchard <andrewp@fogcreek.com>

Changes to 13 files · Browse files at c1c3ea8211ef Showing diff from parent 7a6d938fba2d Diff from another changeset...

Change 1 of 1 Show Entire File CONTRIBUTORS Stacked
 
 
 
 
1
2
@@ -0,0 +1,2 @@
+Greg Ward, author of the original bigfiles extension +Na'Tosha Bard of Unity 3D
Change 1 of 1 Show Entire File __init__.py Stacked
 
 
 
 
 
 
1
2
3
 
1
2
3
4
5
6
7
8
@@ -1,3 +1,8 @@
+# Copyright 2010-2011 Fog Creek Software +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. +  '''track large binary files    Large binary files tend to be not very compressible, not very "diffable",
Change 1 of 1 Show Entire File basestore.py Stacked
 
 
 
 
 
 
1
2
3
 
1
2
3
4
5
6
7
8
@@ -1,3 +1,8 @@
+# Copyright 2010-2011 Fog Creek Software +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. +  '''Base class for store implementations and store-related utility code.'''    import os
Show Entire File extsetup.py Stacked
(No changes)
Change 1 of 1 Show Entire File lfcommands.py Stacked
 
 
 
 
 
 
1
2
3
 
1
2
3
4
5
6
7
8
@@ -1,3 +1,8 @@
+# Copyright 2010-2011 Fog Creek Software +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. +  '''High-level command functions: lfadd() et. al, plus the cmdtable.'''    import os
Change 1 of 1 Show Entire File lfutil.py Stacked
 
 
 
 
 
 
1
2
3
 
1
2
3
4
5
6
7
8
@@ -1,3 +1,8 @@
+# Copyright 2010-2011 Fog Creek Software +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. +  '''largefiles utility code: must not import other modules in this package.'''    import os
Change 1 of 1 Show Entire File localstore.py Stacked
 
 
 
 
 
 
1
2
3
 
1
2
3
4
5
6
7
8
@@ -1,3 +1,8 @@
+# Copyright 2010-2011 Fog Creek Software +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. +  '''Store class for local filesystem.'''    import os
Change 1 of 1 Show Entire File overrides.py Stacked
 
 
 
 
 
 
1
2
3
 
1
2
3
4
5
6
7
8
@@ -1,3 +1,8 @@
+# Copyright 2010-2011 Fog Creek Software +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. +  '''Overridden Mercurial commands and functions for the largefiles extension'''    import os
Change 1 of 1 Show Entire File proto.py Stacked
 
 
 
 
 
 
1
2
3
 
1
2
3
4
5
6
7
8
@@ -1,3 +1,8 @@
+# Copyright 2010-2011 Fog Creek Software +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. +  import os  import shutil  import tempfile
Change 1 of 1 Show Entire File remotestore.py Stacked
 
 
 
 
 
 
1
2
3
 
1
2
3
4
5
6
7
8
@@ -1,3 +1,8 @@
+# Copyright 2010-2011 Fog Creek Software +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. +  '''Remote lfile store; the base class for servestore'''    from mercurial import util
Change 1 of 1 Show Entire File reposetup.py Stacked
 
 
 
 
 
 
1
2
3
 
1
2
3
4
5
6
7
8
@@ -1,3 +1,8 @@
+# Copyright 2010-2011 Fog Creek Software +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. +  '''setup for largefiles repositories: reposetup'''  import copy  import types
Change 1 of 1 Show Entire File uisetup.py Stacked
 
 
 
 
 
 
1
2
3
 
1
2
3
4
5
6
7
8
@@ -1,3 +1,8 @@
+# Copyright 2010-2011 Fog Creek Software +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. +  '''setup for largefiles extension: uisetup'''    from mercurial import archival, cmdutil, commands, extensions, filemerge, hg, \
Change 1 of 1 Show Entire File wirestore.py Stacked
 
 
 
 
 
 
1
2
3
 
1
2
3
4
5
6
7
8
@@ -1,3 +1,8 @@
+# Copyright 2010-2011 Fog Creek Software +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. +  '''largefile store working over mercurial's wire protocol'''    import remotestore