-
Notifications
You must be signed in to change notification settings - Fork 22
Changes aggregated at redwerk #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
3e7354d
bca4c8f
2fec59b
16c5d07
0953c9f
e34d776
0bf0a90
561424f
32daec1
c3c35a3
3a024be
590818d
8077166
bed5daa
3e0d321
fa6053e
9d6c6ed
76954de
4cb7b8e
147c28e
83f2efd
e035a8e
f540a0b
64610ff
bd7f64a
8c62513
ab72b94
a11bb25
65f9ae2
95f21f3
0e29164
df0e4e0
3c485c8
f861df0
405c482
b7c47ca
5f5e1a1
a6635ed
1e8a345
57cd5f0
1c39122
452d905
2b7e0e1
f60365a
8450a13
dafbfcf
e2071fd
1f370c3
b46dfb2
d0a3190
744bcf0
e46a7e1
e5f699c
fc0050e
c8f1ffd
bf349a1
f620113
380f66f
4053787
195c8df
9f9b527
ede1ff6
e292cce
60731c0
94cf037
36f4017
5298395
5809473
b1d5a91
0aa5f83
c9441df
d349b19
e7c183e
1efc22a
7988d48
30f9bef
e5904b2
7f1c88e
0bda01e
6032d07
a91d247
c531024
575095c
96a24ea
554914a
873e9bc
2e44d79
7e659c7
0a8ac89
7115936
b5f214c
06d0b39
551672f
b9191b8
d134cb4
b7e5966
d128eb4
267368c
2a94540
8bd931c
1cfdf5b
d3c14b7
fd2eb8c
a17c1af
6dec3a8
3672757
faa221d
454363f
b454282
2a181c1
7731323
448a714
1fd4803
a6423db
f9e0652
95b55b6
9050a4a
756d304
456ac3f
e417450
2d01290
c8bfad6
156d165
1d5b178
88186a6
d3cf20e
325b454
493cc5c
6adf329
91cd50f
0836c56
58f6141
ba6a077
c3734a0
02cb754
1bcd91d
ae9dc1f
6acc6b6
c6b13fb
6688518
84fdc1e
b65c04a
a4d2914
7e871b1
8d62d9b
0b90c46
712c228
7c91f45
6a669e6
e89b388
849d199
e3232ec
2eac8a0
bbafff7
15ab5d8
f2981ae
49bf793
9a0f62c
a274590
5cca0a1
20fd1ca
6feda2b
bb7ac9a
4034dca
d6820dc
2f4d210
86a7d0a
c5b130d
7ea5f86
07d43f9
bc7ab73
10d6ea2
afee805
77ca196
c7d15de
c950a78
a6a9a94
a013ef9
2ef742a
4cd7990
a8b8490
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| build | ||
| shared/bin | ||
| uploader/bin | ||
| lib/snakeyaml-1.5.jar | ||
| dist/Library.jar | ||
| dist/uploader.jar | ||
| shared/TermEntryTest/test.yml | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,2 @@ | ||
| Library depends on SnakeYAML. It will fetch it from a known URL with a known version and checksums by default. If you want a completely clean build, fetch it yourself and build it yourself, and put it in lib/SnakeYAML-1.3.jar. | ||
| Library depends on SnakeYAML. It will fetch it from a known URL with a known version and checksums by default. | ||
| If you want a completely clean build, fetch it yourself and build it yourself, and put it in lib/SnakeYAML-1.3.jar. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| #!/bin/sh -x | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this file for local tests? Can we clarify it if so? |
||
|
|
||
| while test -f library.continue.loop | ||
| do | ||
| java -jar `dirname $0`/dist/uploader.jar | ||
| sleep 60 | ||
| done | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| package plugins.Library; | ||
|
|
||
| import plugins.Library.io.ObjectStreamReader; | ||
| import plugins.Library.io.ObjectStreamWriter; | ||
| import plugins.Library.io.serial.LiveArchiver; | ||
| import plugins.Library.util.exec.SimpleProgress; | ||
|
|
||
| public interface ArchiverFactory { | ||
| <T, S extends ObjectStreamWriter & ObjectStreamReader> | ||
| LiveArchiver<T, SimpleProgress> | ||
| newArchiver(S rw, String mime, int size, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Methods in interfaces should have at least rudimentary documentation, otherwise nobody will ever know what that |
||
| Priority priorityLevel); | ||
|
|
||
| <T, S extends ObjectStreamWriter & ObjectStreamReader> | ||
| LiveArchiver<T, SimpleProgress> | ||
| newArchiver(S rw, String mime, int size, | ||
| LiveArchiver<T, SimpleProgress> archiver); | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| package plugins.Library; | ||
|
|
||
| public class FactoryRegister { | ||
| private static ArchiverFactory archiver = null; | ||
|
|
||
| public static void register(ArchiverFactory factory) { | ||
| archiver = factory; | ||
| } | ||
|
|
||
| public static ArchiverFactory getArchiverFactory() { | ||
| assert archiver != null; | ||
| return archiver; | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove this file? The main repository is a git repository not a mercurial (AFAIK).