forked from RasmusRK/Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitlog.txt
1724 lines (1165 loc) · 48.4 KB
/
gitlog.txt
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
[33mcommit 13ff72f6bba10540b10b98e4d657be2724410462[m
Author: martinsoender <[email protected]>
Date: Wed Jun 4 04:40:40 2014 +0200
made some few design changes
[33mcommit f77a416379ed121ce80e7612fa56449cdc90ea3c[m
Author: TheNiceOne <[email protected]>
Date: Tue Jun 3 16:09:06 2014 +0200
added things to todo
[33mcommit 70b14b7df178858470fe2e84c5106c69978c537c[m
Author: TheNiceOne <[email protected]>
Date: Tue Jun 3 15:57:59 2014 +0200
added file
[33mcommit a24cc3b679512d188e001700650c98ce97475d05[m
Author: TheNiceOne <[email protected]>
Date: Tue Jun 3 15:56:54 2014 +0200
mode password!!!
[33mcommit 02190dcacd1162607d1f579e86304b2011606518[m
Author: TheNiceOne <[email protected]>
Date: Tue Jun 3 14:18:35 2014 +0200
added something
[33mcommit ade931916f1ead0b609439fc705c05a0e3e59c66[m
Author: TheNiceOne <[email protected]>
Date: Tue Jun 3 14:16:14 2014 +0200
added file
[33mcommit 5f7e222f6cad53215c82208456ce58feb5593995[m
Author: TheNiceOne <[email protected]>
Date: Tue Jun 3 12:58:48 2014 +0200
lol
[33mcommit ebd14c6f4368e6459f4d24ccbc7e1c8aa7640aa3[m
Author: TheNiceOne <[email protected]>
Date: Tue Jun 3 12:53:53 2014 +0200
fixed brute
[33mcommit 163fe74817e4c6cbca29a1dac1f8a19069d9956a[m
Author: TheNiceOne <[email protected]>
Date: Tue Jun 3 12:51:18 2014 +0200
tried to fix brute..
[33mcommit 31daa1e7d1ea8e100f0c09b07733ce4c0265c899[m
Author: TheNiceOne <[email protected]>
Date: Tue Jun 3 12:20:19 2014 +0200
small changes
[33mcommit 60a961874873a85a72045b603c7f5214f91c288c[m
Author: TheNiceOne <[email protected]>
Date: Mon Jun 2 20:48:21 2014 +0200
added pictures
[33mcommit f44e3f7b10bede4aab9473c2b5b562f67738cb3b[m
Author: TheNiceOne <[email protected]>
Date: Mon Jun 2 20:47:16 2014 +0200
added file
[33mcommit 6389aaad82297d7ac4dc3548ffcd2bfc7f1ec38b[m
Author: TheNiceOne <[email protected]>
Date: Mon Jun 2 20:46:30 2014 +0200
small changes
[33mcommit 2f428d680f7c551673223446af7cbb96f8e9fafa[m
Author: TheNiceOne <[email protected]>
Date: Mon Jun 2 14:12:15 2014 +0200
changed print
[33mcommit b391d0c026da5e8aad71ecb94510768dfc61fef3[m
Author: TheNiceOne <[email protected]>
Date: Mon Jun 2 13:56:20 2014 +0200
changes to admin
[33mcommit e5390dc05e0066926cd383dfa8406e37c2040eb4[m
Author: TheNiceOne <[email protected]>
Date: Mon Jun 2 13:45:45 2014 +0200
fixed show project site
[33mcommit cd14c3e1343b22be647801fc447871fe7dc24573[m
Author: RasmusRK <[email protected]>
Date: Mon Jun 2 13:25:29 2014 +0200
henrik made everything worse
[33mcommit 3cffa60c1780d42643644c16d32f7c1809d65806[m
Merge: 00542cc 548126e
Author: TheNiceOne <[email protected]>
Date: Mon Jun 2 13:20:24 2014 +0200
Merge branch 'master' of github.com:RasmusRK/Project
[33mcommit 00542ccf8ecd75fda21a79d0097785717bd57be4[m
Author: TheNiceOne <[email protected]>
Date: Mon Jun 2 13:20:05 2014 +0200
changes to project_info (the button)
[33mcommit 548126efba8dd624d76b7ce006fe6a248fce427c[m
Author: RasmusRK <[email protected]>
Date: Mon Jun 2 13:17:45 2014 +0200
removed an oddly placed comma
[33mcommit db33e04add008cf8645ce1a35ca4036c58899bb5[m
Author: martinsoender <[email protected]>
Date: Mon Jun 2 12:43:56 2014 +0200
made menu in a different way
[33mcommit 5c43aff96883d4c9da837f8c4cc2456bb7f39bf0[m
Author: TheNiceOne <[email protected]>
Date: Fri May 30 01:20:29 2014 +0200
træt..
[33mcommit c4d70a0d520d64d2099cf4111d055d74f9670bac[m
Author: TheNiceOne <[email protected]>
Date: Thu May 29 23:57:19 2014 +0200
small changes
[33mcommit 9ff56fff1b4669cd37728c59a24309582e8ed428[m
Merge: 05fe548 8aec5a2
Author: RasmusRK <[email protected]>
Date: Thu May 29 23:48:54 2014 +0200
Merge branch 'master' of https://github.com/RasmusRK/Project
[33mcommit 05fe5480f07a923f8efd969e37a5296dc21460de[m
Author: RasmusRK <[email protected]>
Date: Thu May 29 23:48:12 2014 +0200
changed print to be under admin functions
[33mcommit 8aec5a2e655702cde9e6a96b4728e27af6d6e0d8[m
Merge: 5c43072 bbc4122
Author: TheNiceOne <[email protected]>
Date: Thu May 29 23:47:59 2014 +0200
Merge branch 'master' of github.com:RasmusRK/Project
[33mcommit 5c43072d53c795761976945a8f7f405867a7fbbb[m
Author: TheNiceOne <[email protected]>
Date: Thu May 29 23:47:49 2014 +0200
jay
[33mcommit bbc412221e92268d0b62bf5f3ad048209f6cbace[m
Author: RasmusRK <[email protected]>
Date: Thu May 29 23:45:30 2014 +0200
removed duplicates in my projects
[33mcommit 31f4da3278aceba3c2dd24be99051bf79476e04b[m
Author: RasmusRK <[email protected]>
Date: Thu May 29 23:15:07 2014 +0200
minor changes to generate
[33mcommit 0633270fa2da4f6f6cb7fbf9e019c6c243b51f57[m
Author: RasmusRK <[email protected]>
Date: Thu May 29 23:12:41 2014 +0200
added print to main for testing
[33mcommit e0bea9d5bc6f7ff89bcb917cea7d4a438926a7ee[m
Author: RasmusRK <[email protected]>
Date: Thu May 29 23:05:14 2014 +0200
removed info
[33mcommit 9e32b9057b0b5f4ff2f65676988bb012565a4a97[m
Author: TheNiceOne <[email protected]>
Date: Thu May 29 19:12:43 2014 +0200
changes to admin
[33mcommit 1726db5bd9a118b7762a71b0fc8301cf355485f5[m
Author: TheNiceOne <[email protected]>
Date: Thu May 29 18:12:36 2014 +0200
created admin page
[33mcommit 86b3f1844c886607c5288a67f31206f9bafe0ac7[m
Author: TheNiceOne <[email protected]>
Date: Thu May 29 17:49:44 2014 +0200
added function
[33mcommit c76a2b69e61364528de2889ad64c3541d640a0fc[m
Author: TheNiceOne <[email protected]>
Date: Thu May 29 17:19:26 2014 +0200
Made change_history to work
[33mcommit 2cb6d918979be071211858f35cc39e19918438f9[m
Author: TheNiceOne <[email protected]>
Date: Thu May 29 16:51:54 2014 +0200
more small changes
[33mcommit 64d1d09ed1076c069d0faa6b9d4c7cfe6b54e20a[m
Author: TheNiceOne <[email protected]>
Date: Thu May 29 16:42:39 2014 +0200
added more
[33mcommit 9c31094ec6cb871bb261283ed392143048938f68[m
Author: TheNiceOne <[email protected]>
Date: Thu May 29 16:40:03 2014 +0200
made project_info
[33mcommit 8192798305e395d2c813e377d333b6722422c4c9[m
Author: RasmusRK <[email protected]>
Date: Thu May 29 16:29:54 2014 +0200
pdf function now saves the pdf to the computer
[33mcommit c91c4a44c3ddbfd04a5bcc78c21b2d8ce92a91d4[m
Author: RasmusRK <[email protected]>
Date: Thu May 29 16:21:36 2014 +0200
minor chances and some test pdf files
[33mcommit 5e4011d070e5d00b5a09163a46737b1df3e82927[m
Author: TheNiceOne <[email protected]>
Date: Thu May 29 16:04:57 2014 +0200
added functions
[33mcommit 807e5a1591a6b491bf231d8f0a4722deee6eea81[m
Merge: d77b28a 5254740
Author: RasmusRK <[email protected]>
Date: Thu May 29 15:58:35 2014 +0200
Merge branch 'master' of https://github.com/RasmusRK/Project
[33mcommit d77b28a7e895d462051deb20c9bfd807d4f482ed[m
Author: RasmusRK <[email protected]>
Date: Thu May 29 15:57:15 2014 +0200
added sql to pdf function. This will allow the user to get an overview of all the projects in a pdf format
[33mcommit 5254740bf2fe5609e4ae8f333d625f06baea0e0a[m
Author: TheNiceOne <[email protected]>
Date: Thu May 29 15:28:13 2014 +0200
added function get username
[33mcommit 64ceea6c39903d4dde8cf44dd0a898592863f8ae[m
Author: martinsoender <[email protected]>
Date: Thu May 29 14:48:42 2014 +0200
deleted second design - not finished yet
[33mcommit c8bf7ed301ac58b0d4a6688183814751efd9ec09[m
Merge: 025bbb2 4204eb1
Author: martinsoender <[email protected]>
Date: Thu May 29 14:40:47 2014 +0200
fixed merge conflict
Merge branch 'master' of https://github.com/RasmusRK/Project
[33mcommit 025bbb2c578ac7bfcc54aadf83081e6a7494c297[m
Author: martinsoender <[email protected]>
Date: Thu May 29 14:38:18 2014 +0200
added new design
[33mcommit fd66fb00ffcfaccd8580ce7c79f8edc3f34c8617[m
Author: martinsoender <[email protected]>
Date: Thu May 29 14:28:48 2014 +0200
adding new test design
[33mcommit 4204eb12da8d9ede4b829d74da3c61af7fb627c9[m
Author: RasmusRK <[email protected]>
Date: Thu May 29 13:46:38 2014 +0200
stupid git wouldt push mobile.jpg
[33mcommit fb35e7d5154ad41f315b9dbcc999d89cd80bfba0[m
Author: RasmusRK <[email protected]>
Date: Thu May 29 13:44:40 2014 +0200
updated logbog and edited mobile.jpg to better diffrentiate between the 2 images
[33mcommit e5876b1944b7e7e9446d47b29cb60aee22ab05ed[m
Author: RasmusRK <[email protected]>
Date: Wed May 21 12:45:32 2014 +0200
more todo
[33mcommit 1b9127a32aca64fda1ab723284277c4f0b97b3e0[m
Merge: 89b6f98 6468942
Author: RasmusRK <[email protected]>
Date: Wed May 21 12:44:34 2014 +0200
Merge branch 'master' of https://github.com/RasmusRK/Project
[33mcommit 89b6f98650bbf9513f9670cc4afebbf92fc1e594[m
Author: RasmusRK <[email protected]>
Date: Wed May 21 12:43:54 2014 +0200
added more todo
[33mcommit 6468942276c23bf1457c2f8744c653631ca3e61b[m
Author: TheNiceOne <[email protected]>
Date: Wed May 21 12:39:39 2014 +0200
todo
[33mcommit 847016f87fc5e899128e13504d230c5b4dad12e2[m
Merge: de1f398 678e568
Author: TheNiceOne <[email protected]>
Date: Wed May 21 12:37:05 2014 +0200
Merge branch 'master' of github.com:RasmusRK/Project
[33mcommit de1f398793d2b2b556fb3db1c7de55cd17efde8f[m
Author: TheNiceOne <[email protected]>
Date: Wed May 21 12:36:46 2014 +0200
Changed Logbog
[33mcommit 678e568f3734ce2948ff45bf2aa18da394faa125[m
Author: RasmusRK <[email protected]>
Date: Wed May 21 12:35:54 2014 +0200
forgot to delete header function after adding html-equiv
[33mcommit 76bef2f6902a7258223b372b3f988bfb9e4cb32a[m
Author: RasmusRK <[email protected]>
Date: Wed May 21 12:35:09 2014 +0200
changed more header functions
[33mcommit 0eb1407fd285e422ac97ecff48d2f25774af4598[m
Author: RasmusRK <[email protected]>
Date: Wed May 21 12:29:10 2014 +0200
changed redirecting method from post to meta-equiv. Headers cause problems with headers already being sent.
[33mcommit e754fd0f575802c81a90519a1be8be730e8beb7b[m
Author: RasmusRK <[email protected]>
Date: Wed May 21 12:08:46 2014 +0200
changed functions so it works with the client server. Added ob_start() and ob_end_flush and deleted whitespaces in functions.php.
[33mcommit 4d446b5efb856fd4b1d79d36b7a2f3f2bcf332c2[m
Merge: a1bed70 e605617
Author: TheNiceOne <[email protected]>
Date: Wed May 21 11:20:14 2014 +0200
Merge branch 'master' of github.com:RasmusRK/Project
[33mcommit a1bed7000545f26392475f56fce8d0a71e3d542b[m
Author: TheNiceOne <[email protected]>
Date: Wed May 21 11:19:52 2014 +0200
changed email to id
[33mcommit e6056171c03738eb7c6b0992af0d061b58585ef8[m
Author: RasmusRK <[email protected]>
Date: Tue May 20 12:44:36 2014 +0200
no changes
[33mcommit dcbc0f9011082c9d83903972a9222da3002c16cd[m
Author: martinsoender <[email protected]>
Date: Mon May 19 15:02:56 2014 +0200
changes
[33mcommit 6a791d6ea54d8098045995ea86fa95cce0e47a4c[m
Author: martinsoender <[email protected]>
Date: Wed May 14 18:15:55 2014 +0200
yo
[33mcommit 034df9c74a29d3ff41078d11438e42070fba7d80[m
Author: martinsoender <[email protected]>
Date: Wed May 14 18:14:21 2014 +0200
made the logo center in the top of the menu
[33mcommit 97d688c1fb763b6b38eda00190e7bfd7e222fca2[m
Author: martinsoender <[email protected]>
Date: Wed May 14 18:03:27 2014 +0200
made a with pointer cursor
[33mcommit 4f7145a809ed9b76affbb648ed20fe19e5ed232b[m
Author: martinsoender <[email protected]>
Date: Wed May 14 18:00:48 2014 +0200
made tables 100% scale
[33mcommit 58d8579f543600b9be9c2822bcca6c3440d86db9[m
Author: martinsoender <[email protected]>
Date: Wed May 14 17:48:20 2014 +0200
yoyo
[33mcommit f0ca2c65c7c176a263f7b66d8e2ef6fe03b3edcf[m
Author: martinsoender <[email protected]>
Date: Wed May 14 17:11:42 2014 +0200
kogr
[33mcommit 4c3a45e5d26e4944cc4336319669acf4211d7b52[m
Author: TheNiceOne <[email protected]>
Date: Wed May 14 17:10:35 2014 +0200
change in css
[33mcommit 85330b10a2b27a836beda4b4807f2647d05844f4[m
Author: martinsoender <[email protected]>
Date: Wed May 14 16:57:23 2014 +0200
made so textarea boks cant scale
[33mcommit 1e737dbacfd765475550f102978bb0846a2dc27a[m
Author: TheNiceOne <[email protected]>
Date: Wed May 14 16:45:00 2014 +0200
made project_info
[33mcommit 59f39fb6925c29f7f271e675779c2f5f40f824f0[m
Author: martinsoender <[email protected]>
Date: Wed May 14 16:38:27 2014 +0200
made a go back button in register
[33mcommit 6be77e4a2531bef5cfb33c0883d92d407c81d442[m
Merge: ebe8ee1 2b15146
Author: TheNiceOne <[email protected]>
Date: Wed May 14 16:34:44 2014 +0200
Merge branch 'master' of github.com:RasmusRK/Project
[33mcommit ebe8ee15116ca2aac30256fb9b8e1117ae931ec7[m
Author: TheNiceOne <[email protected]>
Date: Wed May 14 16:34:29 2014 +0200
added more todo
[33mcommit 2b1514669d84818a990780a314934241caf02ca6[m
Author: martinsoender <[email protected]>
Date: Wed May 14 16:33:34 2014 +0200
yupyup
[33mcommit 07bd2aa4b1d50098f84ff2844afa73eace1bfeae[m
Author: RasmusRK <[email protected]>
Date: Wed May 14 16:24:23 2014 +0200
added more todo
[33mcommit 3356a1d7d66c8386417aabfb28a040fe0d4ef276[m
Author: martinsoender <[email protected]>
Date: Wed May 14 16:23:15 2014 +0200
added phpmenu() to alle sites
[33mcommit 66b666740b7aa7ecf5c1e33ded7be6dd16c9aa8b[m
Author: TheNiceOne <[email protected]>
Date: Wed May 14 16:19:57 2014 +0200
lol
[33mcommit d8a479fb5c9a9a90acc4d65e4224b872394e55d1[m
Author: martinsoender <[email protected]>
Date: Wed May 14 16:18:06 2014 +0200
made a function to autogenerate menu on every site
[33mcommit bf5115a2801ec6c289b8b2f87195f94c9a47e461[m
Author: TheNiceOne <[email protected]>
Date: Wed May 14 16:11:14 2014 +0200
added row to tables
[33mcommit 9375bca7ade8cf3f5411445bc8e6513504b9c8b6[m
Author: martinsoender <[email protected]>
Date: Wed May 14 15:55:38 2014 +0200
yo
[33mcommit f197341c1b345d69ad2becf025de9a5dcea6fb82[m
Author: martinsoender <[email protected]>
Date: Wed May 14 15:46:18 2014 +0200
changed loggin with email to id
[33mcommit aa815fe6e8707f951561c67abdc1df37f7c168e6[m
Merge: 237f5e7 d00a938
Author: martinsoender <[email protected]>
Date: Wed May 14 15:45:22 2014 +0200
Merge branch 'master' of https://github.com/RasmusRK/Project
[33mcommit d00a938f76bedf7cb79ad4f6256cf91b924c0801[m
Author: RasmusRK <[email protected]>
Date: Wed May 14 15:41:45 2014 +0200
added time
[33mcommit f8b5c43f37f910425e273e262047fc62d5fe37e6[m
Author: RasmusRK <[email protected]>
Date: Wed May 14 15:16:32 2014 +0200
fixed logout effect not covering menu width
[33mcommit 237f5e75771519b738bb280de83367ac2cc042d1[m
Merge: 4baa8cb 01f8fbb
Author: martinsoender <[email protected]>
Date: Wed May 14 15:07:06 2014 +0200
Merge branch 'master' of https://github.com/RasmusRK/Project
[33mcommit 4baa8cba996acaea80fdb62c38af7e147a6217e9[m
Merge: 6d37a41 d4670e5
Author: martinsoender <[email protected]>
Date: Wed May 14 15:06:53 2014 +0200
Merge branch 'master' of https://github.com/RasmusRK/Project
Conflicts:
web/new_project.php
[33mcommit 01f8fbb398abe82bbb3355567861f97bba83807e[m
Author: RasmusRK <[email protected]>
Date: Wed May 14 15:06:12 2014 +0200
more todo points
[33mcommit 6d37a41cc92e5a3f5cec9a1e857a31f399b656b9[m
Author: martinsoender <[email protected]>
Date: Wed May 14 15:05:15 2014 +0200
dwfewfewfewhufew:x
[33mcommit d4670e58cd8d907218afb85d1a527da09b5c0e27[m
Author: RasmusRK <[email protected]>
Date: Wed May 14 14:59:46 2014 +0200
adding projects now adds time to the database aswell
[33mcommit a99d8081244e47c503d120747d00b886d6b70248[m
Author: martinsoender <[email protected]>
Date: Wed May 14 14:32:28 2014 +0200
making changes like a bo$$
[33mcommit 3609871b93f29fa69ea2e11b22bc57befd35d845[m
Author: martinsoender <[email protected]>
Date: Wed May 14 14:21:30 2014 +0200
added whole menu to new_category
[33mcommit 20e92d43022cbb76252b84f256c7545def4f4234[m
Merge: 28c14df 7840d44
Author: martinsoender <[email protected]>
Date: Wed May 14 14:15:34 2014 +0200
Merge branch 'master' of https://github.com/RasmusRK/Project
[33mcommit 28c14dfb5e99835c8a31bc6c43d35615535d10cb[m
Author: martinsoender <[email protected]>
Date: Wed May 14 14:15:12 2014 +0200
moved files
[33mcommit 1006c4ea517013a6f316d2e1fc95cef7570ebe1d[m
Author: martinsoender <[email protected]>
Date: Wed May 14 14:12:47 2014 +0200
removed some css files
[33mcommit 7840d44fdf33e86af8304a5939213c1dd6b4656b[m
Author: TheNiceOne <[email protected]>
Date: Wed May 14 14:03:11 2014 +0200
projekt works!
[33mcommit d4217e95c0a32f87e2fcd68bda75d86a3327d722[m
Author: TheNiceOne <[email protected]>
Date: Wed May 14 13:48:41 2014 +0200
dropdown works
[33mcommit 9bc89609d8f91033d6a0cd8e2e16ac4fa7bb0baa[m
Author: martinsoender <[email protected]>
Date: Wed May 14 13:27:37 2014 +0200
changes
[33mcommit 7ed01ad14fe9eab487ce71cf5549131b5d1f2db7[m
Author: TheNiceOne <[email protected]>
Date: Wed May 14 13:23:45 2014 +0200
added assignment 3
[33mcommit 912bc0d6aa8d8890d9ab47230a93039f75a71777[m
Merge: cd5ae2b 7d744fe
Author: RasmusRK <[email protected]>
Date: Wed May 14 13:15:23 2014 +0200
Merge branch 'master' of https://github.com/RasmusRK/Project
[33mcommit cd5ae2b78e8ae54b3f450a5672c11e72f6774a84[m
Author: RasmusRK <[email protected]>
Date: Wed May 14 13:14:34 2014 +0200
now with more ordering
[33mcommit 7d744fefc0ae2a174c195a2d9c197dee9371b6c1[m
Merge: 91b8291 a0d2d6a
Author: TheNiceOne <[email protected]>
Date: Wed May 14 13:14:34 2014 +0200
Merge branch 'master' of github.com:RasmusRK/Project
[33mcommit 91b829128ceda10b5635fe516f08d947851f2323[m
Author: TheNiceOne <[email protected]>
Date: Wed May 14 13:14:13 2014 +0200
changes in logbog
[33mcommit a0d2d6adccefa282501938cac2cf4dee04863077[m
Author: RasmusRK <[email protected]>
Date: Wed May 14 13:01:51 2014 +0200
added more order functions
[33mcommit b1e885f127f38e619bfcfed27e7a59c801c73e83[m
Author: RasmusRK <[email protected]>
Date: Wed May 14 12:49:37 2014 +0200
added ordering to table in history
[33mcommit 3d14bd4a440e2ff56233ff607ba327761bcae63a[m
Author: martinsoender <[email protected]>
Date: Wed May 14 11:56:57 2014 +0200
changes were made
[33mcommit d3120babe557e46a83d7d704772960740c379879[m
Author: TheNiceOne <[email protected]>
Date: Wed May 14 10:03:20 2014 +0200
Lot of changes
[33mcommit b0891b84c00d406f227e8ec31353efce179b52a5[m
Author: TheNiceOne <[email protected]>
Date: Tue May 13 12:59:07 2014 +0200
Added things to Logbog
[33mcommit 84f61f462c9d2ac054b32957fc58515c9e16d971[m
Author: martinsoender <[email protected]>
Date: Sun May 11 17:47:43 2014 +0200
.....
[33mcommit 996feaf734ea9269f7b6cf126585aaa5b3493d2e[m
Author: martinsoender <[email protected]>
Date: Sun May 11 17:25:37 2014 +0200
moved log out button to the buttom of the page
[33mcommit df0669c25d0ad64e88ecb0e584e10a23707020ee[m
Author: martinsoender <[email protected]>
Date: Sun May 11 14:42:38 2014 +0200
add'et all menu links to add_time and new_project
[33mcommit 64006888f1aef57287c3d8ed97f0bcad4988e745[m
Author: martinsoender <[email protected]>
Date: Sun May 11 14:22:45 2014 +0200
made changes in new_project
[33mcommit 3fe9e13699cde3b12f9142150211d2ad283cdb63[m
Author: RasmusRK <[email protected]>
Date: Thu May 8 16:44:54 2014 +0200
fixed add_time and added insane amounts of wub to it
[33mcommit 1af3cb7d79c186940d55c5d9a281e9a3f681b9c5[m
Merge: 54e2689 ae5d78e
Author: RasmusRK <[email protected]>
Date: Thu May 8 15:59:11 2014 +0200
Merge branch 'master' of https://github.com/RasmusRK/Project
[33mcommit 54e2689ef2be0ccad3acee5e8661f1bb885f0915[m
Author: RasmusRK <[email protected]>
Date: Thu May 8 15:52:35 2014 +0200
changed minor error in user.sql
[33mcommit ae5d78e4fa027ee421439933c7d5bfb7622ad2fe[m
Author: TheNiceOne <[email protected]>
Date: Thu May 8 15:34:32 2014 +0200
removed lognew
[33mcommit 73d3349190093606a9b018fba1795fec9b37894c[m
Merge: 8d869bb 96c25c5
Author: TheNiceOne <[email protected]>
Date: Thu May 8 15:33:05 2014 +0200
Pas
Merge branch 'master' of github.com:RasmusRK/Project
[33mcommit 8d869bbc256429d3f3ac1e11bf2772abb903e02a[m
Author: TheNiceOne <[email protected]>
Date: Thu May 8 15:32:29 2014 +0200
added todo
[33mcommit 96c25c5a6d1e528c68928c4eed2f3d1a1832db6b[m
Author: RasmusRK <[email protected]>
Date: Thu May 8 15:18:44 2014 +0200
made backup of files on server
[33mcommit 1686bbc763f30cfa9da38819e8af5baf92a0116c[m
Merge: d599f06 77eee86
Author: RasmusRK <[email protected]>
Date: Thu May 8 14:26:45 2014 +0200
Merge branch 'master' of https://github.com/RasmusRK/Project
[33mcommit d599f06f3929b6d6853a05420efb540db31caecc[m
Author: RasmusRK <[email protected]>
Date: Thu May 8 14:25:49 2014 +0200
git went rogue
[33mcommit 77eee8610ffac2ce7b951ba7dccc2cde90b6d832[m
Author: martinsoender <[email protected]>
Date: Thu May 8 13:48:28 2014 +0200
add'et folder with current version
[33mcommit 037184ac4a311fbb13f628a53c295898fa2f9752[m
Author: TheNiceOne <[email protected]>
Date: Thu May 8 12:43:26 2014 +0200
deleted xy
[33mcommit 756a7ca39e6e14ddca98b0e3f9dee0692c21b328[m
Author: TheNiceOne <[email protected]>
Date: Thu May 8 12:43:02 2014 +0200
deleted fail
[33mcommit 165bcc5744453f187ed8f5be7b58f30fef70f9e0[m
Merge: 62ebd93 f49615b
Author: RasmusRK <[email protected]>
Date: Thu May 8 12:33:20 2014 +0200
Merge branch 'master' of https://github.com/RasmusRK/Project
[33mcommit 62ebd938054ecfdd40be53a95627386bf9c355a1[m
Author: RasmusRK <[email protected]>
Date: Thu May 8 12:32:39 2014 +0200
made new log
[33mcommit f49615bfd36a9d813e5525d20834e8856c863694[m
Author: TheNiceOne <[email protected]>
Date: Thu May 8 11:03:41 2014 +0200
small changes
[33mcommit 8872dea5e10c5fd27aaa3bfed6c55a666200c119[m
Author: martinsoender <[email protected]>
Date: Wed May 7 22:28:05 2014 +0200
made changes in new_project
[33mcommit 78335df79f9d9b1c4aa93bfc0cb2ff2e70a888ce[m
Author: martinsoender <[email protected]>
Date: Wed May 7 22:24:06 2014 +0200
made <li> around history link
[33mcommit 6d984c5f59c46fd2669b040ff3d0295b4f0406a3[m
Author: TheNiceOne <[email protected]>
Date: Wed May 7 00:43:08 2014 +0200
trying to fix brute
[33mcommit d9c5be22963b649073e48167735fc0b13bb6685a[m
Author: TheNiceOne <[email protected]>
Date: Tue May 6 20:30:02 2014 +0200
add time pid problems
[33mcommit 3cf33ba734d3d0d6e46ef0cbb8a5d6e0d3ad94cd[m
Author: TheNiceOne <[email protected]>
Date: Tue May 6 19:22:31 2014 +0200
modified add_time
[33mcommit f23078d321e4fddd3acc45995671bc29aedae011[m
Author: martinsoender <[email protected]>
Date: Tue May 6 13:10:33 2014 +0200
forgot to add new project to contact page
[33mcommit c4f546c8945c8d19b92fbee960d622ff7ffc8b41[m
Author: martinsoender <[email protected]>
Date: Tue May 6 13:09:25 2014 +0200
add new project to all main pages
[33mcommit 0b5a06b53745499803b7dbaaa1db94546bd7abf2[m
Author: martinsoender <[email protected]>
Date: Tue May 6 12:55:28 2014 +0200
made changes in the db
[33mcommit 9a57a9ffa1897ccf77da7e503f281a020af97374[m
Author: martinsoender <[email protected]>
Date: Tue May 6 11:03:07 2014 +0200
changes were made
[33mcommit 9f47a851b4e300dd4f8fc719a24923242741e441[m
Author: martinsoender <[email protected]>
Date: Mon May 5 21:22:20 2014 +0200
...
[33mcommit 7e9dff5a8aa66009dff7f6075fc5492a08eb2a2f[m
Author: martinsoender <[email protected]>
Date: Mon May 5 20:52:16 2014 +0200
changed text from english to danish
[33mcommit 1b9e795e76e6ef2014d575bd3bc991b0948f90f3[m
Author: martinsoender <[email protected]>
Date: Mon May 5 20:46:44 2014 +0200
worked on new_project
[33mcommit 4bf19df31a1c9f161da3ad8ef1abfed5c3748151[m
Author: martinsoender <[email protected]>
Date: Mon May 5 20:15:16 2014 +0200
made img folder
[33mcommit 01308f3f4ce55959a5aa7dbbbba219da7fb2a1d8[m
Author: martinsoender <[email protected]>
Date: Mon May 5 20:01:19 2014 +0200
move buttons to the right
[33mcommit 4a91d1b7aa54a02e197c282d89411c7902b09e1f[m
Author: martinsoender <[email protected]>
Date: Mon May 5 14:39:58 2014 +0200
removed test contact file
[33mcommit fe4e4420eab943d5bafaed1a26b75f4ee528f1db[m
Author: martinsoender <[email protected]>
Date: Mon May 5 14:37:22 2014 +0200
Got contact function to work
[33mcommit 23b23c69937a972b8b4fbb66564301669fe5b4eb[m
Author: martinsoender <[email protected]>
Date: Mon May 5 13:36:14 2014 +0200
few changes
[33mcommit 7761234e2032ceb7f40adb1d0dcda9afd5c4a305[m
Author: martinsoender <[email protected]>
Date: Mon May 5 13:19:15 2014 +0200
blabla
[33mcommit f23911e7dee143078a964372f9d599231c46e57b[m
Author: martinsoender <[email protected]>
Date: Mon May 5 13:13:16 2014 +0200
Changed register_succes print msg out in danish
[33mcommit 5f8889127924c498a3fdda5c9b548b84697bdfcd[m
Author: martinsoender <[email protected]>
Date: Wed Apr 30 18:30:48 2014 +0200
changed the mail function
[33mcommit 475b8dc7eeefa94491dfe5c05ebe891be60cd9a1[m
Author: martinsoender <[email protected]>
Date: Wed Apr 30 18:11:57 2014 +0200
added contactform to contact + php functions
[33mcommit 464a97bdadad3b9207d8f40391c5a6c1165a1398[m
Author: martinsoender <[email protected]>
Date: Wed Apr 30 17:45:06 2014 +0200
....
[33mcommit 2cca5bafc5b28e8e21f292336f73a84f9a206fe0[m
Author: martinsoender <[email protected]>
Date: Wed Apr 30 17:41:53 2014 +0200
set up add_time.php with css
[33mcommit 680a7a9577a436e2604a735f2e81d2158557cf5a[m
Author: martinsoender <[email protected]>
Date: Wed Apr 30 17:28:30 2014 +0200
seperated css into two files
[33mcommit 3242d303ed8a8168f3616ea09bee8704f9496c36[m
Merge: 4bf2f8b e0b323f
Author: martinsoender <[email protected]>
Date: Wed Apr 30 17:27:02 2014 +0200
Merge branch 'master' of https://github.com/RasmusRK/Project
[33mcommit 4bf2f8b83b7edbc66fdc33238366e2bbc10ea81d[m
Author: martinsoender <[email protected]>
Date: Wed Apr 30 17:26:31 2014 +0200
merge conflict
[33mcommit e0b323f6cd5ce92b61cfdc2234c8b3dfe9680f20[m
Author: RasmusRK <[email protected]>
Date: Wed Apr 30 16:51:44 2014 +0200
wub wub wub
[33mcommit 1e942f2df62c79ccd34890bd349b630390eb8e0d[m
Author: RasmusRK <[email protected]>
Date: Wed Apr 30 16:50:23 2014 +0200
nothing new
[33mcommit b5ac78e494927bf84617e50946610971f0664636[m
Author: martinsoender <[email protected]>
Date: Wed Apr 30 16:46:53 2014 +0200
Changed in css files and set up page for new project
[33mcommit da4572ee167ffebdab069d67d62fe7e5905fd162[m
Author: TheNiceOne <[email protected]>
Date: Wed Apr 30 16:32:32 2014 +0200
add_time
[33mcommit 6c7e0a474ab588cd8d8866b68f6bb54c332aa5c3[m
Author: TheNiceOne <[email protected]>
Date: Wed Apr 30 16:09:09 2014 +0200
user.sql changes
[33mcommit 07f0bf9071d8558a3095084564921b8f4f2ad434[m
Merge: 32d1010 04439a2
Author: martinsoender <[email protected]>
Date: Wed Apr 30 15:56:55 2014 +0200
Merge branch 'master' of https://github.com/RasmusRK/Project
[33mcommit 32d10102c69c0e82355b6778947046b48fef2375[m
Author: martinsoender <[email protected]>
Date: Wed Apr 30 15:56:47 2014 +0200
...
[33mcommit 04439a2d563cf0b6f97887a8997ef36c1ea99469[m
Author: RasmusRK <[email protected]>