forked from apache/incubator-retired-wave
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGES
2968 lines (1967 loc) · 110 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Summary since 0.4.0-RC5
======================
- Added option to use Solr as a search provider - this enables filtering waves by keywords.
- Bug Fixes.
Summary since 0.4.0-RC4
=====================
- Added MongoDB based deltas store and migration tool for deltas migration from file to mongob based store.
- Added client/server profiling.
- Added Atmosphere framework as replacement of Socket.IO.
- Added alternative - Gmail style initials avatars.
- Decreased number of permutations in dev compilation and added GWT superdev mode.
- Upgraded the server to Jetty 9.1.1.
- Added JDK 7 compatibility.
Summary since 0.4.0-RC3
=====================
- Federation between multiple wave servers should now work again without
causing shiny's.
- Translations to German and Chinese have been added to further expand our
international support.
- User Avatars are now rendered by default rather than the user's name.
- Some unused code (old export codebase, migration, some random helpers) have
been removed to give the codebase a nice clean feel.
- Many changes to the code licensing have been made, and all third-party
dependencies are now downloaded.
commit 7d017eefca414d91d9aff987bd1dbff95aed3a9e
Author: Yuri Zelikov <yurize@apache.org>
Date: Wed Aug 27 21:23:56 2014 +0300
Sets project version to 0.4.0.
commit c0b8ad1313fa5e4671da2e99bdea5b68fc98d6da
Author: Yuri Zelikov <yurize@apache.org>
Date: Fri Aug 22 10:37:10 2014 +0300
Adds reference for Atmosphere in LICENSE.bin.
commit eb5821999f6560dd09a5ce1efa4f915077707d93
Author: Yuri Zelikov <yurize@apache.org>
Date: Fri Aug 22 10:25:50 2014 +0300
Removes reference to Socket.IO from LICENSE as we replaced SOCKET.IO with Atmosphere.
commit 9bec8ca08eabf54e07fdf4158de2b2d4a078089e
Author: Yuri Zelikov <yurize@apache.org>
Date: Fri Aug 8 11:53:17 2014 +0300
Adds license missing license header and updates NOTICE/LICENSE files.
commit 7e3895da37d8911e7a833bbb6ac3c3adc4e7c74d
Author: Yuri Zelikov <yurize@apache.org>
Date: Thu Aug 28 01:37:47 2014 +0300
Fixes tests - adds adds null pointer check.
commit ed27695d102e55c924c6c90761fd9e3484905742
Author: Yuri Zelikov <yurize@apache.org>
Date: Thu Aug 28 00:40:08 2014 +0300
Revert "Fixes tests"
This reverts commit 45a07689423a32daafa25cd92ecba304f852c38f.
commit 45a07689423a32daafa25cd92ecba304f852c38f
Author: Yuri Zelikov <yurize@apache.org>
Date: Thu Aug 28 00:15:29 2014 +0300
Fixes tests
commit 65653a59e4884f5f8d6d2cbffa07fbb6fdbbc2c6
Author: Yuri Zelikov <yurize@apache.org>
Date: Wed Aug 27 20:54:22 2014 +0300
Re-adds mongodb default values.
commit 3f4a57d3faf36cd44a348941d84be109cf5e7ce7
Author: Yuri Zelikov <yurize@apache.org>
Date: Tue Aug 26 00:08:49 2014 +0300
WAVE-311 Adds profiling to Solr search/update methods.
commit 1f15189683ab26148ec8e89842a27a52af930149
Author: Yuri Zelikov <yurize@apache.org>
Date: Sun Aug 24 21:54:11 2014 +0300
Fixes some typos in README.
commit 4374cca22ad57902317ea33be5a7b788f09fb1f4
Author: Yuri Zelikov <yurize@apache.org>
Date: Sun Aug 24 21:49:44 2014 +0300
Renames README into README.md
commit 2e86453b8228dbd04a9bd86758ddca2b81e23abc
Author: Yuri Zelikov <yurize@apache.org>
Date: Sun Aug 24 21:47:35 2014 +0300
WAVE-311 Updates README with instrctions on installing MongoDB and Solr.
commit d8cc013529a6df858946018b6612b7b0613f293a
Author: Yuri Zelikov <yurize@apache.org>
Date: Sun Aug 24 21:44:04 2014 +0300
DEV-311 Adds Solr scripts to the binary distribution.
commit 17d5a64e48c4c5bce4e225cff8275fda23de1c70
Author: Yuri Zelikov <yurize@apache.org>
Date: Fri Aug 22 01:16:10 2014 +0300
Refactors some Solr related code.
commit 00a98a327f54ecfded31c95dc11179afa9652783
Author: Yuri Zelikov <yurize@apache.org>
Date: Fri Aug 22 01:09:33 2014 +0300
WAVE-311 Updates solr scripts.
commit 731f434e86099dd20957b7c8a85399284e3a9a57
Author: Yuri Zelikov <yurize@apache.org>
Date: Thu Aug 21 22:07:44 2014 +0300
WAVE-311 WAVE-371 Ensures that search providers always include the user data wavelet for genenerating the digest.
commit c180e4fed18c9b5b73e464e010551afc4b020161
Author: Yuri Zelikov <yurize@apache.org>
Date: Thu Aug 21 21:34:38 2014 +0300
WAVE-311 Makes Solr base url and executor configurable.
commit ef9a9a93e6de8c169e0510f454c10ad5828eee1b
Author: Yuri Zelikov <yurize@apache.org>
Date: Thu Aug 21 21:29:44 2014 +0300
WAVE-311 Allows to download the Solr dependency via ant and run with run-solr.sh script.
commit ca645a72322e4aae33c5aae909c956f814d38640
Author: Yuri Zelikov <yurize@apache.org>
Date: Fri Aug 8 16:41:44 2014 +0300
Fixes NPE.
commit 571c30663e802a9b34a66d79abdcb5724bdb19c3
Author: Yuri Zelikov <yurize@apache.org>
Date: Sat Apr 26 00:30:32 2014 +0300
WAVE-311 Refactors the Solr search related classes some more.
commit 2c4a3504d002742ae91b6c5f4794c60aa2dac58f
Author: Yuri Zelikov <yurize@apache.org>
Date: Fri Apr 25 23:59:59 2014 +0300
WAVE-311 Refactored title construction by adding getWavelet method to WaveMap and moving the code into base class.
commit 6c7bc7a0564b01d2dded92ce9ed5d6db40c4515a
Author: Yuri Zelikov <yurize@apache.org>
Date: Fri Apr 25 23:27:21 2014 +0300
WAVE-311 Updates Snippets.collatetextForOps to accept custom function to modify the result on new lines.
commit deb185440a815fe6149a7083cac924d499d46e93
Author: Yuri Zelikov <yurize@apache.org>
Date: Tue Apr 15 21:59:14 2014 +0300
WAVE-311 Refactors some more, ensures Solr search result include user data wavelet.
commit d566b91dffd3554af7295b373458a097ad3555cb
Author: Yuri Zelikov <yurize@apache.org>
Date: Tue Apr 15 12:32:08 2014 +0300
WAVE-311 Refactors some search related code.
commit b45dc71ce2d38a2e542e7294d0ad151107aa9196
Author: Yuri Zelikov <yurize@apache.org>
Date: Sat Apr 12 11:58:13 2014 +0300
WAVE-311 Updates to allow user data wavelets into the Solr index.
commit da20b429ad3356b9b4b610173dca3cc38de03aed
Author: Frank R <renfeng.cn@gmail.com>
Date: Fri Apr 11 19:55:00 2014 +0300
WAVE-311 Applies full text search with Solr patch by Frank Ren https://reviews.apache.org/r/16322 but without SolrRobot.
commit 20ae1d86c5e61b9cae11ed2340fefb41f732c45b
Author: Ali Lown <al@apache.org>
Date: Mon Aug 25 21:43:49 2014 +0100
Revert to tinder 1.2.1, as 1.2.2 causes build failures
commit 10db75ac7656fc26135ed8b3323fa55f51b219aa
Author: Ali Lown <al@apache.org>
Date: Mon Aug 25 14:47:08 2014 +0100
Source Tinder and Whack from maven repositories.
These were causing build failures as they could no longer be fetched
from my server.
commit 0328b9a8ad5199a316d9d979ba3ddc33927be7c2
Author: Yuri Zelikov <yurize@apache.org>
Date: Mon Aug 25 20:53:10 2014 +0300
Removes obsolete dependency on websocket.jar
commit 0f16803731322f788621715c2bbe8089cff7e6a2
Author: Antonio Tenorio-Fornés <antoniotenorio@ucm.es>
Date: Mon Aug 25 20:30:06 2014 +0300
Fixes WAVE-269 Gadgets are now inserted in the position of the cursor.
commit 9161196008317a67b71a64ca8286095b38633a69
Author: Pablo Ojanguren <pablojan@gmail.com>
Date: Mon Aug 25 19:40:18 2014 +0300
Fixes WAVE-416 - Delta signature verification fail with wildcard certificates.
commit 3513be76adf05cde10046c4171c52fceba7a101d
Author: Pablo Ojanguren <pablojan@gmail.com>
Date: Mon Aug 25 19:35:31 2014 +0300
Adds configuration for MongoDB store types
commit 543c3cbfc6501a0536202d3b15e88f83fcec17f2
Author: Yuri Zelikov <yurize@apache.org>
Date: Mon Aug 25 01:23:12 2014 +0300
Fixes WAVE-413 - Windows Server can only offer connections to localhost.
commit 5b19ee5ea45baf41a1a2cb9cfdcd5b6277dc5b49
Author: Andrew Kaplanov <akaplanov@gmail.com>
Date: Thu Aug 14 00:15:35 2014 +0600
Fix to https://issues.apache.org/jira/browse/WAVE-415
commit bf6b20092ab98fa1e1c03e674dd8af4a03b41ca8
Author: Yuri Zelikov <yurize@apache.org>
Date: Fri Jul 18 09:51:01 2014 +0300
Renames "rat" ant target into more descriptive "audit-licenses".
commit b091fd479c96159fbd50ae8fadb078946234d5a3
Author: Yuri Zelikov <yurize@apache.org>
Date: Fri Jul 18 09:49:43 2014 +0300
Moves artifact-sign.sh script under "release" folder.
commit 18823c9715e4de99d37fc67f72743f4699746a06
Author: Ali Lown <ali@lown.me.uk>
Date: Fri Jul 18 09:26:46 2014 +0300
Adds script to sign artifacts.
commit 9433219ff20f4c872402ce3953b65c004a934b03
Author: Yuri Zelikov <yurize@apache.org>
Date: Thu Jul 17 23:53:36 2014 +0300
Adds my gpg public key to KEYS.
commit 117cd487dabdd510a7b45a59471afa5a2d663496
Author: Yuri Zelikov <yurize@apache.org>
Date: Thu Jul 17 22:38:35 2014 +0300
Adds missing licenses accrording to Rat audit tool.
commit a7bb1c782b934612f302680fff623503bbb96aad
Author: Yuri Zelikov <yurize@apache.org>
Date: Thu Jul 17 20:31:20 2014 +0300
Makes changes for rc5.
commit 0858e0c60b42e2cac38aed44d8b16f9e8bcb377a
Author: Pablo Ojanguren <pablojan@gmail.com>
Date: Mon Jun 30 19:34:27 2014 +0300
Deltas migration tool from file to mongodb store https://reviews.apache.org/r/20371
commit 5abfce6c7059e7abdb17c847687e9c1f6a93b689
Author: Andrew Kaplanov <akaplanov@gmail.com>
Date: Wed Jul 9 21:08:19 2014 +0300
Improves/refactors profiling code. https://reviews.apache.org/r/23166/
commit b77f7f5e06cba954b85f3deffbdb11885b9aa538
Author: Yuri Zelikov <yurize@apache.org>
Date: Sat Jun 28 20:21:17 2014 +0300
Fixes server.config generation for release-bin.
commit 51e06f2965f73f6e6a245e29996649fe67e49491
Author: Yuri Zelikov <yurize@apache.org>
Date: Sat Jun 28 16:36:53 2014 +0300
Updates release-bin so it will auto generate default server.config and add to distribution.
commit 08c31e3b6b45da071f4e1773e1096e5e88a795f4
Author: Yuri Zelikov <yurize@apache.org>
Date: Sat Jun 28 16:24:13 2014 +0300
Updates release-bin to run without tests and to include server-config.xml.
commit 290fa7ea5ab8a32124325204695f2d57b31f7d5a
Author: Yuri Zelikov <yurize@apache.org>
Date: Sat Jun 28 16:23:16 2014 +0300
Adds .DS_Stire ti .gitignore.
commit 9ea3be1d98595564fd96d43cad52a6fd023089e0
Author: Yuri Zelikov <yurize@apache.org>
Date: Sat Jun 28 15:33:24 2014 +0300
Fixes unstable test in RpcTest.
commit 86fe1bd4eb76f4da64a6d6fe60efc12bb851c3e1
Author: Yuri Zelikov <yurize@apache.org>
Date: Sat Jun 28 15:32:31 2014 +0300
Fixes Eclipse classpath to use GWT 2.6.1 libraries.
commit d8896276557c9387df97f76b2fab4331207017d6
Author: Andrew Kaplanov <akaplanov@gmail.com>
Date: Sat Jun 28 13:27:30 2014 +0300
Adds Profiling. https://reviews.apache.org/r/22776
commit 47cd2e99fd65c7278622d659b410b4941a8df91a
Author: vjrj <vjrj@ourproject.org>
Date: Thu May 1 13:01:33 2014 +0200
Removing old dependency with socketio-java
https://reviews.apache.org/r/20610/
commit 2f2ec5ca8c203489364f949b7a129bb96adb2bdb
Author: Vicente J. Ruiz Jurado <vjrj@ourproject.org>
Date: Wed Apr 23 16:57:41 2014 +0200
Added atmosphere to classpath
commit 4c0d78ee8afdf92fc3a8ef6f7454726b790cc445
Author: Vicente J. Ruiz Jurado <vjrj@ourproject.org>
Date: Wed Apr 23 16:14:02 2014 +0200
Added Atmosphere framework as replacement of Socket.IO by Pablo Ojanguren. Fix for #WAVE-405.
https://reviews.apache.org/r/19355/
commit ee6f996ebb5c5b64f019b9cfea93789f09e8cfb2
Author: vjrj <vjrj@ourproject.org>
Date: Thu Apr 10 20:35:32 2014 +0200
Fix for gadget proxy request URI
https://reviews.apache.org/r/20207/
commit 43187a96d6d77e2d4e39e35ccd0bfcad828ae117
Author: vjrj <vjrj@ourproject.org>
Date: Thu Apr 10 20:34:57 2014 +0200
Fix for missing dependency in dist-server
https://reviews.apache.org/r/20209/
commit 5e949d0a1f31b81b22e769f17cf8eb6cde317eb0
Author: Vicente J. Ruiz Jurado <vjrj@ourproject.org>
Date: Tue Apr 1 17:45:40 2014 +0200
Profile fetcher selection and new initials avatars
Review: https://reviews.apache.org/r/19116/
commit 3682cf9146cfc975eeabc77757aeccde5389edcb
Author: vjrj <vjrj@ourproject.org>
Date: Fri Mar 14 00:22:13 2014 +0100
Add GWT superdev mode for waveharness and editor
Review: https://reviews.apache.org/r/18941/
commit 285bee3be5132e946d36ebc11be175165014db95
Author: vjrj <vjrj@ourproject.org>
Date: Tue Mar 11 22:38:16 2014 +0100
Decrease number of permutations in dev compilation
https://reviews.apache.org/r/18908/
commit d1dcdc7dd423f25383d280bc4bfba4aed47821c5
Author: Yuri Zelikov <vega113@gmail.com>
Date: Fri Feb 21 21:30:33 2014 +0200
Fixes unit tests - adds back libdn.jar + fixes xml schema for test.
commit d5e607397ce21f8740963d32e5967455600d0928
Author: Pablo Ojanguren <pablojan@gmail.com>
Date: Tue Feb 18 22:07:50 2014 +0200
Added Journaled Write Concern for delta storage operations with MongoDB
https://reviews.apache.org/r/17942
commit eced2256e3ec2843c67527e2d8ad7e57c90300e2
Author: Yuri Zelikov <vega113@gmail.com>
Date: Fri Jan 24 21:37:48 2014 +0200
Removes back the Apache license from .project as it messes up the file.
commit 23230d93965e9ef04d50104cc27bb4342f2301a8
Author: Andrew Kaplanov <akaplanov@gmail.com>
Date: Tue Jan 21 23:59:23 2014 +0200
Improves settings of Jetty
https://reviews.apache.org/r/17143
commit f2493f4352b12e767afba198b916509331148238
Author: Yuri Zelikov <vega113@gmail.com>
Date: Mon Jan 20 20:37:59 2014 +0200
Removes the non licensed images.
https://reviews.apache.org/r/17105/
commit ecf3e5cac03a899d8a881f9941f5e49e5ee33ca5
Author: Yuri Zelikov <vega113@gmail.com>
Date: Sun Jan 19 22:27:16 2014 +0200
Updates README
commit 0779067fef17f5bd033ad4ceed913e46f8060b9e
Author: Yuri Zelikov <vega113@gmail.com>
Date: Sat Jan 18 23:38:49 2014 +0200
Updates the get-third-party script to download new jars.
commit 284396a255d252ea3585ee90c1ccb7528e7bf538
Merge: 0b55067 999be5e
Author: Yuri Zelikov <vega113@gmail.com>
Date: Sat Jan 18 16:06:56 2014 +0200
Merge branch 'wave-0.4-release' into master
Conflicts:
.classpath
.gitignore
.project_template
CHANGES
NOTICE
README
build.properties
build.xml
jaas.config
prosody.cfg.lua.example
proto_src/org/waveprotocol/box/attachment/AttachmentProto.java
proto_src/org/waveprotocol/box/server/persistence/protos/ProtoAccountStoreData.java
run-server.bat
server-config.xml
server.federation.config
src/com/google/gwt/build.xml
src/com/google/gwt/websockets/WebSockets.gwt.xml
src/com/google/wave/api/data/Data.gwt.xml
src/com/google/wave/api/robot/Robot.gwt.xml
src/org/waveprotocol/box/server/frontend/WaveletInfo.java
src/org/waveprotocol/box/server/persistence/protos/delta-store.proto
src/org/waveprotocol/box/server/waveserver/SimpleSearchProviderImpl.java
src/org/waveprotocol/box/server/waveserver/Wave.java
src/org/waveprotocol/box/webclient/search/i18n/SearchPresenterMessages_sl.properties
src/org/waveprotocol/box/webclient/search/i18n/SearchWidgetMessages_sl.properties
src/org/waveprotocol/box/webclient/search/mock/search.html
src/org/waveprotocol/protobuf/build.xml
src/org/waveprotocol/pst/templates/api/properties
src/org/waveprotocol/pst/templates/builder/properties
src/org/waveprotocol/pst/templates/gson/properties
src/org/waveprotocol/pst/templates/jso/properties
src/org/waveprotocol/pst/templates/pojo/properties
src/org/waveprotocol/pst/templates/proto/properties
src/org/waveprotocol/pst/templates/util/properties
src/org/waveprotocol/wave/client/build.xml
src/org/waveprotocol/wave/client/common/build.xml
src/org/waveprotocol/wave/client/scheduler/build.xml
src/org/waveprotocol/wave/client/wavepanel/impl/toolbar/color/ComplexColorPicker.css
src/org/waveprotocol/wave/client/wavepanel/impl/toolbar/color/SimpleColorPicker.css
src/org/waveprotocol/wave/client/wavepanel/impl/toolbar/color/i18n/ColorPickerMessages_en.properties
src/org/waveprotocol/wave/client/wavepanel/impl/toolbar/color/i18n/ColorPickerMessages_es.properties
src/org/waveprotocol/wave/client/wavepanel/impl/toolbar/i18n/LinkerMessages_fr.properties
src/org/waveprotocol/wave/common/build.xml
src/org/waveprotocol/wave/communication/build.xml
src/org/waveprotocol/wave/concurrencycontrol/build.xml
src/org/waveprotocol/wave/crypto/build.xml
src/org/waveprotocol/wave/diff/build.xml
src/org/waveprotocol/wave/federation/build.xml
src/org/waveprotocol/wave/media/build.xml
src/org/waveprotocol/wave/model/build.xml
src/org/waveprotocol/wave/testing/build.xml
src/org/waveprotocol/wave/util/build.xml
src/python/api/__init__.py
src/python/api/appengine_robot_runner.py
src/python/api/blip.py
src/python/api/blip_test.py
src/python/api/commandline_robot_runner.py
src/python/api/commandline_robot_runner_test.py
src/python/api/django_oauth.py
src/python/api/element.py
src/python/api/element_test.py
src/python/api/errors.py
src/python/api/events.py
src/python/api/module_test_runner.py
src/python/api/ops.py
src/python/api/ops_test.py
src/python/api/robot.py
src/python/api/robot_test.py
src/python/api/run_unit_tests.py
src/python/api/search.py
src/python/api/search_test.py
src/python/api/testdata.py
src/python/api/util.py
src/python/api/util_test.py
src/python/api/wavelet.py
src/python/api/wavelet_test.py
src/python/api/waveservice.py
src/python/api/waveservice_test.py
test/org/waveprotocol/wave/concurrencycontrol/Tests.gwt.xml
test/org/waveprotocol/wave/model/experimental/schema/bad1.schema
test/org/waveprotocol/wave/model/experimental/schema/bad10.schema
test/org/waveprotocol/wave/model/experimental/schema/bad11.schema
test/org/waveprotocol/wave/model/experimental/schema/bad12.schema
test/org/waveprotocol/wave/model/experimental/schema/bad13.schema
test/org/waveprotocol/wave/model/experimental/schema/bad14.schema
test/org/waveprotocol/wave/model/experimental/schema/bad15.schema
test/org/waveprotocol/wave/model/experimental/schema/bad16.schema
test/org/waveprotocol/wave/model/experimental/schema/bad17.schema
test/org/waveprotocol/wave/model/experimental/schema/bad18.schema
test/org/waveprotocol/wave/model/experimental/schema/bad19.schema
test/org/waveprotocol/wave/model/experimental/schema/bad2.schema
test/org/waveprotocol/wave/model/experimental/schema/bad20.schema
test/org/waveprotocol/wave/model/experimental/schema/bad21.schema
test/org/waveprotocol/wave/model/experimental/schema/bad22.schema
test/org/waveprotocol/wave/model/experimental/schema/bad23.schema
test/org/waveprotocol/wave/model/experimental/schema/bad24.schema
test/org/waveprotocol/wave/model/experimental/schema/bad3.schema
test/org/waveprotocol/wave/model/experimental/schema/bad4.schema
test/org/waveprotocol/wave/model/experimental/schema/bad5.schema
test/org/waveprotocol/wave/model/experimental/schema/bad6.schema
test/org/waveprotocol/wave/model/experimental/schema/bad7.schema
test/org/waveprotocol/wave/model/experimental/schema/bad8.schema
test/org/waveprotocol/wave/model/experimental/schema/bad9.schema
test/org/waveprotocol/wave/model/experimental/schema/good1.schema
test/org/waveprotocol/wave/model/experimental/schema/good10.schema
test/org/waveprotocol/wave/model/experimental/schema/good11.schema
test/org/waveprotocol/wave/model/experimental/schema/good12.schema
test/org/waveprotocol/wave/model/experimental/schema/good13.schema
test/org/waveprotocol/wave/model/experimental/schema/good14.schema
test/org/waveprotocol/wave/model/experimental/schema/good15.schema
test/org/waveprotocol/wave/model/experimental/schema/good16.schema
test/org/waveprotocol/wave/model/experimental/schema/good2.schema
test/org/waveprotocol/wave/model/experimental/schema/good3.schema
test/org/waveprotocol/wave/model/experimental/schema/good4.schema
test/org/waveprotocol/wave/model/experimental/schema/good5.schema
test/org/waveprotocol/wave/model/experimental/schema/good6.schema
test/org/waveprotocol/wave/model/experimental/schema/good7.schema
test/org/waveprotocol/wave/model/experimental/schema/good8.schema
test/org/waveprotocol/wave/model/experimental/schema/good9.schema
test/org/waveprotocol/wave/model/supplement/tests.gwt.xml
test/org/waveprotocol/wave/model/tests.gwt.xml
third_party/codegen/gwt/README.google
third_party/codegen/gwt/gwt-dev.jar
third_party/codegen/gwt/gwt-user.jar
third_party/runtime/bouncycastle/LICENSE.html
third_party/runtime/gson/LICENSE
third_party/runtime/guava/README.google
third_party/runtime/jetty/README.google
third_party/runtime/libidn/LICENSE
third_party/runtime/libidn/README.google
third_party/runtime/libidn/libidn-1.26.jar
third_party/runtime/mongo-driver/README.google
third_party/runtime/protobuf/README.google
third_party/test/jmock/README.google
third_party/test/mockito/README.google
third_party/test/mockito/mockito-all-1.9.5.jar
tools/eclipse-launch/src.org.waveprotocol.wave.client.editor.examples.img.Img_Example-launch
tools/eclipse-launch/src.org.waveprotocol.wave.client.editor.harness.EditorTest-launch
war/.gitignore
commit 0b550672da3c923fbc6be0a963d2bf54c735b783
Author: Yuri Zelikov <vega113@gmail.com>
Date: Sat Jan 18 12:27:41 2014 +0200
Cleans up store related classes
commit d9a968691912df974d16d438468fc2e5b12d0da3
Merge: 0a315ef 053b041
Author: Yuri Zelikov <vega113@gmail.com>
Date: Sat Jan 18 00:15:13 2014 +0200
Merges pull request https://github.com/apache/incubator-wave/pull/2
commit 053b04130f5cc013e475059ce9220aa034367cdd
Author: Yuri Zelikov <vega113@gmail.com>
Date: Sat Jan 18 00:14:35 2014 +0200
Updates README for Mongo driver.
commit 0a315ef893d87e2fb9f79b0448680249f504d123
Author: Yuri Zelikov <vega113@gmail.com>
Date: Fri Jan 17 21:59:40 2014 +0200
Formats/cleans up the mongo related files
commit 98a4e1e921b77da5c481b5f42e28cca4b4bb2257
Author: Yuri Zelikov <vega113@gmail.com>
Date: Fri Jan 17 21:34:53 2014 +0200
Updates Eclipse classpathx
commit cf5a4e5016f48b07fd18a179dbbea99c9fb04958
Author: pablojan <pablojan@pablojan@gmail.com>
Date: Wed Jan 15 17:33:29 2014 +0100
Fix WAVE-399 with Diff r2
commit 56a9ccbed2512c597076a3100481dfd2b39de3ce
Author: Yuri Zelikov <vega113@gmail.com>
Date: Fri Jan 17 22:35:38 2014 +0200
Adds log files to .gitignore
commit 313618a0b1162fdd44d83f1384b966f006fa0158
Author: Andrew Kaplanov <akaplanov@gmail.com>
Date: Fri Jan 17 12:49:28 2014 +0200
WebSocketChannelImpl sendMessageString() fix
commit 19dcb9630a93317b12e8d41659f728ac3570a223
Author: Yuri Zelikov <vega113@gmail.com>
Date: Thu Jan 16 21:48:38 2014 +0200
Updates Eclipse classpath to use new jars
commit 011bdc31c794d5cf43b1fd9dd303295654e1d107
Author: Andrew Kaplanov <akaplanov@gmail.com>
Date: Fri Jan 17 00:11:16 2014 +0600
Minor changes
commit 2e979b6390ca52174e3328b1856050fd48421e2b
Author: Andrew Kaplanov <akaplanov@gmail.com>
Date: Tue Jan 14 00:16:20 2014 +0600
Jetty 9.1.0 -> 9.1.1
commit d8f460ce3ec865e822bcbfcf49b3aea9fced0293
Merge: 4d5919e 63bc8ff
Author: Andrew Kaplanov <akaplanov@gmail.com>
Date: Mon Jan 13 00:03:47 2014 +0600
Merge branch 'master' of https://github.com/jorkey/incubator-wave
commit 63bc8ff5fd5cb34a56c10ad48ea389b421620dbc
Author: Yuri Zelikov <vega113@gmail.com>
Date: Sun Jan 12 17:08:05 2014 +0200
Refactors SimpleSearchProvider
https://reviews.apache.org/r/16694/
commit 4d5919e5fd2f44f611a851a9258d881e6a6b7d13
Author: Andrew Kaplanov <akaplanov@gmail.com>
Date: Thu Jan 9 21:17:21 2014 +0600
Update of third party libraries
commit 380f36a53613aa9365ff282feb08ed92271c3a04
Author: Андрей <ak@mac-mini-andrej.dlink>
Date: Wed Jan 8 23:58:52 2014 +0600
Update of third party libraries
commit 7cf0676208f9bc4bfacbb7d488e014e8a3e26fed
Author: Андрей <ak@mac-mini-andrej.dlink>
Date: Mon Jan 6 17:34:26 2014 +0600
Update of third party libraries
commit 848e8a8a8c9a02ee7eec74b3b0bdae1913edf808
Author: Андрей <ak@mac-mini-andrej.dlink>
Date: Mon Jan 6 17:31:18 2014 +0600
Update of third party libraries
commit 41841fc385fa4c1e4381af167147ff01e56ab38e
Author: Андрей <ak@mac-mini-andrej.dlink>
Date: Mon Jan 6 16:36:10 2014 +0600
Update of third party libraries
commit af10e491ed930bb6401314a9997240777e12c5a9
Author: Андрей <ak@mac-mini-andrej.dlink>
Date: Mon Jan 6 16:20:35 2014 +0600
Update of third party libraries
commit 29667c95ca1145084fb34a302c27b4a3af384858
Author: Андрей <ak@mac-mini-andrej.dlink>
Date: Sun Jan 5 03:30:16 2014 +0600
Update of third party libraries
commit 9d02cde0d05887944814954df1a2da77ba9c7241
Merge: 36142ba 8e69335
Author: Андрей <ak@mac-mini-andrej.dlink>
Date: Wed Jan 1 04:22:40 2014 +0600
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-wave
commit 8e693353eaf0e9880dc6c5713c28429ca1011b44
Author: Yuri Zelikov <vega113@gmail.com>
Date: Tue Dec 31 23:51:38 2013 +0200
Improves support of Java 7. By Andrew Kaplanov.
https://reviews.apache.org/r/16548
commit 36142bacf44c2473ebbee2bdda4344248571dccc
Author: Андрей <ak@mac-mini-andrej.dlink>
Date: Wed Jan 1 03:19:33 2014 +0600
Suppress Java 7 warnings in sources
commit dc6ecc78c2a0bf5fa96501de55f0f6771f58477b
Author: Yuri Zelikov <vega113@gmail.com>
Date: Tue Dec 31 18:16:39 2013 +0200
Adds JDK 7 compatability. By Andrew Kaplanov
https://reviews.apache.org/r/16538
Adds updated test related jars + updates Eclipse classpath
Removes -Werror flag from build
commit 4490c700d52cb1cc2335e19a3a40edfd3a1ed45c
Author: Yuri Zelikov <vega113@gmail.com>
Date: Sat Dec 21 19:41:57 2013 +0200
Adds formatter style for Eclipse
https://reviews.apache.org/r/16434/
commit 7df7f380f0d9e15d622c9c47e845fda2ed3671b5
Author: Yuri Zelikov <vega113@gmail.com>
Date: Sat Dec 21 19:22:00 2013 +0200
Adds *.old files to .gitignore
commit 13f4cb2a9ddcd8ff11adccce94a0c1e38bd8755f
Author: Ali Lown <al@apache.org>
Date: Sat Dec 21 15:44:38 2013 +0000
Move all annotation constants to their own class>
https://reviews.apache.org/r/16435/
commit 529f75e8ac0d289cea8882d322748b8373eba413
Author: Yuri Zelikov <vega113@gmail.com>
Date: Sat Dec 21 08:57:03 2013 +0200
Adds gwt-unitCache and war/WEB-INF to .gitignore.
commit 999be5e21a09b9d36fd399e8e4b6af71f08af58e
Author: vjrj <vjrj@ourproject.org>
Date: Wed Dec 18 13:50:02 2013 +0100
Thumbnails updated (removed unused, resized, and create new ones for pdf & default)
commit 48c3bc9086ca47716bfcf40bc5dfb178d5ea27a7
Author: vjrj <vjrj@ourproject.org>
Date: Tue Dec 17 19:57:44 2013 +0100
Added Tango Desktop Project icons (Public Domain) as attachment thumbnails
commit c2f96cf833fb925a9a01b163f53720f7af92c44e
Author: vjrj <vjrj@ourproject.org>
Date: Tue Dec 17 18:53:17 2013 +0100
Revert "Added icons from the Humanity Icon Theme as thumbnails" because are GPL
This reverts commit ed123859b0e5d4f27c0fafde5b4683f2126848f2.
commit ed123859b0e5d4f27c0fafde5b4683f2126848f2
Author: Vicente J. Ruiz Jurado <vjrj@apache.org>
Date: Sun Dec 15 18:58:26 2013 +0000
Added icons from the Humanity Icon Theme as thumbnails
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1551037 13f79535-47bb-0310-9956-ffa450edef68
commit de116fe1668f381507d0e39d993c3b77f67666be
Author: Ali Lown <al@apache.org>
Date: Tue Dec 3 14:51:43 2013 +0000
RC4's license changes
These are now fairly minimal.
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1547413 13f79535-47bb-0310-9956-ffa450edef68
commit a9c1b7370eb3d7662cea3ef5a350052602ff60c2
Author: Ali Lown <al@apache.org>
Date: Fri Aug 30 20:29:15 2013 +0000
Some minor changes after previewing release
- Include THANKS in binary release
- Fold DISCLAIMER at 80
- Use Maven central rather than repo1/repo2
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1519074 13f79535-47bb-0310-9956-ffa450edef68
commit 1af5585417837f08d531152223ab4362dd346d98
Author: Ali Lown <al@apache.org>
Date: Fri Aug 30 19:22:49 2013 +0000
Introduce a new CHANGES format
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1519051 13f79535-47bb-0310-9956-ffa450edef68
commit 7e9b6bd5fadbd469481200f301b7537a1f33d6b4
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 19:21:36 2013 +0000
Merge branch 'trunk-staging' into 0.4-release-staging
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1517940 13f79535-47bb-0310-9956-ffa450edef68
commit 5458e2d75bbd194653117c2370e58ecbfc352807
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 19:21:21 2013 +0000
Add a basic THANKS
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1517939 13f79535-47bb-0310-9956-ffa450edef68
commit c4c007de3b8e0eadfde0c878c59b2bdeead77fb8
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 19:21:16 2013 +0000
Fold LICENSE.bin at 80chars
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1517938 13f79535-47bb-0310-9956-ffa450edef68
commit f664d1fc868c40d5fa9f6b315920ada59ff6336b
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 19:21:12 2013 +0000
Add all required bin release license files
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1517936 13f79535-47bb-0310-9956-ffa450edef68
commit 52efea6f9371178b8819a6d3bc85b5eb736ed04a
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 19:21:06 2013 +0000
Seperate LICENSE+NOTICE to .src, .bin
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1517935 13f79535-47bb-0310-9956-ffa450edef68
commit 1c50b848cb46a945fc63511882667dd1b3bb8f37
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 19:20:58 2013 +0000
Remove remaining 'Copyright Google' messages
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1517934 13f79535-47bb-0310-9956-ffa450edef68
commit af7e45a900e87bd1bc346328da8239cac5b2a183
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 19:20:45 2013 +0000
Add SimpleJSON license
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1517933 13f79535-47bb-0310-9956-ffa450edef68
commit b6f6f5059ccc7e291ec8ac9366975dc494b1f217
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 19:20:37 2013 +0000
"Licensed under Apache" -> "Licensed to the ASF"
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1517932 13f79535-47bb-0310-9956-ffa450edef68
commit 90ba06d02866d36298acbc5ceef15c6fa1bde41c
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 19:19:03 2013 +0000
Finish work on third-party dependency sourcing.
This also makes third_party/ a temporary folder than you make yourself.
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1517931 13f79535-47bb-0310-9956-ffa450edef68
commit 443ef7c287b310f8a2a7d04738376099d29668c0
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 19:18:57 2013 +0000
Put conditional around gxpc taskdef on third-party
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1517930 13f79535-47bb-0310-9956-ffa450edef68
commit cb1cb1dcec0d75f03b9a49e3d568a9e35b070a40
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 19:18:51 2013 +0000
Remove third_party folder and all contents
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1517929 13f79535-47bb-0310-9956-ffa450edef68
commit 7f56462b0331bb42ddc8f1c9a8c5756f8301d98f
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 19:14:34 2013 +0000
Merge branch 'trunk' into 0.4-release-staging
Conflicts:
README
src/org/waveprotocol/box/waveimport/WaveExport.java
src/org/waveprotocol/box/waveimport/WaveImport.java
src/org/waveprotocol/box/waveimport/google/RobotApi.java
src/org/waveprotocol/box/waveimport/google/RobotSearchDigest.java
src/org/waveprotocol/box/waveimport/google/RobotSearchDigestGsonImpl.java
src/org/waveprotocol/box/waveimport/google/RobotSearchDigestImpl.java
src/org/waveprotocol/box/waveimport/google/RobotSearchDigestUtil.java
src/org/waveprotocol/box/waveimport/google/oauth/NeedNewOAuthTokenException.java
src/org/waveprotocol/box/waveimport/google/oauth/OAuthCredentials.java
src/org/waveprotocol/box/waveimport/google/oauth/OAuthRequestHelper.java
src/org/waveprotocol/box/waveimport/google/oauth/OAuthedFetchService.java
src/org/waveprotocol/box/waveimport/google/oauth/StableUserId.java
src/org/waveprotocol/box/waveimport/google/oauth/UserContext.java
src/org/waveprotocol/box/webclient/client/i18n/SessionMessages_es.properties
src/org/waveprotocol/box/webclient/client/i18n/SessionMessages_fr.properties
src/org/waveprotocol/box/webclient/client/i18n/WebClientMessages_es.properties
src/org/waveprotocol/box/webclient/client/i18n/WebClientMessages_fr.properties
src/org/waveprotocol/box/webclient/search/i18n/SearchPresenterMessages_sl.properties
src/org/waveprotocol/box/webclient/search/i18n/SearchWidgetMessages_es.properties
src/org/waveprotocol/box/webclient/search/i18n/SearchWidgetMessages_sl.properties
src/org/waveprotocol/box/webclient/widget/error/i18n/ErrorMessages_es.properties
src/org/waveprotocol/wave/client/wavepanel/impl/edit/i18n/ActionMessages_es.properties
src/org/waveprotocol/wave/client/wavepanel/impl/menu/i18n/MenuMessages_fr.properties
src/org/waveprotocol/wave/client/wavepanel/impl/menu/i18n/MenuMessages_sl.properties
src/org/waveprotocol/wave/client/wavepanel/impl/toolbar/attachment/i18n/AttachmentMessages_fr.properties
src/org/waveprotocol/wave/client/wavepanel/impl/toolbar/attachment/i18n/AttachmentMessages_sl.properties
src/org/waveprotocol/wave/client/wavepanel/impl/toolbar/gadget/i18n/GadgetCategoryMessages_es.properties
src/org/waveprotocol/wave/client/wavepanel/impl/toolbar/gadget/i18n/GadgetSelectorMessages_sl.properties
src/org/waveprotocol/wave/client/wavepanel/impl/toolbar/i18n/LinkerMessages_es.properties
src/org/waveprotocol/wave/client/wavepanel/impl/toolbar/i18n/LinkerMessages_fr.properties
src/org/waveprotocol/wave/client/wavepanel/impl/toolbar/i18n/ToolbarMessages_fr.properties
src/org/waveprotocol/wave/client/wavepanel/view/dom/full/i18n/ReplyBoxMessages_es.properties
src/org/waveprotocol/wave/client/wavepanel/view/dom/full/i18n/ReplyBoxMessages_fr.properties
src/org/waveprotocol/wave/client/widget/profile/i18n/ProfilePopupMessages_es.properties
src/org/waveprotocol/wave/migration/build.xml
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1517927 13f79535-47bb-0310-9956-ffa450edef68
commit 615d44352fccf53db12bc43829d7d7f2c2155410
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 18:48:19 2013 +0000
Add socketio and oauth fetching to get-third-party
git-svn-id: https://svn.apache.org/repos/asf/incubator/wave/branches/wave-0.4-release@1517915 13f79535-47bb-0310-9956-ffa450edef68
commit 985cd57fbc08ca8dc9f332929d6d3c06399d20ea
Author: Ali Lown <al@apache.org>
Date: Tue Aug 27 18:44:07 2013 +0000
Assorted fixes to re-enable federation
https://reviews.apache.org/r/12725/
Contains the following commits:
commit 64024d5e781a6d0583d1ca32e609a2f659c8eb0c
Author: Ali Lown <al@apache.org>
Date: Fri Aug 16 12:52:49 2013 +0100
Address Yuri's comments on federation fixes.
commit e4e8c32350e161edbe9f882e2d5ba85ceeff00df
Author: Ali Lown <al@apache.org>
Date: Thu Jul 18 16:43:03 2013 +0100
Collection of fixes to bring re-enable federation
commit 252214fd13bee7f946118eba4df5b822b93f92dc
Author: Ali Lown <al@apache.org>
Date: Wed Jul 17 22:13:19 2013 +0100
Fix test-suite following these assorted fed fixes.
commit 1a7078230b9ed8c84a91e4bf4a2fe9982f4cfca8
Author: Ali Lown <al@apache.org>
Date: Sat Jun 8 20:54:14 2013 +0100
Revert "Revert "Fixes WAVE-354: SimpleSearch.DigestProxy should update only the opened""
This reverts commit 35313df5546622d9b10ac53b60b022317cebdeb6.
Although this commit no longer causes shiny's with federated waves, it
seems to be making the search much 'laggier' than it used to be. So, it