forked from comunes/kune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
6276 lines (3204 loc) · 168 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
2014-01-03 Vicente J. Ruiz Jurado <[email protected]>
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
Added Greek to translated languages. kune.cc in i18n updated scripts
2013-10-29 vjrj <[email protected]>
More Donothing callbacks
Removed all public/no-public action (#550)
List public /non-public in #550
Fix for new translator members
Removed some old action that now in in the #550 Shared Dialog
Added d&d action, and search action to ShareDialog in #550)
Add InDevelopment ?dev=true actions. Share action renamed in #550
Add InDevelopment ?dev=true actions. Share action renamed in #550
Use Window.Location because has different implementations per browser
2013-10-28 vjrj <[email protected]>
More actions rol possibilities for #550
Minor typo in pom.xml (compilation fails)
2013-10-24 vjrj <[email protected]>
More actions rol possibilities (actions for < higher rol)
2013-10-23 vjrj <[email protected]>
Minor change in list management (#550)
mx memory increased in production
Added drag and drop for #550
Share dialog should manage list members also, wip (#550)
Share dialog should manage list members also, wip (#550)
Participant share item/actions and group admin/owners improved
Participant share item/actions and group admin/owners improved
Contents ACL now with grouped list of admins/editors (not all the list of members)
Refactorization, some icons, and some text fixed in #550
More actions in #550
2013-10-22 vjrj <[email protected]>
Minor css horizontal adjustment in Share list
Some actions reorder
More UI changes for #550
ClientActions refactorization
2013-10-21 Vicente J. Ruiz Jurado <[email protected]>
Minor css change
More UI changes for #550 (list actions)
2013-10-20 Vicente J. Ruiz Jurado <[email protected]>
More UI changes for #550 (sizes of dialog)
Actions reorganization
ClientActions refactorization
2013-10-19 vjrj <[email protected]>
Font icon with normal font-weight
Trying to move share to members menu items to a submenu (wip)
Removed share in nets menu items
2013-10-18 vjrj <[email protected]>
More UI changes for #550
More UI changes for #550
More UI changes for #550
More UI changes for #550
Allow create gui descriptor using other existing descriptor
Rebase
More UI changes for #550
Sharing dialog (wip of #550)
Sharing dialog (wip of #550)
More server changes for #550
Added Janine Koark to Credits
More UI changes for #550
Some works in access list for #550
Improved IconLabel and Label descriptors
Sharing dialog (wip of #550)
Sharing dialog (wip of #550)
2013-10-17 vjrj <[email protected]>
Added provided to gwt-dev
2013-10-15 vjrj <[email protected]>
Add safari to development gwt.xml
2013-10-14 vjrj <[email protected]>
Fix width issue in wave url prompt
Removed some deprecated method in menu items
Use kune icons font instead of main image (png) icons. Closes #553
Some more work with #553
2013-10-12 Vicente J. Ruiz Jurado <[email protected]>
Some more work with png icons subtitution by kune ttf font (#553)
Some work with png icons subtitution by kune ttf font (#553)
Added kune font-face. Closes #551 (thanks to Aitor and Jorge)
2013-10-04 vjrj <[email protected]>
Merge branch 'master' of gitorious.org:kune/trunk
2013-09-06 samer <[email protected]>
Merge branch 'master' of git://gitorious.org/kune/trunk
2013-08-23 vjrj <[email protected]>
right/center/left disabled buttons css fix
2013-07-26 vjrj <[email protected]>
Merge branch 'shareDialog' of gitorious.org:kune/trunk into shareDialog
More server changes for #550
Added Janine Koark to Credits
More UI changes for #550
Some works in access list for #550
Improved IconLabel and Label descriptors
Sharing dialog (wip of #550)
Sharing dialog (wip of #550)
2013-07-08 vjrj <[email protected]>
AlternateMessage instead of deprecated Plural in gwt
Merge gitorious.org:kune/trunk
New package (with new versions of gwt, emite, etc
Fixed tabs visibility
2013-07-05 vjrj <[email protected]>
Tabs fix (wip)
2013-07-04 vjrj <[email protected]>
Switched to accordion chat
Update DEV-GUIDE with new version of gwt
emite/hablar chat updated
Updated emite and comunes repository
Setting initial size of split
update of gitignore
jsr-305 added already as a dependency
gwt compile
Upgraded gwtp. Emite using gin
2013-07-03 vjrj <[email protected]>
upgrade gwt-log etc
gwt 2.5.1 wip
2013-07-01 vjrj <[email protected]>
link interceptor rebase
Rebase
Links interceptor (partial #366)
Rebase
Some minor changes in Custom indexer
2013-07-01 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-06-27 vjrj <[email protected]>
More server changes for #550
2013-06-26 vjrj <[email protected]>
Added Janine Koark to Credits
More UI changes for #550
Some works in access list for #550
Improved IconLabel and Label descriptors
2013-06-25 vjrj <[email protected]>
Sharing dialog (wip of #550)
Sharing dialog (wip of #550)
2013-06-18 vjrj <[email protected]>
Import of i18n in utf8
Export of i18n in utf8
2013-06-17 vjrj <[email protected]>
i18n export tool improved
Fix for #549: some wave messages are double translated
i18n import/export tool improved (verbose & no-act options)
i18n import/export tool improved (verbose & no-act options)
2013-06-14 vjrj <[email protected]>
Translations updated
2013-05-15 pablojan <[email protected]>
Merge branch 'master' of gitorious.org:kune/trunk
Fix for #536 Add MBean support for Log4j
2013-05-13 vjrj <[email protected]>
Translations updated
Translations updated
Fix for #547: i18n client untranslated strings configurable
2013-04-27 samer <[email protected]>
Merge branch 'master' of git://gitorious.org/kune/trunk
2013-04-18 vjrj <[email protected]>
Translations updated
Translations updated
2013-04-16 vjrj <[email protected]>
Removing comments in properties (more in #533)
Typo in db migration
2013-04-15 vjrj <[email protected]>
Improving export script #533. Requires db migration (wip)
Improving export script #533 (wip)
Adding export scripts #533 (wip)
More work in #533 (wip)
2013-04-13 vjrj <[email protected]>
Generalized i18n-properties-import
Added Portuguese Properties
2013-04-12 vjrj <[email protected]>
Added Portuguese full translation (thanks to http://kune.cc/#mastabloid)
2013-04-09 samer <[email protected]>
Last version of April 9 2013 presentation: source and text-to-paths version
2013-04-09 vjrj <[email protected]>
Merge branch 'master' of ssh://gitorious.org/kune/trunk
Fix for #535 Add a mbean task to enable/disable sitemap/htmlunit generation
2013-04-08 samer <[email protected]>
Merge branch 'master' of git://gitorious.org/kune/trunk
Added features + sociopolitical context to SVG: NGO presentation, Abril 9
2013-04-06 vjrj <[email protected]>
Merge gitorious.org:kune/trunk
Added Esperanto partial translation
2013-04-05 vjrj <[email protected]>
Fix for #534 Add Add mbean to reindex groups/users
Merge gitorious.org:kune/trunk
More work with i18n wave import/export (almost ready). Issue #533
More work with i18n wave import/export (almost ready)
2013-04-05 samer <[email protected]>
Merge branch 'master' of git://gitorious.org/kune/trunk
name change SVG
First full draft of SVG presentation, April 9
2013-04-04 vjrj <[email protected]>
Classpath in kune-cli updated
More work with i18n wave import/export (almost ready)
More work with i18n wave import/export
Minor change
More work with i18n wave import/export
Merge gitorious.org:kune/trunk
Fix for #257
2013-04-04 samer <[email protected]>
Merge branch 'master' of git://gitorious.org/kune/trunk
Starting SVG presentation NGOs April 9, 2013
2013-04-03 vjrj <[email protected]>
I18n awk code refactorized
More work in i18n import from wave
More work in i18n import
2013-04-02 vjrj <[email protected]>
Added some mbean methods to SearchEngineServletFilter (related to #512 #286 and #70)
Added some MBean to Search Servlet (wip)
2013-03-29 samer <[email protected]>
general update of the licenses in the Copyright file + minor fixes
Minor fixes in Debian package description
Updated README.wave-import
README.wave-import: Formatting, clarifying, and added troubleshooting
Changed format of INSTALL to org-mode format + minor fixes
2013-03-28 samer <[email protected]>
Proper beginner's Readme for CLI
Minor fix in DEV-GUIDE
Merge branch 'master' of git://gitorious.org/kune/trunk
Working on #240: cli, adding tests
2013-03-27 vjrj <[email protected]>
Fix for #520. Lauch sitemap generation via MBean
Some work with #525
Some work with #520 #525 and following #70
2013-03-22 vjrj <[email protected]>
Merge branch 'master' of git://gitorious.org/kune/trunk
2013-03-22 pablojan <[email protected]>
Implemented #70 Reload server configuration via JMX
2013-03-22 vjrj <[email protected]>
Avatar/Logo text can be translated
New gadget - Taskboardy+ by Patricio González Sevilla
Some test for #525
2013-03-20 vjrj <[email protected]>
i18n-wave2kune (wip)
2013-03-19 vjrj <[email protected]>
More work in i18n-wave2kune-import
2013-03-18 vjrj <vjrj@sanuk.(none)>
i18n wave import updated (wip)
2013-03-16 samer <[email protected]>
Added GRASIA to the Credits, for sharing resources
2013-03-15 vjrj <[email protected]>
first works with wave to kune i18n string import
Super admins group added
Removed Chinese from dev environment
Several internationalization fixes (locales with Countries names)
MustBeTranslator renamed to SholdBeMember annotation
SuperUser annotation renamed to MustBeTranslator
pom parent in openfireauth module
2013-03-14 vjrj <[email protected]>
openfireauth module imported from svn
openfireauth module imported from svn
Cleaning color picker (removed duplicated classes)
2013-03-13 vjrj <[email protected]>
Added Chocise César to the CREDITS (thanks for start with the Brasilian Portuguese translation of kune)
Sitemap transaction added of group counts. Continuation of #286
Added zh_TW zh_HK instead of zh-Hant
Added Traditional Chinese translation, thanks to Jeremy Lam
2013-03-13 samer <[email protected]>
updated kune-cli pom with current repositories and dependencies
Included all rpcservices to kune-services in pom
Added migration problem to TROUBLESHOOT
Added Jar package generation to INSTALL
Minor fixes in dev-guide
2013-03-12 samer <[email protected]>
Clarified and fixed some things in dev-guide
Added several error+solution in troubleshooting
2013-03-11 vjrj <[email protected]>
Add pt-br to initial install
Color picker improved
Fix Brazilian Portuguese
Some fixes in color picker and pt_BR locale
Removed standard css added by error
Added color and background color buttons to editor. Added Brazilian Portuguese
2013-03-10 vjrj <[email protected]>
Added Brazilian Portuguese
Another css class
2013-03-08 vjrj <[email protected]>
Added complex color picker (wip), and cssresource
2013-03-07 vjrj <[email protected]>
Complex color picker started
color picker renamed
color picker renamed
2013-03-06 vjrj <[email protected]>
More work in color picker
More color pickers
2013-03-05 vjrj <[email protected]>
Color palette
Color palette
2013-03-04 vjrj <[email protected]>
More work in #286. Added logs and smaller transactions
2013-03-02 vjrj <[email protected]>
Changed database initialization test. Added more logs
Merge gitorious.org:kune/trunk
ToolbarStyles moved
2013-03-01 vjrj <[email protected]>
Added some more indexes to db (thanks to Pablo Ojanguren @pablojan). Fix #510
2013-02-26 vjrj <[email protected]>
Added state store in cookie for testing
2013-02-23 samer <[email protected]>
Merge branch 'master' of git://gitorious.org/kune/trunk
.classpath in .gitignore. Close #449
2013-02-21 vjrj <[email protected]>
Added archiva snapshot repo
I18n basic utils
2013-02-20 vjrj <[email protected]>
Removed invalid version
Use of standard EvenBus in gadget. Deploy conf to archiva.comunes.org
Use of standard EvenBus in gadget. Deploy conf to archiva.comunes.org
2013-02-19 vjrj <[email protected]>
Added web.xml
Added web.xml
Merge gitorious.org:kune/trunk
2013-02-18 vjrj <[email protected]>
Added web.xml, thanks to senrof21
2013-02-17 samer <[email protected]>
Merge branch 'master' of git://gitorious.org/kune/trunk
Cleaning and formatting Kune CLI
2013-02-17 vjrj <[email protected]>
Minor change
2013-02-16 vjrj <[email protected]>
Merge ssh://gitorious.org/kune/trunk