forked from fightling/demowatch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
3629 lines (2733 loc) · 140 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
2009-07-14 Marc Christenfeldt <[email protected]>
* .gitignore, app/controllers/application_controller.rb,
app/controllers/events_controller.rb,
app/views/events/_bubble.rhtml, app/views/events/show.html.haml,
config/gmaps_api_key.yml, config/map24_api_key.yml,
config/mapquest_api_key.yml, config/multimap_api_key.yml,
public/javascripts/clusterer.js,
public/javascripts/mapstraction-geocode.js,
public/javascripts/mapstraction-route.js,
public/javascripts/mapstraction.js,
public/javascripts/ym4r-mapstraction.js,
public/stylesheets/application.css, vendor/plugins/haml/init.rb,
vendor/plugins/ym4r_mapstraction/README,
vendor/plugins/ym4r_mapstraction/gmaps_api_key.yml.sample,
vendor/plugins/ym4r_mapstraction/init.rb,
vendor/plugins/ym4r_mapstraction/install.rb,
vendor/plugins/ym4r_mapstraction/javascript/clusterer.js,
vendor/plugins/ym4r_mapstraction/javascript/mapquest-js/mqcommon.js
,
vendor/plugins/ym4r_mapstraction/javascript/mapquest-js/mqexec.js,
vendor/plugins/ym4r_mapstraction/javascript/mapquest-js/mqobjects.j
s,
vendor/plugins/ym4r_mapstraction/javascript/mapquest-js/mqutils.js,
vendor/plugins/ym4r_mapstraction/javascript/mapstraction-geocode.js
,
vendor/plugins/ym4r_mapstraction/javascript/mapstraction-route.js,
vendor/plugins/ym4r_mapstraction/javascript/mapstraction.js,
vendor/plugins/ym4r_mapstraction/javascript/ym4r-mapstraction.js,
vendor/plugins/ym4r_mapstraction/lib/mapstraction_plugin/helper.rb,
vendor/plugins/ym4r_mapstraction/lib/mapstraction_plugin/mapping.rb
,
vendor/plugins/ym4r_mapstraction/lib/mapstraction_plugin/mapstracti
on.rb,
vendor/plugins/ym4r_mapstraction/lib/mapstraction_plugin/overlay.rb
,
vendor/plugins/ym4r_mapstraction/lib/mapstraction_plugin/routing.rb
, vendor/plugins/ym4r_mapstraction/lib/ym4r_mapstraction.rb,
vendor/plugins/ym4r_mapstraction/map24_api_key.yml.sample,
vendor/plugins/ym4r_mapstraction/mapquest_api_key.yml.sample,
vendor/plugins/ym4r_mapstraction/multimap_api_key.yml.sample,
vendor/plugins/ym4r_mapstraction/rakefile.rb,
vendor/plugins/ym4r_mapstraction/tasks/ym4r_mapstraction_tasks.rake
, vendor/plugins/ym4r_mapstraction/test/ym4r_mapstraction_test.rb: * multiple maps * untranslated texts red underlined * demowatch.de redirect nach www.demowatch.de statt www.demowatch.eu
2009-07-14 Marc Christenfeldt <[email protected]>
* : commit 49e1f9e5b9474ce921aeac488fe0e4727e899774 Author:
U-HAL9000\pat <pat@hal9000.(none)> Date: Mon Jul 13 20:55:28 2009
+0200
2009-07-13 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/application_controller.rb: top-level domain
affects language
2009-07-13 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/application_controller.rb: fixed
extract_locale_from_accept_language_header
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/edit.html.haml: 2nd geo key for demowatch.eu
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/_fields.html.haml: 2nd geo key for demowatch.eu
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/show.html.haml: 2nd geo key for demowatch.eu
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/helpers/application_helper.rb: 2nd geo key for demowatch.eu
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/application_controller.rb,
app/controllers/users_controller.rb,
app/helpers/application_helper.rb, app/views/events/show.html.haml,
config/locales/de_views_users.yml,
config/locales/en_views_users.yml: 2nd geo key for demowatch.eu
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/application_controller.rb: fix redirection
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/application_controller.rb:
multilanguage/multidomain title
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/application_controller.rb: fix redirection
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/application_controller.rb,
app/views/layouts/application.html.haml,
config/locales/de_layouts_application.yml,
config/locales/en_layouts_application.yml: multilanguage/multidomain
title
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/application_controller.rb, config/environment.rb:
locale by browser language
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/application_controller.rb: locale request
parameter
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* config/environment.rb, config/locales/de.rb, config/locales/en.rb:
improved date display
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/archive.html.haml,
app/views/events/index.html.haml, app/views/front/show.html.haml:
minor formatting fix
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* config/locales/de_views_front.yml, config/locales/en.yml,
config/locales/en_layouts_application.yml,
config/locales/en_views_events.yml,
config/locales/en_views_front.yml: minor english translations
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/front/show.html.haml: minor formatting fix
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/helpers/events_helper.rb, app/views/events/archive.html.haml,
app/views/events/index.html.haml, app/views/events/show.html.haml,
app/views/front/show.html.haml,
app/views/organisations/index.html.haml, config/locales/de.yml,
config/locales/de_layouts_application.yml,
config/locales/de_views_events.yml,
config/locales/de_views_front.yml: improved index code
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/helpers/events_helper.rb, app/views/events/archive.html.haml,
app/views/events/index.html.haml, config/locales/de.rb,
config/locales/en.rb, public/stylesheets/application.css: better
date display
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/layouts/application.html.haml: fixed syntax error
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/layouts/application.html.haml,
config/locales/de_layouts_application.yml: new keywords
2009-07-12 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/index.html.haml,
config/locales/de_views_events.yml,
config/locales/de_views_front.yml: added yesterday and tomorrow text
in event list
2009-07-11 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/front/presse.html.haml: minor text fix
2009-07-11 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/front/presse.html.haml: added press enty
2009-07-11 U-HAL9000\pat <pat@hal9000.(none)>
* config/locales/de_views_front.yml: minor text fix
2009-07-11 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/events_controller.rb: enlarged map cookie lifetime
2009-07-11 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/index.html.haml,
public/stylesheets/application.css: link to demowatch twitter blog
2009-07-10 U-HAL9000\pat <pat@hal9000.(none)>
* config/locales/en.rb, config/locales/en.yml,
config/locales/en_layouts_application.yml,
config/locales/en_views_events.yml,
config/locales/en_views_front.yml,
config/locales/en_views_organisations.yml,
config/locales/en_views_sessions.yml,
config/locales/en_views_users.yml: english translation (beta)
2009-07-10 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/events_controller.rb, app/models/comment.rb,
app/views/events/show.html.haml, config/locales/de_views_events.yml:
working on comment form improvement
2009-07-10 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/front/imprint.html.haml,
config/locales/de_views_front.yml: minor imprint link improvements
2009-07-10 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/application_controller.rb,
app/controllers/events_controller.rb,
app/controllers/organisations_controller.rb,
app/controllers/sessions_controller.rb,
app/controllers/users_controller.rb,
config/locales/de_layouts_application.yml,
config/locales/de_views_events.yml,
config/locales/de_views_organisations.yml,
config/locales/de_views_sessions.yml,
config/locales/de_views_users.yml: translated texts in the
controllers
2009-07-10 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/front/imprint.html.haml,
config/locales/de_views_front.yml: improved imprint
2009-07-09 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/index.html.haml,
config/locales/de_views_events.yml: another google maps warning
2009-07-09 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/events_controller.rb,
app/views/events/show.html.haml, config/locales/de_views_events.yml:
google maps on user request
2009-07-09 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/show.html.haml: fix error at event page when not
logged in
2009-07-09 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/show.html.haml,
config/locales/de_views_events.yml: comment hint
2009-07-09 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/show.html.haml: comment user names display for
administrators
2009-07-09 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/events_controller.rb,
app/helpers/events_helper.rb, app/models/event.rb,
app/models/user.rb, app/views/events/show.html.haml,
config/locales/de.rb, config/locales/de_views_events.yml,
db/schema.rb, public/stylesheets/application.css: delete comments
2009-07-09 U-HAL9000\pat <pat@hal9000.(none)>
* app/models/comment.rb, app/models/comment_mailer.rb,
app/views/comment_mailer/mail.haml,
db/migrate/20090709111236_create_comments.rb,
vendor/plugins/acts_as_commentable/CHANGELOG,
vendor/plugins/acts_as_commentable/MIT-LICENSE,
vendor/plugins/acts_as_commentable/OLD_README,
vendor/plugins/acts_as_commentable/README,
vendor/plugins/acts_as_commentable/Rakefile,
vendor/plugins/acts_as_commentable/acts_as_commentable.gemspec,
vendor/plugins/acts_as_commentable/generators/comment/comment_gener
ator.rb,
vendor/plugins/acts_as_commentable/generators/comment/templates/com
ment.rb,
vendor/plugins/acts_as_commentable/generators/comment/templates/cre
ate_comments.rb, vendor/plugins/acts_as_commentable/init.rb,
vendor/plugins/acts_as_commentable/install.rb,
vendor/plugins/acts_as_commentable/lib/acts_as_commentable.rb,
vendor/plugins/acts_as_commentable/lib/comment_methods.rb,
vendor/plugins/acts_as_commentable/lib/commentable_methods.rb,
vendor/plugins/acts_as_commentable/rails/init.rb,
vendor/plugins/acts_as_commentable/rails/lib/acts_as_commentable.rb
, vendor/plugins/acts_as_commentable/rails/lib/comment_methods.rb,
vendor/plugins/acts_as_commentable/rails/lib/commentable_methods.rb
,
vendor/plugins/acts_as_commentable/tasks/acts_as_commentable_tasks.
rake,
vendor/plugins/acts_as_commentable/test/acts_as_commentable_test.rb:
first version of the comments for events feature
2009-07-09 U-HAL9000\pat <pat@hal9000.(none)>
* app/helpers/events_helper.rb,
app/helpers/organisations_helper.rb,
app/views/events/show.html.haml,
app/views/organisations/show.html.haml,
public/stylesheets/application.css: added ownage specific context
menu item color
2009-07-08 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/organisations/index.html.haml: minor text fix
2009-07-08 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/archive.html.haml,
app/views/events/index.html.haml,
app/views/organisations/index.html.haml: changed position of anchor
indizies
2009-07-08 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/organisations/index.html.haml: fixed anchor indizes with
umlauts
2009-07-08 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/index.html.haml: fixed anchor indizes
2009-07-08 U-HAL9000\pat <pat@hal9000.(none)>
* public/stylesheets/application.css: anchor indizes minor style
sheet changes
2009-07-08 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/archive.html.haml,
app/views/events/index.html.haml,
app/views/organisations/index.html.haml,
config/locales/de_views_organisations.yml,
public/stylesheets/application.css: anchor indizes in most lists
2009-07-08 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/archive.html.haml,
app/views/events/index.html.haml,
app/views/organisations/index.html.haml,
public/stylesheets/application.css: separators everywhere :)
2009-07-08 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/layouts/application.html.haml: fix active tab 'Themen'
on current tags page
2009-07-08 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/front_controller.rb,
app/views/front/index.html.haml, config/locales/de_views_front.yml,
config/routes.rb: new current demonstrations tag cloud
2009-07-08 U-HAL9000\pat <pat@hal9000.(none)>
* config/locales/de_views_organisations.yml: minor text change
2009-07-08 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/archive.html.haml,
app/views/events/index.html.haml, app/views/users/edit.html.haml,
public/stylesheets/application.css: year seperators in event lists
2009-07-08 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/users/edit.html.haml, config/locales/de_views_users.yml:
new password change feature texts
2009-07-08 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/users_controller.rb,
app/views/users/edit.html.haml,
vendor/plugins/restful_authentication/README,
vendor/plugins/restful_authentication/Rakefile,
vendor/plugins/restful_authentication/generators/authenticated/USAG
E,
vendor/plugins/restful_authentication/generators/authenticated/auth
enticated_generator.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/activation.html.erb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/authenticated_system.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/authenticated_test_helper.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/controller.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/fixtures.yml,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/functional_spec.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/functional_test.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/helper.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/login.html.erb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/mailer.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/mailer_test.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/migration.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/model.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/model_controller.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/model_functional_spec.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/model_functional_test.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/model_helper.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/observer.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/signup.html.erb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/signup_notification.html.erb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/unit_spec.rb,
vendor/plugins/restful_authentication/generators/authenticated/temp
lates/unit_test.rb,
vendor/plugins/restful_authentication/install.rb,
vendor/plugins/restful_authentication/lib/restful_authentication/ra
ils_commands.rb: new password change feature and new version of
restful_authentication
2009-07-05 U-HAL9000\pat <pat@hal9000.(none)>
* app/models/user.rb, app/views/users/show.html.haml,
config/locales/de_layouts_application.yml,
config/locales/de_views_users.yml,
db/migrate/20090703113352_add_event_owner.rb: missing migration file
2009-07-05 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/events_controller.rb, app/models/event.rb,
app/models/user.rb, db/schema.rb: migration that adds user_id to
event
2009-07-03 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/sessions_controller.rb: message on login failure
2009-07-03 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/events_controller.rb: FIX: fixed permission to
cretae an event with any organisator
2009-07-03 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/events_controller.rb: FIX: fixed permission to
cretae an event with any organisator
2009-07-01 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/events_controller.rb: initiators sorted by title
2009-07-01 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/events_controller.rb: all initiators selectable in
new event dialog
2009-06-03 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/organisations/new.html.haml,
config/locales/de_views_organisations.yml: added warning to new
initiator dialog
2009-05-27 Simon <simon@quad.(none)>
* app/models/user_mailer.rb, lib/tasks/resignup.rake: finished
resignup task
2009-05-27 Simon <simon@quad.(none)>
* lib/tasks/resignup.rake: new rake task resignup
2009-05-27 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/front/presse.html.haml: new press, re-signup user mail
2009-05-27 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/user_mailer/resignup_notification.html.erb: new press,
re-signup user mail
2009-05-27 U-HAL9000\pat <pat@hal9000.(none)>
* app/models/user.rb: fixed doubled activation code generation
2009-04-16 U-HAL9000\pat <pat@hal9000.(none)>
* config/locales/de_views_front.yml: fixed translation of press
2009-04-16 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/front/presse.html.haml,
config/locales/de_views_front.yml: new press entry
2009-04-10 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/users_controller.rb,
app/helpers/application_helper.rb,
app/views/events/_fields.html.haml,
app/views/events/archive.html.haml,
app/views/events/edit.html.haml, app/views/events/index.html.haml,
app/views/events/new.html.haml, app/views/events/show.html.haml,
app/views/front/about.html.haml,
app/views/front/disclaimer.html.haml,
app/views/front/imprint.html.haml, app/views/front/index.html.haml,
app/views/front/presse.html.haml, app/views/front/show.html.haml,
app/views/front/tutorial.html.haml,
app/views/layouts/application.html.haml,
app/views/organisations/_fields.html.haml,
app/views/organisations/edit.html.haml,
app/views/organisations/index.html.haml,
app/views/organisations/new.html.haml,
app/views/organisations/show.html.haml,
app/views/sessions/new.html.haml, app/views/users/edit.html.haml,
app/views/users/new.html.haml, app/views/users/show.html.haml,
config/environment.rb, config/locales/de_layouts_application.yml,
config/locales/de_views_events.yml,
config/locales/de_views_front.yml,
config/locales/de_views_organisations.yml,
config/locales/de_views_sessions.yml,
config/locales/de_views_users.yml, config/routes.rb: upgrading to
rails 2.3.2
2009-04-10 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/application.rb,
app/controllers/application_controller.rb: upgrading to rails 2.3.2
2009-03-15 U-HAL9000\pat <pat@hal9000.(none)>
* config/locales/de_views_front.yml: text correction
2009-03-15 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/front_controller.rb,
app/views/events/_fields.html.haml,
app/views/events/show.html.haml, app/views/front/about.html.haml,
app/views/front/disclaimer.html.haml,
app/views/front/impressum.html.haml,
app/views/front/imprint.html.haml,
app/views/front/presse.html.haml, app/views/front/show.html.haml,
app/views/front/tutorial.html.haml,
app/views/layouts/application.html.haml,
app/views/organisations/_fields.html.haml,
app/views/organisations/show.html.haml,
app/views/sessions/new.html.haml, app/views/users/edit.html.haml,
app/views/users/new.html.haml, app/views/users/show.html.haml,
config/routes.rb, public/stylesheets/application.css,
public/stylesheets/tinymce.css: replaced dirty .q with %p
2009-03-15 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/users/edit.html.haml, app/views/users/new.html.haml,
app/views/users/show.html.haml, config/locales/de_views_users.yml:
translation of users
2009-03-15 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/sessions/new.html.haml,
config/locales/de_views_sessions.yml: transaltion of sessions
2009-03-14 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/organisations_controller.rb,
app/views/layouts/application.html.haml,
app/views/organisations/_fields.html.haml,
app/views/organisations/edit.html.haml,
app/views/organisations/index.html.haml,
app/views/organisations/new.html.haml,
app/views/organisations/show.html.haml,
config/locales/de_layouts_application.yml,
config/locales/de_views_events.yml,
config/locales/de_views_organisations.yml: translation of
organisations
2009-03-14 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/events_controller.rb,
app/views/events/_fields.html.haml,
app/views/events/archive.html.haml,
app/views/events/edit.html.haml, app/views/events/index.html.haml,
app/views/events/new.html.haml, app/views/events/show.html.haml,
config/initializers/will_paginate_hacks.rb, config/locales/de.rb,
config/locales/de.yml, config/locales/de_views_events.yml,
vendor/plugins/will_paginate/.gitignore,
vendor/plugins/will_paginate/.manifest,
vendor/plugins/will_paginate/CHANGELOG.rdoc,
vendor/plugins/will_paginate/LICENSE,
vendor/plugins/will_paginate/README.rdoc,
vendor/plugins/will_paginate/Rakefile,
vendor/plugins/will_paginate/examples/index.haml,
vendor/plugins/will_paginate/examples/index.html,
vendor/plugins/will_paginate/examples/pagination.css,
vendor/plugins/will_paginate/examples/pagination.sass,
vendor/plugins/will_paginate/init.rb,
vendor/plugins/will_paginate/lib/will_paginate.rb,
vendor/plugins/will_paginate/lib/will_paginate/array.rb,
vendor/plugins/will_paginate/lib/will_paginate/collection.rb,
vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb,
vendor/plugins/will_paginate/lib/will_paginate/finder.rb,
vendor/plugins/will_paginate/lib/will_paginate/named_scope.rb,
vendor/plugins/will_paginate/lib/will_paginate/named_scope_patch.rb
, vendor/plugins/will_paginate/lib/will_paginate/version.rb,
vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb,
vendor/plugins/will_paginate/test/boot.rb,
vendor/plugins/will_paginate/test/collection_test.rb,
vendor/plugins/will_paginate/test/console,
vendor/plugins/will_paginate/test/database.yml,
vendor/plugins/will_paginate/test/finder_test.rb,
vendor/plugins/will_paginate/test/fixtures/admin.rb,
vendor/plugins/will_paginate/test/fixtures/developer.rb,
vendor/plugins/will_paginate/test/fixtures/developers_projects.yml,
vendor/plugins/will_paginate/test/fixtures/project.rb,
vendor/plugins/will_paginate/test/fixtures/projects.yml,
vendor/plugins/will_paginate/test/fixtures/replies.yml,
vendor/plugins/will_paginate/test/fixtures/reply.rb,
vendor/plugins/will_paginate/test/fixtures/schema.rb,
vendor/plugins/will_paginate/test/fixtures/topic.rb,
vendor/plugins/will_paginate/test/fixtures/topics.yml,
vendor/plugins/will_paginate/test/fixtures/user.rb,
vendor/plugins/will_paginate/test/fixtures/users.yml,
vendor/plugins/will_paginate/test/helper.rb,
vendor/plugins/will_paginate/test/lib/activerecord_test_case.rb,
vendor/plugins/will_paginate/test/lib/activerecord_test_connector.r
b, vendor/plugins/will_paginate/test/lib/load_fixtures.rb,
vendor/plugins/will_paginate/test/lib/view_test_process.rb,
vendor/plugins/will_paginate/test/tasks.rake,
vendor/plugins/will_paginate/test/view_test.rb,
vendor/plugins/will_paginate/will_paginate.gemspec: translation of
views/events
2009-03-13 U-HAL9000\pat <pat@hal9000.(none)>
* config/locales/de_views_events.yml: more translations
2009-03-13 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/_fields.html.haml,
app/views/events/archive.html.haml,
app/views/events/edit.html.haml, app/views/front/index.html.haml,
app/views/front/show.html.haml, config/locales/de_views_front.yml:
more translations
2009-03-11 Marc <marc@hp-compaq.(none)>
* log/empty: log directory
2009-03-08 U-HAL9000\pat <pat@hal9000.(none)>
* app/helpers/application_helper.rb, app/models/event.rb,
app/views/front/about.html.haml,
app/views/front/disclaimer.html.haml,
app/views/front/impressum.html.haml,
app/views/front/index.html.haml, app/views/front/presse.html.haml,
app/views/front/show.html.haml, app/views/front/tutorial.html.haml,
config/locales/de_views.yml, config/locales/de_views_front.yml:
translation of views/front/
2009-03-07 U-HAL9000\pat <pat@hal9000.(none)>
* config/locales/de.yml, config/locales/de_views.yml: working on de
translation
2009-03-06 U-HAL9000\pat <pat@hal9000.(none)>
* config/locales/de.rb, config/locales/de.yml: i18n
2009-03-06 U-HAL9000\pat <pat@hal9000.(none)>
* app/controllers/application.rb, app/models/event.rb,
app/models/organisation.rb, app/views/events/_fields.html.haml,
app/views/events/new.html.haml, app/views/events/show.html.haml,
app/views/front/about.html.haml, app/views/front/show.html.haml,
app/views/front/tutorial.html.haml,
app/views/initiator_mailer/mail.haml,
app/views/layouts/application.html.haml,
app/views/organisations/_fields.html.haml,
app/views/organisations/edit.html.haml,
app/views/organisations/index.html.haml,
app/views/organisations/new.html.haml,
app/views/organisations/show.html.haml,
app/views/users/show.html.haml, config/boot.rb,
config/environment.rb, config/initializers/localisation_hacks.rb,
vendor/plugins/l10n-simplified-0.9/MIT-LICENSE,
vendor/plugins/l10n-simplified-0.9/README,
vendor/plugins/l10n-simplified-0.9/Rakefile,
vendor/plugins/l10n-simplified-0.9/changelog,
vendor/plugins/l10n-simplified-0.9/init.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_ca.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_cf.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_chef.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_cs.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_da.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_de.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_en.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_es.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_es_ar.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_fi.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_fr.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_it.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_ko.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_nl.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_no.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_pirate.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_pt.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_pt_br.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_ru.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_se.rb,
vendor/plugins/l10n-simplified-0.9/lib/lang_sr.rb,
vendor/plugins/l10n-simplified-0.9/lib/localization_simplified.rb,
vendor/plugins/l10n-simplified-0.9/test/test_the_hooks_test.rb,
vendor/plugins/l10n-simplified-0.9/test/test_the_plugin_test.rb,
vendor/plugins/l10n-simplified-0.9/version.rb: i18n
2009-03-04 U-HAL9000\pat <pat@hal9000.(none)>
* app/models/event.rb, app/models/organisation.rb,
app/views/front/impressum.html.haml: automatic http:// and mailto:
2009-01-26 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/show.html.haml,
app/views/organisations/new.html.haml: modification in new organizer
dialog
2009-01-15 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/archive.html.haml,
app/views/events/index.html.haml: removed rss feed from
events/archive because it didnt work; added map of all current
events
2009-01-15 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/show.html.haml,
config/initializers/localisation_hacks.rb: time distances in show
event
2009-01-14 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/front/presse.html.haml: new press entries
2009-01-14 U-HAL9000\pat <pat@hal9000.(none)>
* public/stylesheets/application.css: adjusted rss and ical button
margin
2009-01-14 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/events/index.html.haml, app/views/front/show.html.haml,
public/stylesheets/application.css: moved rss and ical button into
context menu line
2009-01-14 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/layouts/application.html.haml: tab selection on front
page
2009-01-13 U-HAL9000\pat <pat@hal9000.(none)>
* config/routes.rb, vendor/plugins/haml/init.rb: fixed problem with
dot in tag URL
2009-01-08 U-HAL9000\pat <pat@hal9000.(none)>
* "doc/Artikel \374ber Demowatch", doc/draft.txt, doc/links.html,
tools/all_german_zips_to_db.php, tools/plz_deutschland.txt,
tools/plz_mittelwerte.rb, tools/zips.sql: added doc, tools and
graphics
2009-01-08 U-HAL9000\pat <pat@hal9000.(none)>
* start.sh: added start script
2009-01-08 U-HAL9000\pat <pat@hal9000.(none)>
* app/views/front/impressum.html.haml: open source hint
2009-01-07 Simon <simon@quad.(none)>
* config/initializers/mail.rb, config/initializers/mail.rb.example:
removed mail.rb
2008-12-29 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/front/show.html.haml: old demonstrations in gray git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@397
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-28 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/events/archive.html.haml: title/text edit git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@396
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-28 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/events/archive.html.haml,
app/views/events/index.html.haml: title/text edit git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@395
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-28 simon <simon@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/controllers/events_controller.rb: use to_formatted_s(:db) for
dates in the database git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@394
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-28 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/events/archive.html.haml,
app/views/events/index.html.haml: git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@393
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-28 simon <simon@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/controllers/events_controller.rb,
app/views/events/archive.html.haml,
app/views/events/index.html.haml, config/routes.rb: added
events/archive action, template and route git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@392
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-22 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/front/presse.html.haml: git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@391
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-22 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/front/presse.html.haml: new press entry git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@390
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-17 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/events/_fields.html.haml: git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@389
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-17 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/organisations/new.html.haml: git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@388
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-16 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/front/tutorial.html.haml: git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@387
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-16 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/controllers/events_controller.rb: hot fix pagination git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@386
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-16 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/events/index.html.haml: git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@385
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-15 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/front/presse.html.haml,
app/views/organisations/_fields.html.haml: external links neue info
zur themeneingabe git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@384
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-15 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/layouts/application.html.haml: tabs active in sub pages git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@383
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-15 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/front/tutorial.html.haml,
app/views/layouts/application.html.haml, config/routes.rb: Tutorial git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@382
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-15 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/front/presse.html.haml: git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@381
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-15 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/front/impressum.html.haml: Wolle und Jasper raus git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@380
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-10 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/front/presse.html.haml: FIX: presse git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@378
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-10 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/views/front/presse.html.haml,
app/views/layouts/application.html.haml, config/routes.rb: NEW:
Presseseite git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@377
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-10 marc <marc@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* config/environment.rb: pre, img, h1 ... h6 aus sanitize whitelist
herausgenommen git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@376
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-05 simon <simon@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* public/stylesheets/application.css, vendor/plugins/haml/init.rb:
map bubble style git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@375
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-02 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/controllers/users_controller.rb,
app/views/event_mailer/new_event_of_interest.erb,
app/views/events/_fields.html.haml,
app/views/events/index.html.haml, app/views/events/show.html.haml,
app/views/front/about.html.haml, app/views/front/show.html.haml,
app/views/initiator_mailer/mail.haml,
app/views/layouts/application.html.haml,
app/views/organisations/edit.html.haml,
app/views/organisations/index.html.haml,
app/views/organisations/new.html.haml,
app/views/organisations/show.html.haml,
app/views/users/show.html.haml, vendor/plugins/haml/init.rb: FIX:
Initiator -> Initiative git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@374
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-12-02 pat <pat@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/controllers/front_controller.rb,
app/views/front/index.html.haml, config/routes.rb: FIX: "Nur
Demothemen" als erste Wahl auf der STartseite git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@373
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-11-24 simon <simon@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/controllers/events_controller.rb: git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@372
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-11-23 simon <simon@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/controllers/events_controller.rb: removed linebreaks git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@371
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-11-23 simon <simon@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/controllers/events_controller.rb: removed tags from
description in ics links git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@370
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-11-23 simon <simon@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* app/controllers/events_controller.rb,
app/views/events/index.html.haml, app/views/events/show.html.haml,
config/environment.rb, public/stylesheets/application.css: iCalendar
support git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@369
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-11-23 simon <simon@d006ec09-ee59-0410-91b6-ee83e8a2eb67>
* : Share project "rails" into
"https://thats-software.com/svn/svn_demowatch/trunk/rails" git-svn-id:
https://thats-software.com/svn/svn_demowatch/trunk/rails@368
d006ec09-ee59-0410-91b6-ee83e8a2eb67
2008-11-20 marc <marc@d006ec09-ee59-0410-91b6-ee83e8a2eb67>