-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChanges
More file actions
1351 lines (903 loc) · 40.6 KB
/
Changes
File metadata and controls
1351 lines (903 loc) · 40.6 KB
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
commit 3d245ada5a66037596c6415206c274d70f0dfb0b
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun May 24 23:16:34 2015 -0400
removed extraneous project template files
commit 8d1d6db14b664bc390d5eeb3fd6e2e94479c4f8a
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun May 24 23:13:30 2015 -0400
copyright updates; re-arranging the project code to respect project users and administrators
commit a46a9e889fc46665f0673215de15ff7f044ac224
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat May 23 22:39:23 2015 -0400
bootstrap layout adjustments; more copyright updates
commit df85b745adb856e57b751088ad7d9efdd6dda7a4
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat May 23 12:40:07 2015 -0400
bootstrap 3.3.4 updates; updated copyright to 2015
commit 13e2727cc87b9626fab3e3660b5ecb51f4bb8a1f
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Mar 11 14:03:52 2015 -0400
adding Blog functionality
commit 2b3db234e55d049cec6ec1859c0fd7a28648aee9
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Mar 11 13:56:15 2015 -0400
display custom error instead of default
commit 6283d56665bf3f3413d078fd45de54e3d183b2cc
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Mar 11 13:55:50 2015 -0400
updated to create user as member instead of admin
commit ebccec7902dd10e34088017cb5a3481dcbc608bb
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Mar 11 12:19:04 2015 -0400
added office_email to Person::name_lookup so if two users have same name you can distinquish by email address
commit 10135314111c081e614cac5379c76bbcce20e803
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Mar 11 02:11:48 2015 -0400
cleaning up interface a bit
commit ee67d50f02e01439397001b2523aa13997186dc5
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Mar 11 02:09:26 2015 -0400
cleaning up interface; removing duplicate menus
commit d7d92ca32baead90fcf68c1f01402bdb82aba44b
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Mar 11 01:24:16 2015 -0400
added basic project roles that every project needs
commit 80b37d3318d8a67aa44bc14160bf4ccee1b71c2a
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Mar 7 20:28:55 2015 -0500
bug in person triggers: no department column in user table
commit 2ef2dbaae802611aa4cdca9aefc88aa77979b5d1
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Feb 25 14:25:00 2015 -0500
task: editing task rest status
commit 67fabd62802e5863ac2e12dc330b3e5d94dbd003
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Feb 21 13:32:49 2015 -0500
project: listing completed tasks broken
commit 0c83d01a9c9d662eafd32b5bf60093ac19d55d55
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Feb 21 13:28:07 2015 -0500
project: listing completed tasks broken
commit c5c0b7cb91843c5054b2aa1ce03548e5cdbd148e
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Feb 21 12:35:41 2015 -0500
bug: marking task complete changed task.task_status_type_id =2 instead of 7
commit 2658335705104f061eb73914b7fd273ab2d56108
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Feb 21 12:18:28 2015 -0500
adding Apple touch icon
commit 8f12ff99112563bd60e8fc7b9611e50e29378807
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Feb 21 03:23:33 2015 -0500
adding Apple touch icon
commit 5967f1d0ace9c6aec07490ca52a887108170e65a
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Feb 21 02:46:56 2015 -0500
adding Apple touch icon
commit f01239e5bc81ab55c1ebd486f7067c559d996136
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Feb 21 02:44:28 2015 -0500
adding Apple touch icon
commit 649d2dda9e93fdf8571c8a6f98ad20a36dd218e1
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Feb 21 02:22:29 2015 -0500
adding Apple icon
commit 655f2f51efed760050dcf0ea4fb8ff1d66edc28e
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Feb 21 02:17:07 2015 -0500
adding Apple touch icon
commit 8726d9fac84b893b7e5abccdb4cad4ae8e813f27
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Feb 21 02:14:21 2015 -0500
adding Apple homepage icon
commit 93ac0a96965bcb873e0679dc306ecf46abe8cf16
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Feb 21 02:10:40 2015 -0500
adding Apple homepage icon
commit 31b8f4201e64d990dc6ad69fbde72d4f0452e17c
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Feb 21 02:05:26 2015 -0500
adding Apple homepage icon
commit 9c33d9d9c76e61aa428d980e35a4a500eddd53c8
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Feb 21 01:17:26 2015 -0500
adding the timepalette back to the menu
commit fad7b0b6878167a3c0a016952efa251f11384241
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Mon Aug 25 01:46:10 2014 -0400
basic blog creation working
commit 7f95791a151ef30bcaa138b03f1fb1c277206ad3
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Aug 24 19:06:05 2014 -0400
adding Blog and Wiki functionality; this is base
commit cf24df07384f2e83b052ba3f809ae40cf6cfc36d
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Aug 24 18:39:05 2014 -0400
moved to db/migrate; following ruby rake style for database updates; will provide tool to run these in the future
commit 3900581c98d9d4cab0a0efd196fcc276d85cabb6
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Aug 10 01:07:42 2014 -0400
re-arranged menu items based on type; keeping more frequently used items together
commit 52ecb8d5eb8714d59c6e8801a90a0f21a7a186bf
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Aug 10 01:04:44 2014 -0400
removed section on how to apply
commit 2ed6323da3b86b5bd2d9d146b7c3c58bce2b1ea1
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Aug 9 00:31:29 2014 -0400
updated VERSION
commit 68771017bfbfa302dfebb93acbd07376edf1ad2d
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Aug 9 00:30:50 2014 -0400
adding Scrum type projects
commit 2c0f8e17b183aeed2b9e530596e0874b1fed7da7
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Aug 9 00:27:07 2014 -0400
tweaked footer
commit 57ded273491ff457b2129378c61829044901c770
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 15 13:09:47 2014 -0400
README: fixed typo; added word _supported_ to databases section
commit 4f9c7908e6a04c5ae3dbfc9f3ee91dd951f3ebd8
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 15 12:49:40 2014 -0400
incremented version; updated Changes
commit 76da9dbe1fb371ef3e4314c3664264fd696347bd
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 15 12:42:22 2014 -0400
Added tables for Scrum-based projects, sprints, stories, tasks, etc.
Made minor adjustments to the Task table
Added 5 more task_status_type's and rearranged existing ones to better
support Scrum projects
Changed from ptt_schmea.sql to Rails-like timestamped sql file. All
changes are going in timestamped sql files so that updates can be
applied without having to manually edit tables and data. Still need to
manually run the sql files through mysql client program. Future version
will be run through a Perl script that checkes the schema_migration
table and applies the appropriate updates.
commit 1b9ee69837d14626c6fd5864b05081787c5b82fa
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 15 01:46:50 2014 -0400
adding ProjectType; allow traditional, non-agile projects as well as Scrum-based projects
commit 5a949b0e4ab3b824a2ecd77e7c1264678d4fe619
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 15 01:23:18 2014 -0400
fixed my commit name and email addresses; were inconsistent
commit 8f3a1d1b8c40dea16e9ad49f0c8455a6e4334ffe
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Mon Jul 14 11:20:29 2014 -0400
style: account dropdown on very edge of navbar. slide it over a bit
commit 67623ee886731f014ede6c64fa8f3e5e5e61bf04
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Mon Jul 14 10:46:38 2014 -0400
new_note: removed word CLIENT from organization, person, and contact; note can be related to anyone in the system
commit 86e279e8dcc76271c086cb49969f4f4a79bcbd61
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Mon Jul 14 00:28:20 2014 -0400
added autofocus to new_note title field
commit 4817726c7ab25a99c3f37bb072c3ecec717f3843
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 13 17:23:15 2014 -0400
resetting password was funky; if did not work it did not display error message
commit 367182417ac0c0755f3b211dabaa272b434db2a4
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 13 16:47:44 2014 -0400
filtering html in project templates;
commit e63ed0553bab5992e9b02a6fd48dc0685ee96c3b
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 13 14:08:41 2014 -0400
use Person controller for displaying details instead of User
commit 5d7664fdb80a3c3298de028d6f008b4c2e4a6e27
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 13 14:00:37 2014 -0400
removing older, backup file version
commit 8e754166894461faed37a5d99b1b3edc2fc94bdb
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 13 14:00:05 2014 -0400
almost all user functions should be performed through Person. only password stuff should be User-related
commit fa3614e96a80cae59f7d2fc99480fc6e64dbd566
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 13 13:49:59 2014 -0400
User check if current user is authorized for function
commit 9dc74b2fa1b792be1c703919c4b94f5ea100797b
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 13 09:20:37 2014 -0400
default data: changed admin role to administrator
commit c38281ea579883c317a4deba19c7b73ca7295d2f
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 13 09:11:25 2014 -0400
removing vim backup file
commit 7067d8d7c5619fb538127ed7cc433fc3b572c8d9
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 13 09:10:51 2014 -0400
person details: only display admin notes if you are an admin
commit 3fb14f13696955999b70d7f0816dc5c490be7ab8
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jul 12 22:20:50 2014 -0400
removed user.department from default schema; only need this in person table;
commit aa592229de535b15844136612f7de2be8083db92
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jul 12 01:22:41 2014 -0400
removed ckeditor for now. need to html encode tags before allowing html in notes
commit 448636a6461b9cb04157c006f43cc01fbe52eaea
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jul 12 00:28:08 2014 -0400
footer: removed About for now; was basically redundant with Technology page
commit 442219c687885306814db4580f1d1357b48de63f
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Fri Jul 11 23:42:17 2014 -0400
removed extra instance of ProjectTaskToDo in the page titles
commit 428246df218ceb0a06f19e3e79c29439fea8aee2
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Fri Jul 11 09:05:21 2014 -0400
project search: only dispaly "no projects found" message if user actually submitted some criteria; otherwise just display search_box
commit 4eea4b1500cf2b51648d5b9a5e455ceee9ce81f7
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Fri Jul 11 08:53:22 2014 -0400
project search: only dispaly results table if there are results
commit 994b754141f5ede52ffbe3f6fefa71bf9442583e
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Fri Jul 11 00:13:27 2014 -0400
page title cleaned; capitalized th for input forms
commit 8d69793db536c649fbb4caba1dec6714817bada9
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Thu Jul 10 01:29:28 2014 -0400
user options: changed broken link for change_password
commit 3e791a5a6c2ae93009115868fec9ee48472075f0
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Thu Jul 10 01:22:14 2014 -0400
person notes: changed formatting a bit
commit 47568ade2642c326ea26483d49884c2525844b43
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Thu Jul 10 00:35:16 2014 -0400
person active & complete tasks: removed person_details; formatted table; added h2 to describe what page is showing
commit 63595e26844457901028472d92092f1eba5b2d85
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Thu Jul 10 00:31:41 2014 -0400
person my_complete_projects: made table class=table
commit 6f80be6344d3f035f2c46bfdf126bbe1ebb6bc17
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Thu Jul 10 00:30:23 2014 -0400
person project pages: removed person_details as it is extraneous
commit dd2f7591720184fcb8389a2ca782ef87e1e06f7f
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 14:07:10 2014 -0400
task today: added table class=table
commit e31bd1319838dd265027cddd555e18937312835b
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 13:42:43 2014 -0400
organization: cleaned up forms; removed extraneous / not-yet-implmented fields
commit 0825f00d7518400e500b325f33306d7889f9f30b
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 13:35:10 2014 -0400
organization details: made Bootstrap-style
commit 69d5348c786211469cb3685f270f3ba3385416af
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 13:02:22 2014 -0400
Project::new_comment now has authorized tag to display data-changing options
commit e7f3929e57c4aff157730a895ae19b23723b6edc
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 12:13:53 2014 -0400
project notes: cleaned up display; removed project in table as it is redundant
commit 2ffdddcf7e6c38f104d9b7ce074ba0d891f75713
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 11:55:33 2014 -0400
project tasks: added logic to only display table if matching task_types has tasks
commit 8da5514d432d375cf4660616a206ce48174b13fa
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 11:48:49 2014 -0400
project tasks removed project details; not needed when displaying tasks
commit b2c2f14d89f458d60ef591765e76d14adce0614d
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 11:34:46 2014 -0400
project new_comment: do not display "no comments" if no comments; not needed when adding new comment
commit 850cb687ca4d504a889f831c4d5d400655805c9a
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 11:29:20 2014 -0400
project comments: cleaned; restyled; removed project data because there is a view for that
commit 99cc5338c7dd500d158abcb95273248fc4628bd4
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 11:21:12 2014 -0400
project comments: removed project details. only display comments table if there actually are comments
commit 18e44dab6bdb715c2543ac351417a73851bfaf7c
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 11:14:55 2014 -0400
project::comments made Bootstrap style
commit 79d1fe1e61adca8e717b9cda3093415de48fc879
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 10:52:58 2014 -0400
removed extraneous account field
commit 00d1a90957c8bf0fd02cd810366d85a30fcb1812
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 10:52:35 2014 -0400
removed extraneous account field
commit 36748976e1627c12745dfb8dcafaafbddcc05c43
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 10:09:30 2014 -0400
note::edit changed button style
commit dcd611795dd66f1063e1e80187068c15a7ab5886
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 08:47:59 2014 -0400
Note: added created date to list; do not inflate created datetime
commit d74e510df3e2241e762af4ce57232239578612b5
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 9 00:22:20 2014 -0400
person/add: made skype and aim names size=60
commit 7992b4683a3b20c93df8edd808e4dcb1c099e14b
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 8 20:41:52 2014 -0400
cleaning up options layout; removed extraneous field
commit 4593762d548748036bbc3f3eb26d77b654afe083
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 8 20:27:33 2014 -0400
Organization: added recursive relationship for parent_org_id
commit 575f0dee4eb533301ed8f505a03e908f74d29acd
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 8 00:14:52 2014 -0400
removed redundant About link from navbar. it is available in the footer
commit b5913deff56eeeed02848825c78be32cf6bfad88
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Mon Jul 7 10:45:07 2014 -0400
org search not dispalying border for country and description; added nbsp so it would
commit 74295c85ba73899ee762ebdfa1a548bdce01b07f
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Mon Jul 7 10:28:32 2014 -0400
added parent_org_id to sub search's resultsource to display parent organization information
commit 9493f7f5e79c4fa42d57010fb758eaa89b8353de
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Mon Jul 7 09:55:33 2014 -0400
updated Changes and version
commit 0922ccdb1c2caea5a9f83a4541cb4cfcd3708274
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Mon Jul 7 09:53:54 2014 -0400
cleaning up layout some more for oganization and reports
commit 10ff06a3fcdef25355097bee7b50120a7688d072
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Mon Jul 7 09:48:41 2014 -0400
cleaning up file formatting
commit bcedf86d94a17c3b74a06347bdcec7f5f7f88b65
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Mon Jul 7 01:01:50 2014 -0400
removed dup navbar; adding blog style for options
commit a8c05c02cc1d49f71ba826ffc0f46d7462c5b5a5
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Mon Jul 7 00:52:42 2014 -0400
removed dup navbar; adding blog style for options
commit b2473f51375ae30551c70cbbc50cb0c9906333db
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Mon Jul 7 00:37:41 2014 -0400
removed dup navbar; adding blog style for options
commit 2bc9f2c0a82392954439ba4ec424f8981c98d81e
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 6 15:39:29 2014 -0400
removed dup navbar; adding blog style for options
commit 861948247494e169a58b1393ee57e52f654f90d6
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 6 14:22:06 2014 -0400
removed dup navbar; adding blog style for options
commit 734a65f33d9b89d37b0f91fdab630c75119c96a3
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 6 14:14:51 2014 -0400
removed dup navbar; adding blog style for options
commit 4e4b04dd88829ee830ba364cb61a9e326e18a0d5
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 6 13:31:17 2014 -0400
removed dup navbar; adding blog style for options
commit 43a9c3147cf2607bab16eacf619bd8162f69ac8f
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jul 6 00:49:23 2014 -0400
starting to fix layout
commit 232bda81037f76674ce88fc8dfdd3fd7d518d29e
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jul 5 13:19:11 2014 -0400
formatting tweak; broke login_form out into own file to be included in default and login pages
commit 03633afbd6d9df774e4876f42cd3fa582768e685
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jul 5 10:14:01 2014 -0400
more template clean up
commit 59cd92af7b23d9a2b7eba0231abc58f806f08751
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jul 5 10:03:27 2014 -0400
cleaning up user templates; broke options out into separate file
commit ae7aff93b2bb89e71088d7ff02e32623e4a895b7
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Fri Jul 4 10:58:04 2014 -0400
cleaned formatting
commit 928fe8adbc91c4b729c6739ac612309ee1b439c6
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Fri Jul 4 10:51:56 2014 -0400
more formatting
commit 851129a23b86b52d256ec42f5d00ea03c1cbbd80
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Fri Jul 4 10:41:22 2014 -0400
cleaning up layout to make options appear on right; tables class=table; buttons Bootstrap-style
commit 9ea9154ed711572909a4f3d78e978dd0e60149f8
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Fri Jul 4 07:08:10 2014 -0400
added style to hide extra div added by jquery ui datepicker
commit 4625a948c3b106ad225f6bb81abdb2aae6a72009
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Fri Jul 4 01:16:38 2014 -0400
fixed layout a bit; only display note results table if notes.size > 0
commit 6da0c7d29aa0188314f23cea25514af5a07448a9
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Fri Jul 4 00:34:24 2014 -0400
made new_comment / insert_comment chained actions
commit 4f5c507ba9573b305f1c8da11c9e782ed1f9d9f9
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Fri Jul 4 00:18:34 2014 -0400
changed button style;updated changelog
commit 79110df2a3951e89ade7304b1407b8346cbdd845
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Thu Jul 3 21:20:39 2014 -0400
fixed bug: link to tasks was borked
commit 6cc556aecfd2cee285e08ee507224f20dd9b97d5
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Thu Jul 3 21:12:01 2014 -0400
made task/edit a Chained action; modified all links from
task/edit/task_id to task/task_id/edit
commit 19822e397701856ae4ad2832d76103762e2fc55a
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Thu Jul 3 20:32:27 2014 -0400
making options more Bootstrap-styled
commit 96f1f13dc760a620968a2e7272a1424ef2b0ab97
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Thu Jul 3 00:01:40 2014 -0400
table class=table
commit d2b23ee38459401dcf747b7990a8ef799ef5a2d6
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 2 23:57:01 2014 -0400
table class=table
commit f11f36a9fb7b1fb2192e1f43abc433bfa3679f40
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 2 10:40:56 2014 -0400
removed redundant navbar
commit b44c281e96856fe942e461a0b4f85438e02e384f
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 2 10:35:06 2014 -0400
formatted a little better
commit 5265f61312304f735f0d7ad1bb1739e477a8df65
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 2 10:34:10 2014 -0400
removed duplicate license section
commit 2ebf9c2234acf7575bcfd478a02bd6a2f7f9daa9
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 2 10:30:35 2014 -0400
cleaned up form; made it Bootstrap-style
commit 731926a87aa0943a6d53da0a9a8995287c4c0ea3
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Wed Jul 2 10:24:57 2014 -0400
formatted and added space between submit button and forgot password link
commit 39a802ce6829dd72c208927b2d9fcc8da224646f
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 20:58:02 2014 -0400
fixed css issue with jquery-ui; updated it to version 1.11 as well
commit d6a0aef7048f3985586333f8bda86e91168b7e2c
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 18:44:24 2014 -0400
updated version and change log
commit 3bc532706df6d80e4c3ce1ebf411d650d2ec37a6
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 18:43:45 2014 -0400
want to use font families from main bootstrap.css
commit 4f12e97a1e9451baa2c408f3ac429a1da6a35527
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 10:33:11 2014 -0400
default data for roles, task comment types, etc.
commit c3dd760d0d23536b35a561302e77daf14aa55f7f
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 10:27:28 2014 -0400
moved blog styles to blog.css
commit 0a46bc6f87f594ba795ca79900e10a943df847e5
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 10:25:31 2014 -0400
removed css from my other project; used as examples
commit 01d83c5081bf9b7a89a18f66d156b575f558bbf3
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 10:24:10 2014 -0400
added Bootstrap blog css
commit 3c6278f368402a6be434ecf2399684130c2e523b
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 10:22:29 2014 -0400
minor updates
commit 25dce9f6e94d27b2039dc7f371a6715430c70caf
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 10:17:36 2014 -0400
moved license info to bottom; it was annoying up top
commit 10778e56e7680ed9158ea9fb1cb5324e3595bf1b
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 10:12:20 2014 -0400
making options work in bootstrap blog style
commit 69a79c3a667d64754670d69eeb14c4e0da220b22
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 10:11:54 2014 -0400
fixed comments link
commit 63fb4f047b028eac2b3a0246d8773ae38801e35e
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 10:03:09 2014 -0400
only display notifications if user exists
commit a83d04e4be713d2ce91419dd59069561d6ac55df
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 09:55:05 2014 -0400
capitalized menu items
commit af6d32017a177a702bf925ffa7f2c34c921a4e9f
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Tue Jul 1 09:54:29 2014 -0400
removed extra navbar; added container div
commit 847f3e73dabab1e79224bf0ae30fad4976d247b4
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jun 29 18:05:24 2014 -0400
fixed bug; displaying task name instead of project name
commit 8ed3778bee555739e1ec6afe0dc1dc23f6b30e6a
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jun 29 18:04:30 2014 -0400
fixed bug; displaying task name instead of project name
commit 13acfd9ebd98eefdea31c11dba425d11b43e1fc7
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jun 29 14:13:41 2014 -0400
title wrong since copied from my other project
commit 519e7ad6d6202f8f8b95c533ab2648872bbafc89
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jun 29 10:13:41 2014 -0400
updated required perl and db info; formatting change
commit 1bb981075e193a76b88876e17580fdf47ecea362
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jun 29 10:07:29 2014 -0400
removing extraneous file
commit 7c363b58b76f8f724093a6b4480fd52953a361b8
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jun 29 09:55:10 2014 -0400
removed extraneous file
commit 5bba4d05342c020a8a2c6a1e73ed216cd91162d2
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sun Jun 29 09:48:53 2014 -0400
changed button styles, made it one big table, and cleaned it up a bit
commit e17b4e35fb045380ac322db89f5227c14e42d600
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 18:01:39 2014 -0400
removed old db file
commit d4e2a1438fe4f4d878020886154d916aa0f0f6e0
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 18:00:25 2014 -0400
removed old db file
commit 670e83b68c8134d20358acb8e51d60ec633e61d7
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 17:56:15 2014 -0400
updated schema dump
commit d663e1f82f3b8239ba89e5fe0928162e619e4290
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 17:46:22 2014 -0400
updated change log, version number
commit c2f9dbd5f72a8e26928f3b5199067cf37dfb3d49
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 17:37:42 2014 -0400
removed lessons_learned link; that type of stuff belongs in a blog, not in the app
commit 5d243c89211aa58e232be150b8c0852e49e9671f
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 17:32:24 2014 -0400
Bootstrap stuff
commit 26df63081f35974418a08ad396f476a3d7588dd0
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 17:31:48 2014 -0400
commented out blog menu item as blogs are not yet implemented
commit ca29661103c197823feb94cff9b57d31392eda74
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 16:38:33 2014 -0400
removed extra navbar
commit c079cfbf78b45b60d2ac891b2458af118d4e931d
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 16:37:07 2014 -0400
changed button style
commit 9ddd46017c6775597450b8704ab80828c624845c
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 16:34:01 2014 -0400
Bootstrap changes
commit 57605db4a93a2322b10a54ac91487efba07577c2
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 16:20:10 2014 -0400
Bootstrap changes
commit bb542cfd4929feb9af25c0d370515914d78b6deb
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 16:18:33 2014 -0400
Bootstrap classes
commit ab7e25aeae2f5ca5b97db6a0c19ec60a40f3a23c
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 16:17:45 2014 -0400
Bootstrap stuff; removed extra navbar
commit 6c2645d7d2398db6e37adda343a03e1a01bddc64
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 16:16:28 2014 -0400
added technology link to footer
commit 5f8567f2f8f9e9120f7c2f36b9a027a00eb2b31d
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 16:06:36 2014 -0400
added some relationshiops
commit 542e3662c6ce8018c692fca9fe186f071108dbed
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 16:05:32 2014 -0400
added technology routine
commit 730814c7398c9b7fe763766623fad880f62427ae
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 16:04:42 2014 -0400
fixed bug: changed url for comments
commit e6440d80d006a250c15f5c36b09a6c4435fb20ce
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 15:33:51 2014 -0400
removed extra navbar
commit 16cef90f55905862079f32fd93e3ff77d7612e4f
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 15:33:13 2014 -0400
removed extra nav tag
commit e173aab68c0849f81afea0a08b9c7dff353eff16
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 15:32:26 2014 -0400
inital commit of file
commit 4b2e41a719ed38ecfdb11fe915e457d6f5afef35
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 15:32:07 2014 -0400
removing retired or backup files
commit 9b1b680b151915eaf2d16264ffb96bb7073144d5
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 15:30:57 2014 -0400
retired files
commit b7be1ebecd42442667db15aa2851b0483a7b5e76
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 15:30:12 2014 -0400
always show requirements
commit 44d6b047dcffd431cc98ac92046164e7157491be
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 15:29:17 2014 -0400
reoganizing
commit 313626593d44dee252f2b4e371d873b49fbfe645
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 15:28:32 2014 -0400
changed layout from vertical tables to horizontal table
commit c486eb2289d0edac759fb91bd90570d765652217
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 15:28:07 2014 -0400
added container div for Bootstrap
commit 8e410a7a43ebf3163f65f958f0dadcc64ff8a4b1
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 15:27:35 2014 -0400
changed layout from vertical tables to horizontal table
commit 6230b92ec052d216cbfe128a24ef72228ed8f1cf
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Sat Jun 28 15:26:37 2014 -0400
more Bootstrap changes; minor bug fixes
commit 56b4adc2cba64c17c616a46fbfa99664829bac75
Author: William B. Hauck <wbhauck@yahoo.com>
Date: Fri Jun 27 10:51:56 2014 -0400