timetracker.git
7 years agoUpdate the 101% table height to use a fixed scrollbar via CSS (#28)
Andréas Lundgren [Mon, 24 Oct 2016 14:15:04 +0000 (16:15 +0200)]
Update the 101% table height to use a fixed scrollbar via CSS (#28)

Tested on Windows 10 on latest Chrome, Firefox 43+47+48+49, Internet Explorer 11+10 (and emulated 9+8+7) and Microsoft Edge 38.

7 years agoUpdate filename for exported reports to the users language (#27)
Andréas Lundgren [Mon, 24 Oct 2016 14:11:05 +0000 (16:11 +0200)]
Update filename for exported reports to the users language (#27)

* Update filename for exported reports to the users language

Now defaults to "report" in the users language, or English if the word isn't set. Also includes start date and end date for the generated report.

{report}_{start_date}_{end_date}.xml/csv/pdf

* Add missing dot to filename

7 years agoFixing white space.
anuko [Mon, 24 Oct 2016 11:11:24 +0000 (11:11 +0000)]
Fixing white space.

7 years agoFix the last deprecation notices on class names for PHP 7+ (#26)
Andréas Lundgren [Mon, 24 Oct 2016 10:53:58 +0000 (12:53 +0200)]
Fix the last deprecation notices on class names for PHP 7+ (#26)

* Modified classes: ttSysConfig, ttUser and CustomFields plugin

7 years agoUpdate Swedish translation (#25)
Andréas Lundgren [Mon, 24 Oct 2016 10:45:01 +0000 (12:45 +0200)]
Update Swedish translation (#25)

* Uncompleted indicators section

7 years agoA bit of cleanup in Catalan file.
anuko [Mon, 24 Oct 2016 01:52:27 +0000 (01:52 +0000)]
A bit of cleanup in Catalan file.

7 years agoSome improvements in localization files.
anuko [Sun, 23 Oct 2016 17:15:02 +0000 (17:15 +0000)]
Some improvements in localization files.

7 years agoDutch translation improved.
anuko [Sun, 23 Oct 2016 16:56:03 +0000 (16:56 +0000)]
Dutch translation improved.

7 years agoFinished renaming variables after PR#24 merge.
anuko [Sun, 23 Oct 2016 16:48:24 +0000 (16:48 +0000)]
Finished renaming variables after PR#24 merge.

7 years agoMore renaming.
anuko [Sun, 23 Oct 2016 16:35:02 +0000 (16:35 +0000)]
More renaming.

7 years agoWork in progress renaming variables after PR#24 merge.
anuko [Sun, 23 Oct 2016 16:26:58 +0000 (16:26 +0000)]
Work in progress renaming variables after PR#24 merge.

7 years agoSome more renaming.
anuko [Sun, 23 Oct 2016 16:02:16 +0000 (16:02 +0000)]
Some more renaming.

7 years agoWork in progress renaming things.
anuko [Sun, 23 Oct 2016 14:48:39 +0000 (14:48 +0000)]
Work in progress renaming things.

7 years agoSome more renaming.
anuko [Sun, 23 Oct 2016 14:35:48 +0000 (14:35 +0000)]
Some more renaming.

7 years agoRenaming in progress.
anuko [Sun, 23 Oct 2016 14:27:30 +0000 (14:27 +0000)]
Renaming in progress.

7 years agoWork in progress renaming things.
anuko [Sun, 23 Oct 2016 14:07:59 +0000 (14:07 +0000)]
Work in progress renaming things.

7 years agoVersion change for PR#24, work in progress renaming things.
anuko [Sun, 23 Oct 2016 13:49:17 +0000 (13:49 +0000)]
Version change for PR#24, work in progress renaming things.

7 years agoAdd option to profile_edit.php to show/hide users uncompleted entries (#24)
Andréas Lundgren [Sun, 23 Oct 2016 13:22:44 +0000 (15:22 +0200)]
Add option to profile_edit.php to show/hide users uncompleted entries (#24)

I'll try to do some renaming after this merge.

7 years agoVersion change for PR#23, fixed dbinstall.php for it to work.
anuko [Sun, 16 Oct 2016 21:55:15 +0000 (21:55 +0000)]
Version change for PR#23, fixed dbinstall.php for it to work.

7 years agoExpense Item description - Follow-up to pull request #22 (#23)
Kim Keown [Sun, 16 Oct 2016 21:42:38 +0000 (15:42 -0600)]
Expense Item description - Follow-up to pull request #22 (#23)

* mysql.sql suggested revision Line 330

Follow-up for pull request #22: $cl_item_name for expenses.php and expense_edit.php was changed to textarea to allow a larger expense description input area. However, database input size had been overlooked and was fortunately noticed upon review.

Updated revision of mysql.sql to replace varchar(255) with a text property to allow a detailed description of the expense.

Line 330
  `name` text NOT NULL,                # expense item name (what is an expense for)

* dbinstall.php revision Line 612

Follow-up to pull request #22:
Previously expenses.php and expense_edit.php $cl_item_name field was revised to 'textarea' to provide a larger input box and longer description of the expense.
However, database character allowance had been overlooked and was fortunately noticed upon review.

- Update mysql.sql to replace varchar(255) with the 'text' property to increase allowable entry length.
Limit character input via expenses.php and expense_edit.php $cl_item_name textarea 'maxlength'.

- Update dbinstall.php with an identical revision.
Line 612
   Original: `name` varchar(255) NOT NULL,
    `name` text NOT NULL,

* mysql.sql revision Line 330

Follow-up to pull request #22:
Previously expenses.php and expense_edit.php $cl_item_name field was revised to 'textarea' to provide a larger input box and longer description of the expense. However, database character allowance had been overlooked and was fortunately noticed upon review.

- Update mysql.sql to replace tt_expense_items 'name' property varchar(255) with the text property to increase allowable entry length.
Limit character input via expenses.php and expense_edit.php $cl_item_name textarea 'maxlength'. Update dbinstall.php with an identical revision.

Line 330
(Original:  `name` varchar(255) NOT NULL,)
`name` text NOT NULL,

*  expense_edit.php revision Line 122

Follow-up to pull request #22:
Previously expenses.php and expense_edit.php $cl_item_name field was revised to 'textarea' to provide a larger input box and longer expense description. However, database character allowance had been overlooked and was fortunately noticed upon review. Accordingly, the textarea maxlength revision was removed.

- Update mysql.sql to replace tt_expense_items 'name' property varchar(255) with the text property to increase allowable entry length.
- Update dbinstall.php with an identical revision.

 - Update expenses.php and expense_edit.php $cl_item_name textarea to include a maxlength property of 800 characters.
The expense record is useful for recording any added debit or fixed-rate charge, and a generous character limit will allow a detailed description that can be easily understood in billing logs and reports.

Line 122
Original:
$form->addInput(array('type'=>'textarea', 'name'=>'item_name','style'=>'width: 250px; height:'.NOTE_INPUT_HEIGHT.'px;','value'=>$cl_item_name));

Revised:
$form->addInput(array('type'=>'textarea','maxlength'=>'800','name'=>'item_name','style'=>'width: 250px; height:'.NOTE_INPUT_HEIGHT.'px;','value'=>$cl_item_name));

*  expenses.php revision Line 130

Follow-up to pull request #22:
Previously expenses.php and expense_edit.php $cl_item_name field was revised to 'textarea' to provide a larger input box and longer expense description. However, database character allowance had been overlooked and was fortunately noticed upon review. Accordingly, the textarea maxlength revision was removed.

- Update mysql.sql to replace tt_expense_items 'name' property varchar(255) with the text property to increase allowable entry length.
- Update dbinstall.php with an identical revision.

 - Update expenses.php and expense_edit.php $cl_item_name textarea to include a maxlength property of 800 characters.
The expense record is useful for recording any added debit or fixed-rate charge, and a generous character limit will allow for a detailed description that can be easily understood within billing logs and reports.

Line 130
Original:
$form->addInput(array('type'=>'textarea', 'name'=>'item_name','style'=>'width: 250px; height:'.NOTE_INPUT_HEIGHT.'px;','value'=>$cl_item_name));

Revised:
$form->addInput(array('type'=>'textarea','maxlength'=>'800','name'=>'item_name','style'=>'width: 250px; height:'.NOTE_INPUT_HEIGHT.'px;','value'=>$cl_item_name));

7 years agoA little bit of cleanup in ca.lang.php file.
anuko [Sun, 16 Oct 2016 21:19:06 +0000 (21:19 +0000)]
A little bit of cleanup in ca.lang.php file.

7 years agoSome refactoring and version change for PR#20.
anuko [Sun, 16 Oct 2016 20:02:16 +0000 (20:02 +0000)]
Some refactoring and version change for PR#20.

7 years agoReplaced boolval calls to cast to bool so that the app works with PHP 5.2.
anuko [Sun, 16 Oct 2016 19:25:55 +0000 (19:25 +0000)]
Replaced boolval calls to cast to bool so that the app works with PHP 5.2.

7 years agoAdd indicator for uncompleted time entry in users.php (#20)
Andréas Lundgren [Sun, 16 Oct 2016 19:06:56 +0000 (21:06 +0200)]
Add indicator for uncompleted time entry in users.php (#20)

* Add indicator for uncompleted time entry in users.php

Roles that can manage team now see if a user has an uncompleted time entry from the Users screen.

* Fix - White space

7 years agoChanged expense item control presentation as per Kim Keown's PR#22.
anuko [Tue, 4 Oct 2016 17:24:59 +0000 (17:24 +0000)]
Changed expense item control presentation as per Kim Keown's PR#22.

7 years agoUpdate .gitignore and add .editorconfig (#21)
Andréas Lundgren [Wed, 28 Sep 2016 03:38:34 +0000 (05:38 +0200)]
Update .gitignore and add .editorconfig (#21)

* Update .gitignore with compiled files and some OS specific files

* Remove all files from templates_c (exept keepme file).
* Remove some system files from Windows, Linux and macOS.

* Add an .editorconfig file

Makes it easier to contribute to the project

7 years agoAdded more access control checks to mobile pages.
anuko [Sun, 25 Sep 2016 20:56:48 +0000 (20:56 +0000)]
Added more access control checks to mobile pages.

7 years agoAdded more access control checks.
anuko [Sun, 25 Sep 2016 20:35:09 +0000 (20:35 +0000)]
Added more access control checks.

7 years agoWork in progress added more checks for access control.
anuko [Sun, 25 Sep 2016 19:33:08 +0000 (19:33 +0000)]
Work in progress added more checks for access control.

7 years agoUpdates to the Swedish translation (#18)
Andréas Lundgren [Thu, 22 Sep 2016 13:26:01 +0000 (15:26 +0200)]
Updates to the Swedish translation (#18)

Refinements to the new translations after a week of using the application.

7 years agoVersion update.
anuko [Wed, 21 Sep 2016 01:53:23 +0000 (01:53 +0000)]
Version update.

7 years agoWork in progress adding checks for enabled plugins for pages.
anuko [Wed, 21 Sep 2016 01:52:33 +0000 (01:52 +0000)]
Work in progress adding checks for enabled plugins for pages.

7 years agomove edit link to a different column in order to free up horizontal s… (#11)
Taylor Hurt [Tue, 20 Sep 2016 20:32:28 +0000 (16:32 -0400)]
move edit link to a different column in order to free up horizontal s… (#11)

* move edit link to a different column in order to free up horizontal space on mobile

* fix missing manager name on mobile/users page when co-manager is logged in

7 years agoUpdate Swedish translation (#16)
Andréas Lundgren [Fri, 16 Sep 2016 14:27:18 +0000 (16:27 +0200)]
Update Swedish translation (#16)

7 years agoVersion update for PR#15, some changes in Swedish file, hopefully correct.
anuko [Thu, 15 Sep 2016 17:32:13 +0000 (17:32 +0000)]
Version update for PR#15, some changes in Swedish file, hopefully correct.

7 years agoUpdate the Swedish translation (#15)
Andréas Lundgren [Thu, 15 Sep 2016 16:39:28 +0000 (18:39 +0200)]
Update the Swedish translation (#15)

* Update Swedish translation

Redone from the current English translation.

* Add safe-check for NOTE_INPUT_HEIGHT and a better comment description

7 years agoFixed rate presentation.
anuko [Wed, 14 Sep 2016 22:00:43 +0000 (22:00 +0000)]
Fixed rate presentation.

7 years agoVersion change for PR#13, spelling fix, cosmetic.
Nik Okuntseff [Wed, 14 Sep 2016 19:31:17 +0000 (19:31 +0000)]
Version change for PR#13, spelling fix, cosmetic.

7 years agoFix new line symbol on Windows systems in dbinstall.php (#13)
Andréas Lundgren [Wed, 14 Sep 2016 19:22:43 +0000 (21:22 +0200)]
Fix new line symbol on Windows systems in dbinstall.php (#13)

7 years agoGetting rid of PHP Deprecated warnings.
Nik Okuntseff [Tue, 13 Sep 2016 00:31:58 +0000 (00:31 +0000)]
Getting rid of PHP Deprecated warnings.

7 years agoGetting rid of PHP Deprecated warnings.
Nik Okuntseff [Mon, 12 Sep 2016 23:56:59 +0000 (23:56 +0000)]
Getting rid of PHP Deprecated warnings.

7 years agoUpdated PEAR and PEAR packages.
Nik Okuntseff [Sun, 11 Sep 2016 20:03:12 +0000 (20:03 +0000)]
Updated PEAR and PEAR packages.

7 years agoFixed a critical issue with previous commit (hard-coded timestamp for testing).
Nik Okuntseff [Sat, 10 Sep 2016 23:21:42 +0000 (23:21 +0000)]
Fixed a critical issue with previous commit (hard-coded timestamp for testing).

7 years agoFixed double notifications, hopefully.
Nik Okuntseff [Sat, 10 Sep 2016 23:08:58 +0000 (23:08 +0000)]
Fixed double notifications, hopefully.

7 years agoAdded a check for config.php file to start with PHP opening tag.
Nik Okuntseff [Wed, 31 Aug 2016 18:09:41 +0000 (18:09 +0000)]
Added a check for config.php file to start with PHP opening tag.

7 years agoChanged version after pull request #10 merge.
Nik Okuntseff [Tue, 30 Aug 2016 23:23:18 +0000 (23:23 +0000)]
Changed version after pull request #10 merge.

7 years agoadds delete button to edit pages (#10)
Taylor Hurt [Tue, 30 Aug 2016 22:39:07 +0000 (18:39 -0400)]
adds delete button to edit pages (#10)

7 years agoChanged version for PR#9.
Nik Okuntseff [Fri, 26 Aug 2016 17:11:52 +0000 (17:11 +0000)]
Changed version for PR#9.

7 years agoexpands mobile page access (#9)
Taylor Hurt [Fri, 26 Aug 2016 16:28:42 +0000 (12:28 -0400)]
expands mobile page access (#9)

* expands mobile page access

add mobile .tpl files;
modify mobile/header.tpl to accomodate;
add mobile php files;
fix template paths to mobile/ and path to initialize.php;
add mobile-table CSS class;
change main mobile/ pages to use mobile-table class;
fix path to subm_bg.gif;
remove Top Menu (the one with black backgroud);
remove Charts, Reports, Invoices, Export from submenu;
remove fixed width for many input elements;
remove nowrap attribute in header.tpl submenu;
add inline style for background-repeat in header.tpl submenu;
prevent textarea's from being resizable horizontally, allow them to be resizable vertically;
remove fixed width from textarea cols attribute;
add mobile-textarea CSS class;
fix bug in project_edit.php -- onload event referring to wrong property name;
change expenses date input to be like that of time date input;

* remove fixed width attribute in header table

* add mobile-table-details CSS for main pages

* remove Delete column from pages

* add redundant word-wrap rule for browser compatibility

* for expense_edit: fix template paths to mobile/ and path to initialize.php

7 years agoRemoved unneeded cycle.
Nik Okuntseff [Thu, 18 Aug 2016 20:05:37 +0000 (20:05 +0000)]
Removed unneeded cycle.

7 years agoAdded a check for PHP version in dbinstall.php.
Nik Okuntseff [Thu, 18 Aug 2016 19:25:43 +0000 (19:25 +0000)]
Added a check for PHP version in dbinstall.php.

7 years agoRenamed a variable for consistency.
Nik Okuntseff [Thu, 18 Aug 2016 18:10:45 +0000 (18:10 +0000)]
Renamed a variable for consistency.

7 years agoMade records with 0 duration legal.
Nik Okuntseff [Tue, 16 Aug 2016 18:40:07 +0000 (18:40 +0000)]
Made records with 0 duration legal.

7 years agoDutch translation improved.
Nik Okuntseff [Sun, 14 Aug 2016 19:20:44 +0000 (19:20 +0000)]
Dutch translation improved.

7 years agoIncreased max upload file size limit.
Nik Okuntseff [Wed, 27 Jul 2016 21:50:49 +0000 (21:50 +0000)]
Increased max upload file size limit.

7 years agoImplemented import of monthly quotas.
Nik Okuntseff [Sun, 24 Jul 2016 18:02:29 +0000 (18:02 +0000)]
Implemented import of monthly quotas.

7 years agoAdded export of monthly quotas data.
Nik Okuntseff [Sun, 24 Jul 2016 17:03:05 +0000 (17:03 +0000)]
Added export of monthly quotas data.

7 years agoRefactoring - mostly white space.
Nik Okuntseff [Sat, 23 Jul 2016 18:22:27 +0000 (18:22 +0000)]
Refactoring - mostly white space.

7 years agoFixed monthly quota class for flexible week start days.
Nik Okuntseff [Sat, 23 Jul 2016 17:57:52 +0000 (17:57 +0000)]
Fixed monthly quota class for flexible week start days.

7 years agoRefactoring - renamed a variable.
Nik Okuntseff [Fri, 22 Jul 2016 22:06:56 +0000 (22:06 +0000)]
Refactoring - renamed a variable.

7 years agoSome refactoring and commenting.
Nik Okuntseff [Fri, 22 Jul 2016 21:29:12 +0000 (21:29 +0000)]
Some refactoring and commenting.

7 years agoRefactoring - some renaming to keep things consistent.
Nik Okuntseff [Fri, 22 Jul 2016 20:33:27 +0000 (20:33 +0000)]
Refactoring - some renaming to keep things consistent.

7 years agoRefactored profile_edit.tpl a bit.
Nik Okuntseff [Fri, 22 Jul 2016 19:52:31 +0000 (19:52 +0000)]
Refactored profile_edit.tpl a bit.

7 years agoRefactored quotas.php and quotas.tpl.
Nik Okuntseff [Fri, 22 Jul 2016 18:22:13 +0000 (18:22 +0000)]
Refactored quotas.php and quotas.tpl.

7 years agoRefactoring in progress of quotas.php file.
Nik Okuntseff [Fri, 22 Jul 2016 17:34:18 +0000 (17:34 +0000)]
Refactoring in progress of quotas.php file.

7 years agoRefactored quotes template.
Nik Okuntseff [Fri, 22 Jul 2016 16:58:42 +0000 (16:58 +0000)]
Refactored quotes template.

7 years agoRenamed quota files for naming consistency.
Nik Okuntseff [Fri, 22 Jul 2016 16:34:10 +0000 (16:34 +0000)]
Renamed quota files for naming consistency.

7 years agoSome refactoring in localization files.
Nik Okuntseff [Fri, 22 Jul 2016 16:23:45 +0000 (16:23 +0000)]
Some refactoring in localization files.

7 years agoSome refactoring in translation files.
Nik Okuntseff [Fri, 22 Jul 2016 14:53:06 +0000 (14:53 +0000)]
Some refactoring in translation files.

7 years agoSome cleanup in localization files.
Nik Okuntseff [Thu, 21 Jul 2016 22:58:27 +0000 (22:58 +0000)]
Some cleanup in localization files.

7 years agoRemoved an unused string.
Nik Okuntseff [Thu, 21 Jul 2016 22:06:34 +0000 (22:06 +0000)]
Removed an unused string.

7 years agoRemoved an unused string.
Nik Okuntseff [Thu, 21 Jul 2016 22:02:03 +0000 (22:02 +0000)]
Removed an unused string.

7 years agoRefactoring: renamed a few variables for consistency.
Nik Okuntseff [Thu, 21 Jul 2016 21:47:05 +0000 (21:47 +0000)]
Refactoring: renamed a few variables for consistency.

7 years agoRemoved an unused string.
Nik Okuntseff [Thu, 21 Jul 2016 21:38:07 +0000 (21:38 +0000)]
Removed an unused string.

7 years agoSome refactoring in translation files.
Nik Okuntseff [Thu, 21 Jul 2016 21:34:49 +0000 (21:34 +0000)]
Some refactoring in translation files.

7 years agoSome renaming in localization files.
Nik Okuntseff [Thu, 21 Jul 2016 21:17:43 +0000 (21:17 +0000)]
Some renaming in localization files.

7 years agoSome rearrangements in translation files.
Nik Okuntseff [Thu, 21 Jul 2016 21:01:02 +0000 (21:01 +0000)]
Some rearrangements in translation files.

7 years agoSome cleanup in translation files.
Nik Okuntseff [Thu, 21 Jul 2016 19:26:39 +0000 (19:26 +0000)]
Some cleanup in translation files.

7 years agoSome refactoring in translation files.
Nik Okuntseff [Thu, 21 Jul 2016 18:34:29 +0000 (18:34 +0000)]
Some refactoring in translation files.

7 years agoRefactoring - white space removal.
Nik Okuntseff [Thu, 21 Jul 2016 17:19:25 +0000 (17:19 +0000)]
Refactoring - white space removal.

7 years agoRefactoring - white space.
Nik Okuntseff [Thu, 21 Jul 2016 17:07:15 +0000 (17:07 +0000)]
Refactoring - white space.

7 years agoRefactoring - renamed a function for clarity of purpose.
Nik Okuntseff [Thu, 21 Jul 2016 16:41:41 +0000 (16:41 +0000)]
Refactoring - renamed a function for clarity of purpose.

7 years agoFixed a bug with Monthly Quota plugin.
Nik Okuntseff [Thu, 21 Jul 2016 14:40:39 +0000 (14:40 +0000)]
Fixed a bug with Monthly Quota plugin.

Was reporting less that 1 hour over quota incorrectly.

7 years agoRemoved a not used function.
Nik Okuntseff [Tue, 19 Jul 2016 20:32:34 +0000 (20:32 +0000)]
Removed a not used function.

7 years agoRemoved debug option set in getConnection().
Nik Okuntseff [Tue, 19 Jul 2016 19:43:22 +0000 (19:43 +0000)]
Removed debug option set in getConnection().

Non needed for production systems.

7 years agoAdded ttHttpRequest::isGet() convenience function.
Nik Okuntseff [Tue, 19 Jul 2016 19:23:13 +0000 (19:23 +0000)]
Added ttHttpRequest::isGet() convenience function.

7 years agoRefactoring: some renaming.
Nik Okuntseff [Mon, 18 Jul 2016 21:10:26 +0000 (21:10 +0000)]
Refactoring: some renaming.

7 years agoRafactoring: renamed a variable.
Nik Okuntseff [Mon, 18 Jul 2016 21:01:29 +0000 (21:01 +0000)]
Rafactoring: renamed a variable.

7 years agoRefactoring: renamed a field for clarity.
Nik Okuntseff [Mon, 18 Jul 2016 20:48:06 +0000 (20:48 +0000)]
Refactoring: renamed a field for clarity.

7 years agoCosmetic change in comment.
Nik Okuntseff [Mon, 18 Jul 2016 18:57:31 +0000 (18:57 +0000)]
Cosmetic change in comment.

7 years agoRefactoring - renamed some defines.
Nik Okuntseff [Mon, 18 Jul 2016 18:54:49 +0000 (18:54 +0000)]
Refactoring - renamed some defines.

7 years agoMerge branch 'avidenic-taskChanges'
Nik Okuntseff [Mon, 18 Jul 2016 18:17:43 +0000 (18:17 +0000)]
Merge branch 'avidenic-taskChanges'

7 years agoMerge branch 'taskChanges' of https://github.com/avidenic/timetracker into avidenic...
Nik Okuntseff [Mon, 18 Jul 2016 18:16:52 +0000 (18:16 +0000)]
Merge branch 'taskChanges' of https://github.com/avidenic/timetracker into avidenic-taskChanges

Conflicts:
.gitignore
WEB-INF/config.php.dist

7 years agoFixed version.
Nik Okuntseff [Mon, 18 Jul 2016 17:43:23 +0000 (17:43 +0000)]
Fixed version.

7 years agoMerge branch 'avidenic-master'
Nik Okuntseff [Mon, 18 Jul 2016 17:32:00 +0000 (17:32 +0000)]
Merge branch 'avidenic-master'

7 years agoMerge branch 'master' of https://github.com/avidenic/timetracker into avidenic-master
Nik Okuntseff [Mon, 18 Jul 2016 17:26:45 +0000 (17:26 +0000)]
Merge branch 'master' of https://github.com/avidenic/timetracker into avidenic-master

Conflicts:
.gitignore
WEB-INF/templates/footer.tpl

7 years agoPreparing to merge pull request #3.
Nik Okuntseff [Mon, 18 Jul 2016 16:52:38 +0000 (16:52 +0000)]
Preparing to merge pull request #3.

7 years agoAdded a check if templates_c dir is writable.
Nik Okuntseff [Sun, 17 Jul 2016 23:04:16 +0000 (23:04 +0000)]
Added a check if templates_c dir is writable.

7 years agoPut environment checks into dbinstall.php.
Nik Okuntseff [Sun, 17 Jul 2016 22:06:20 +0000 (22:06 +0000)]
Put environment checks into dbinstall.php.

7 years agoAdded environment_check.php file.
Nik Okuntseff [Sun, 17 Jul 2016 21:35:15 +0000 (21:35 +0000)]
Added environment_check.php file.

It provides troubleshooting for basic config errors.