-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathChangeLog
6903 lines (3519 loc) · 181 KB
/
ChangeLog
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
2015-03-04 vjrj <[email protected]>
Updated copyrights
Minor fixed test
Shared items Ui issues. Removed from development UI
Removed some unchecked exception
Member/members plurar
Removed some unchecked exception
Wayport improved. Minor css change
Tutorial css issue in ff
Minor fix in Inbox count
2015-03-03 vjrj <[email protected]>
Playing with d&d in search panel
Trying to fix bower versions
Removed invalid z-index. Remove border in d&d
Fix thumb dragging
Fixes to make embed panel to work again
2015-03-02 vjrj <[email protected]>
Improved language selector
Client tools actions reordering
Changed address with proper alias name
Show tutorial for tool
Css no ophuscated while beta
Set group name please, always
Changed log level
Changed join icon
Sitebar links in xsmall
Added new mask based on paper mask
Some refactor. FF fixes
Chat logins now only with userhash
Moved translator to languages menu
Improved general error message
Show menu at position
Sometimes the parent menu hide fails
Removed dev warn
Chat logins now only with userhash
Minor fixes in event tool
Some changes in transactions
2015-03-01 vjrj <[email protected]>
Several fixes in buttons & menus
Home space improved
2015-02-28 vjrj <[email protected]>
Some htmllint. More work with initial spinner
More work with new UI
2015-02-25 vjrj <[email protected]>
Chat show/hide. Feedback btn moved. Theme minor fix
2015-02-24 vjrj <[email protected]>
Theme selection added again
2015-02-23 vjrj <[email protected]>
Several fixes in dialogs
Not visible on init
Minor style changes
Changed old buttons
Fix charset security issue in chrome
2015-02-22 vjrj <[email protected]>
Several fixes with new UI
2015-02-21 vjrj <[email protected]>
More work with UI rewritten
2015-02-20 vjrj <[email protected]>
More work with UI rewritten
2015-02-18 vjrj <[email protected]>
Minor refactorization
Chat icon animations
Sitebar actions reorder and some fix in search
Trying to show tutorials
Edit tools not visible in folders
Tools now not are floating
Your groups paper btn
Updated styles and chat icons
Opening waves in different space are consistent
2015-02-17 vjrj <[email protected]>
Hide reply button instead of remove
Scrollbar issues (WIP)
Fixed style in chat status. Show chat when presence changed
Chat status sitebar menu fixed
2015-02-16 vjrj <[email protected]>
Added chat icon to sitebar
Removed old wave scroll panel
Drawer smaller
Fix for avatar chat notifications
Remove edit links (instead of hide)
Fix for wave navigation. Added close drawer
Some fixes in menus, progress indicator & toolselectors
2015-02-15 vjrj <[email protected]>
More work adding bootstrap+polymer
2015-02-14 vjrj <[email protected]>
More work adding bootstrap+polymer
2015-02-12 vjrj <[email protected]>
Fixed group back image
More work adding bootstrap+polymer
2015-02-09 vjrj <[email protected]>
Added AutoDerived
Remove downloading messages from mvn output
First works with polymer
2015-01-30 vjrj <[email protected]>
KuneIcon is now an enum
More work adding bootstrap
2015-01-29 vjrj <[email protected]>
Updated kune ttf font
Added aria attribute
2015-01-27 vjrj <[email protected]>
More work with gwtbootstrap3 (wip)
2015-01-26 vjrj <[email protected]>
More work with gwtbootstrap3 (wip)
2015-01-25 Vicente J. Ruiz Jurado <[email protected]>
More work with gwtbootstrap3 (wip)
More work with gwtbootstrap3 (wip)
2015-01-24 Vicente J. Ruiz Jurado <[email protected]>
More work with gwtbootstrap3 (wip)
More work with gwtbootstrap3 (wip)
More work with gwtbootstrap3 (wip)
More work with gwtbootstrap3 (wip)
2015-01-23 Vicente J. Ruiz Jurado <[email protected]>
More work with gwtbootstrap3 (wip)
More work with gwtbootstrap3 (wip)
More work with gwtbootstrap3 (wip)
2015-01-18 Vicente J. Ruiz Jurado <[email protected]>
More work with gwtbootstrap3 (wip). Added smartmenus
2015-01-15 Vicente J. Ruiz Jurado <[email protected]>
More work with gwtbootstrap3 (wip)
Added lorem text utils
2015-01-07 Vicente J. Ruiz Jurado <[email protected]>
Added growl messages
2015-01-06 Vicente J. Ruiz Jurado <[email protected]>
Added gwtbootstrap3 (wip)
Added gwtbootstrap3
2015-01-05 Vicente J. Ruiz Jurado <[email protected]>
Minor refactorization
Updated subprojects classpath
Updated subprojects classpath
2015-01-01 Vicente J. Ruiz Jurado <[email protected]>
Fix some gadget broken urls
2014-12-22 Vicente J. Ruiz Jurado <[email protected]>
Debian default/kune minor change
Fixed exception when load kune in inbox (in a wave) and you try to set your prefs. Fix #587
Fixed exception when load kune in inbox (in a wave) and you try to set your prefs. Fix #587
More work in #586
Wave profiles should take into account avatars modifications, fixed #397
2014-12-21 Vicente J. Ruiz Jurado <[email protected]>
Avatar and backgrounds are shown in preferences. Solved cache issues when updated. Fix for #548 and #586
Avatar and backgrounds are shown in preferences. Solved cache issues when updated. Fix for #548 and #586
Fixed button message in change back
Add new spinner gif missing in previous commit
Logo and background uploading rewrited with image drag/drop.
Changed spinner image
Logo and background uploading rewrited with image drag/drop (wip)
2014-12-20 Vicente J. Ruiz Jurado <[email protected]>
Sandbox updated
2014-12-17 Vicente J. Ruiz Jurado <[email protected]>
Return a white png background instead of 404
Revert "Added upload css"
This reverts commit cbd547de1cc300285576751d199e2ab77b63ae44.
Added upload css
Removed unused interface
Fix inject error in embed
2014-12-16 Vicente J. Ruiz Jurado <[email protected]>
Some works trying to prevent logos recently changed caching
Improved jetty server gracefully shutdown
2014-12-15 Vicente J. Ruiz Jurado <[email protected]>
Trying to fix #544
Added force start to init script
Fix M2_VARIABLE repo in launchers
Added maven3 dep
2014-12-14 Vicente J. Ruiz Jurado <[email protected]>
Fix gwtupload error in servlet
Fix gwtupload error with ie10
Fixed 'ie19' agent
Removed ie6 agent
Fix typo in production configuration
Ignored client side strings test in server side
2014-12-13 Vicente J. Ruiz Jurado <[email protected]>
Improved superdev lauchers
More work in embed & Cors
Fixed some wrong Eventbus import
Moving resources following gwt 2.7 warnings
Updated changelog
Added some wave access violation exception
Updated to gwtp 1 without errors. Embed is not using gwtp and it's in other module
2014-12-12 Vicente J. Ruiz Jurado <[email protected]>
Removed unused presenter
2014-12-08 Vicente J. Ruiz Jurado <[email protected]>
Removed unused import
2014-12-07 Vicente J. Ruiz Jurado <[email protected]>
Catch not found user in profile fetcher
Added new wave servlets to Kune servlet managen exclusion list
Removed chat from boot (or trying to
Removed warning of unused variable
Added emite autoconfig as dependency for proper configuration
Improved lauchers for gwt 2.7 with debug
Some fixes for gwt 2.7
2014-12-06 Vicente J. Ruiz Jurado <[email protected]>
Playing with gwt 2.7
2014-12-05 Vicente J. Ruiz Jurado <[email protected]>
New wave version and gwt 2.6.1 (round 2, WIP)
2014-12-04 Vicente J. Ruiz Jurado <[email protected]>
Disable remote logging in dev mode
Updated supedev to 2.6.1. Fix gwt classpath order issue
2014-12-03 Vicente J. Ruiz Jurado <[email protected]>
Replaced deprecated EventBus
New wave version and gwt 2.6.1 (round 1)
2014-11-03 Vicente J. Ruiz Jurado <[email protected]>
Not using smack-java-4.1.0-alpha1 SNAPSHOT
Refactoring smack Base64
Improve xmpp server exceptions
2014-09-05 Florian Schmaus <[email protected]>
Remove .classpath from VCS
as it's automatically generated by "mvn eclipse:eclipse"
Switch to Smack 4.1-SNAPSHOT
2014-07-23 vjrj <[email protected]>
English updated thanks to Hector Cartagena
Fix for #585
2014-06-24 vjrj <[email protected]>
Pretty compile gwt for find bugs
2014-05-01 Antonio Tenorio Fornés <[email protected]>
Inbox messages cleared on logout
2014-04-10 vjrj <[email protected]>
Gadget proxy fixed, thanks to @pablojan for its comments
Merge branch 'master' of gitorious.org:kune/trunk
2014-04-09 pablojan <pablojan@[email protected]>
Fix gwt-gadget dependecy version
2014-04-07 Vicente J. Ruiz Jurado <[email protected]>
Debian changelog
More comments
Fixed openfire auth. Update core to Java 1.7. kune openfire svn repo imported
2014-04-06 vjrj <[email protected]>
Changelog updated
Merge branch 'master' of gitorious.org:kune/trunk
Remove duplicate interceptor
Merge branch 'master' into transactionsFixWithInitials
Fix for #582
Add Test interceptor to child
HasId in ParticipantEntity
Child injector interception testers
2014-04-03 pablojan <pablojan@[email protected]>
Merge with gadget sample GWT upgrade
2014-03-27 pablojan <pablojan@[email protected]>
Gadget sample upgrade to GWT 2.5.1
2014-03-27 vjrj <[email protected]>
Register servlet disabled. Partial #577
Separate normal dev mode profile from embed dev mode
Added command line option
2014-03-26 vjrj <[email protected]>
Trying to compile with ie9
Shutdown TODO
Fixed faulty test
Wave updated. Jetty updated to 9.1.1. New initials avatars
2014-03-25 vjrj <[email protected]>
Added ie10 to Production
Preparing white list for supedev
Make public method in PartUtils
Remove unused classes
Delete unrestorable sessions
2014-03-08 vjrj <[email protected]>
Renaming and refactoring of entry ws*.html
2014-03-07 vjrj <[email protected]>
Added an embed doc action to Share menu (#561)
Added an embed doc action to Share menu (#561)
Added a embDevelopment profile just for compile the embeded module
Some fixes and improvements for #561
Improve dev gwt compile speed
Improved digg icon
Dev mode added and documented. Remove ar from dev languages
Update gwt-maven plugin to 2.5.1
2014-03-06 vjrj <[email protected]>
Removed symbolmap packaging
Several fixes for #561
Fix in test removing double //
Slash minor bug in #561
Some broked test fixed for #550
Fix for lists subscriptors group list mode. Removed singleton for list and admin members (#550)
2014-03-05 vjrj <[email protected]>
Add 'Show in ui devel features' property and Mbean (fixed small typo)
Add 'Show in ui devel features' property and Mbean
Several bug fixes for #550
Removed deprecated elements in #550
Share dialog menuitem and List configure dialog separated (#550)
Some improvements for participants in share dialog (#550)
Share menu renamed. Avoid refreshing state with visibility changes
Share actions reordering
Wiki pages editable but also not editable share menu item
Re-enable share buttons additionaly to #550
Minor fix in share button (#550)
Some share in icons more clear
Some more share in social network options (closes #391, and more work in #550)
2014-02-26 Vicente J. Ruiz Jurado <[email protected]>
.gitignore updated
Improved web.xml and SearchEngineServletFilter.java documentation
2014-02-18 Vicente J. Ruiz Jurado <[email protected]>
Local link interception enabled (closes #366)
Removed debug info in embed compilation
New deb version
Fix the avatar urls in the content of embed panel
Added comment to *gwt.xml. More stack info in Embeded
2014-02-14 Vicente J. Ruiz Jurado <[email protected]>
Invite kune users to groups/list. Partial work for enhancement #467 (Thanks to Antonio Tenorio Fornés)
Review: http://reviews.comunes.org/r/23/
2014-01-28 Vicente J. Ruiz Jurado <[email protected]>
Added copyright to files without copyright. Correct old dates in copyrights
2014-01-19 pablojan <pablojan@[email protected]>
Merge branch 'wave-db-indexer-fix'
2014-01-16 pablojan <pablojan@[email protected]>
#571, #572 Fixes
2014-01-13 vjrj <[email protected]>
Added content refresh after share dialog action
Better wave perms in share dialog
Share to net visible or not on action
List visibility in menu button
Share dialog resized
Improved share menu icons, showing visible status
Change not shared to world icon
Close share dialog on space change
2014-01-04 Vicente J. Ruiz Jurado <[email protected]>
More actions for #550
2014-01-03 Vicente J. Ruiz Jurado <[email protected]>
Remove Override because compilation fails
More copyrights dates to 2014
Changelog updated
Clean-up and format
Import reorganization
Added copyright
Changed copyrigths to 2014
Added copyrigths to new files
Updated Copyright to 2014
Updated changelog
Minor fix in admin share dialog actions
Merged with shareDialog (3)
LinkInterceptor enabled if dev=true
Merged with shareDialog (2)
Merged with shareDialog
Actions when we aren't in dev mode reorganized
Disabled identica share button (#391 wip)
Added a CORS Servlet custom filter
change url in wsexs to easy test
2013-12-18 vjrj <[email protected]>
Added remote login to dev
2013-12-17 vjrj <[email protected]>
Enabled remote logs in devel
Merge branch 'master' of gitorious.org:kune/trunk
Enabled remote logs in devel
2013-12-16 Vicente J. Ruiz Jurado <[email protected]>
More work in #561 to embed waves (jsni export improved, clientdownutils
2013-12-14 Vicente J. Ruiz Jurado <[email protected]>
Trying to compile without sourcemaps
More work in #561 to embed waves (added remote logging)
More work in #561 to embed waves (js variables)
More work in #561 to embed waves (sitebar position and styles)
Minor fix in embed avatars
More work in #561 to embed waves
Minor refactorization in embed
2013-12-09 Vicente J. Ruiz Jurado <[email protected]>
Fix for #567. Safari on iphone/ipad capitalize the first letter of username
Fix for #567. Safari on iphone/ipad capitalize the first letter of username
Fix for #543 (allow spaces and other separators in invitations)
2013-12-07 vjrj <[email protected]>
Added missing new class RESTResult
More work for #561 (exceptions return, webclient should not search)
Improved transactions for #355
Minor changes in #561 to embed waves (avatar urls, panel position)
Fix minor rule
Tabs instead of spaces in rules
2013-12-06 vjrj <[email protected]>
Starting to index contents
Wave indexing via db (fix #355)
More work in wave indexing #355
2013-12-05 vjrj <[email protected]>
Merge branch 'customWaveIndex' of gitorious.org:kune/trunk into customWaveIndex
Conflicts:
src/main/java/cc/kune/core/server/PlatformServerModule.java
src/main/java/cc/kune/core/server/manager/impl/UserManagerDefault.java
src/main/java/cc/kune/core/server/rack/RackServletFilter.java
src/main/java/cc/kune/core/server/rack/filters/gwts/DelegatedRemoteServlet.java
src/main/java/cc/kune/domain/User.java
Rebase with master
Rebase
Some minor changes in Custom indexer
2013-12-05 Vicente J. Ruiz Jurado <[email protected]>
Custom wave indexing #355. New db param (partial)
Custom wave indexing #355 (partial)
Custom wave indexing #355 (partial)
Custom wave indexing #355 (partial)
2013-12-05 vjrj <[email protected]>
Better logs in method calls
Exclude jetty from htmlunit dependency (fix for #556)
2013-12-04 vjrj <[email protected]>
Proxy servlet moved from hablar (should fix #566)
2013-12-04 Vicente J. Ruiz Jurado <[email protected]>
gin warning back. htmlunit upgraded. Some warnings removed. Exception propagation
Removed gin @Nonnull warning
New event to load wave session first on sign-in
Link interception handles non permission exception
2013-12-03 Vicente J. Ruiz Jurado <[email protected]>
More logs
Added some aclaration in reserved names
Signout fix in #561. html minor changes
More work for #561
2013-12-02 Vicente J. Ruiz Jurado <[email protected]>
Cleaning up userhash and sessions in embedded system
Added support for Cross-Origin Resource Sharing (CORS)
More session management refactor. Embedded minor fix on startup
Playing with delta dir/file names
2013-11-30 Vicente J. Ruiz Jurado <[email protected]>
Configuration via JSNI in #561
Starting with embed two waves
2013-11-29 Vicente J. Ruiz Jurado <[email protected]>
Added conf options to embed panel (#561)
More session refactorization
2013-11-28 vjrj <[email protected]>
kune session more integrated with wave session
More work in #361 cross-domain
I18n refactorization
I18n refactorization
Removed chat dependency from embbeded part (will be add in the futre)
LastConnected dummy class
I18n refactorization
2013-11-27 vjrj <[email protected]>
SessionCheck to clean Session from rpc calls. More work in #361 to embed waves
2013-11-26 vjrj <[email protected]>
Fixed some test getting wave session
More work with #361
Fix in signin(waveurl) starting up
Fix lowercase of wave refs
Several fixes in StateManager changes, refactorization, and url redirects in signin
Custom wave titles handler
Fix for button dialog margins
Updated wave with minor style and i18n fixes
2013-11-25 Vicente J. Ruiz Jurado <[email protected]>
Changelog updated
Starting to play with superdev
2013-11-24 Vicente J. Ruiz Jurado <[email protected]>
Rendered waves minor style change
Listen to history change
Styling embed panel
Renamed embed html file
Fast way to update archiva with new socketio jars
Added jquery dependency and sample of embeding kune remote gwt
Removed js script in gwt.xml of dependencies
2013-11-23 Vicente J. Ruiz Jurado <[email protected]>
Some work with #563
cross-site deployment xsiframe linker for #561
0.3.0+b31
cross-site deployment linker for #561
2013-11-21 vjrj <[email protected]>
Embed by id
Comming back to ask if the current language it's different from the user one
Fixe embed sample code
Minor fix in inbox count
2013-11-20 vjrj <[email protected]>
Fix minor but in #561
Allow embed kune waves (closes #561)
Merge with embedwaves #561
Translations updated (without wave translations)
More work in #561
More work in #561
More work with #561
2013-11-19 vjrj <[email protected]>
start html css clean. Added getContent by WaveId
2013-11-18 vjrj <[email protected]>
More work in #561
More work with #561. Fix for #504
More work with #561. Fix for #504
2013-11-13 Vicente J. Ruiz Jurado <[email protected]>
Some more initial work with #561
Some initial work with #561
2013-11-08 Vicente J. Ruiz Jurado <[email protected]>
Fix for #559. Use email for sign-in. Thanks to @jeliaspr for the report
More work in #550 (wip)
2013-11-06 Vicente J. Ruiz Jurado <[email protected]>
More changes in #550
2013-11-06 vjrj <[email protected]>
Linkinterceptor disabled by now
Merge minor changes
Merge branch 'link-interceptor' of gitorious.org:kune/trunk into link-interceptor
Conflicts:
src/main/java/cc/kune/core/client/state/HistoryWrapper.java
More tests in LinkInterceptor (#254 and #366)
Refactorization of LinkInterceptor (#254 and #366)
Closes #254 and #366 (wait for ?dev=true to merge)
link interceptor rebase
Links interceptor (partial #366)
link interceptor rebase
Rebase
Links interceptor (partial #366)
2013-11-05 vjrj <[email protected]>
JAutodoc & code format
Copyright added
Copyright added
Copyright added
Copyright added
CLA added. Apache-rat plugin
More tests in LinkInterceptor (#254 and #366)
Refactorization of LinkInterceptor (#254 and #366)
2013-11-04 vjrj <[email protected]>
Merge branch 'link-interceptor' of gitorious.org:kune/trunk into link-interceptor
Conflicts:
src/main/java/cc/kune/core/client/CoreGinModule.java
src/main/java/cc/kune/core/client/CoreParts.java
Closes #254 and #366 (wait for ?dev=true to merge)
link interceptor rebase
Rebase
Links interceptor (partial #366)
2013-11-04 Vicente J. Ruiz Jurado <[email protected]>
Added improved group actions for #550
2013-10-31 Vicente J. Ruiz Jurado <[email protected]>
Improving share item action responses (#550, wip)
2013-10-30 vjrj <[email protected]>
Minor typo in gwt.xml
Increased heap in pom.xml
Added Greek translation thanks to Akis Vassiliadis