Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-06-19 | Change default SMTP port to 25 | Malf Furious | 1 | -1/+1 | |
2017-06-19 | Add SMTP configuration variables | Malf Furious | 1 | -0/+50 | |
2017-06-04 | Move function getMesgs() into object class | Malf Furious | 2 | -18/+18 | |
This function is needed in the scope of issue, mesgs, and pads alike. It would also make sense to use this to retrive users' private messages. For these reasons, this function is now being defined higher up in the object hierarchy. | |||||
2017-06-04 | Add mesg function makeIssue() | Malf Furious | 1 | -0/+27 | |
This feature allows a pad-level discussion to be promoted to an issue. A new object is created, but all content is preserved. However, if the thread OP message had an attachment, that attachment cannot be retained. | |||||
2017-06-04 | Fix bug in function serveResource() | Malf Furious | 1 | -1/+1 | |
It is necessary to use double-quotes in the Content-Disposition header. | |||||
2017-06-04 | Update mesg function setAttachment() | Malf Furious | 1 | -1/+7 | |
Now saving the original name of the attachment file in the message object. | |||||
2017-06-04 | Define maxsize of attachment uploads | Malf Furious | 1 | -0/+5 | |
Value set to 512 megabytes. | |||||
2017-06-04 | Update df script to support message attachments | Malf Furious | 1 | -0/+6 | |
Now, if a mesg guid is requested under attach/, the attachment file is served and offers the browser the content-disposition for that file. | |||||
2017-06-04 | Update df function serveResource() | Malf Furious | 1 | -3/+7 | |
Added optional parameter for resource's filename. If given, a Content-Disposition header will be delivered to the client. | |||||
2017-06-04 | Add directory for message attachments | Malf Furious | 1 | -0/+3 | |
2017-06-04 | mesg: Add mesg class | Malf Furious | 1 | -0/+249 | |
2017-06-03 | issue: Fix bug in functions advance() and close() | Malf Furious | 1 | -1/+6 | |
If the issue is already closed, these functions should do nothing. Continuing the logic in these functions could currupt the database. | |||||
2017-06-03 | issue: Fix bug in function advance() | Malf Furious | 1 | -2/+2 | |
The call to setParent() should have been in an else. It was being called every time... | |||||
2017-06-01 | Add issue class | Malf Furious | 1 | -0/+117 | |
2017-05-13 | Recover null.jpg head image | Malf Furious | 1 | -0/+0 | |
2017-04-20 | Add dynamic file proxy script | Malf Furious | 1 | -0/+102 | |
Entry point df.php, meaning dynamic file or direct file, added as a means of serving user-supplied content while enforcing access-controls in PHP. | |||||
2017-04-19 | Add object function getBgImg() | Malf Furious | 1 | -0/+12 | |
2017-04-19 | Add object function rmBgImg() | Malf Furious | 1 | -0/+12 | |
2017-04-19 | Add object function setBgImg() | Malf Furious | 1 | -0/+12 | |
2017-04-19 | Add object function getHeadImg() | Malf Furious | 1 | -0/+8 | |
2017-04-19 | Add object function rmHeadImg() | Malf Furious | 1 | -0/+12 | |
2017-04-19 | Add object function setHeadImg() | Malf Furious | 1 | -0/+32 | |
2017-04-19 | Add image cropping logic | Malf Furious | 1 | -0/+70 | |
User-supplied head images will need to be square in their dimensions, so that bootstrap displays them correctly. This function will crop image files after they are uploaded to the server. | |||||
2017-04-16 | Add directory for object background images | Malf Furious | 1 | -0/+3 | |
2017-04-16 | Add directory for object heads | Malf Furious | 1 | -0/+3 | |
2017-04-16 | Add global function saveFile() | Malf Furious | 1 | -0/+41 | |
2017-04-16 | Add global state for page errors, warnings, etc. | Malf Furious | 1 | -0/+40 | |
Added arrays to the global $_SCROTT variable to keep lists of page errors, warnings, and notices. Also added functions to globals.php for interacting with these arrays. | |||||
2017-04-15 | Add database garbage collection | Malf Furious | 1 | -0/+73 | |
2017-04-14 | Fix bug in table function saveObj() | Malf Furious | 1 | -0/+2 | |
Added call to refreshObj() to the end of function saveObj() to fetch all default values defined by the database, not set on the object in PHP. | |||||
2017-04-14 | Revert "Fix bug in table function saveObj()" | Malf Furious | 1 | -3/+0 | |
This reverts commit e7228676ce51bf69cc974fc0bd8f8135c51fd036. | |||||
2017-04-13 | Fix bug in table function saveObj() | Malf Furious | 1 | -0/+3 | |
While creating new objects, some default values (defined in the database schema) are missing in the PHP object definition. To address this, now while saving any *new* database objects, all undefined, expected fields are set to the empty string "". | |||||
2017-04-13 | Update stage function moveBackward() | Malf Furious | 1 | -1/+3 | |
Now calling refreshObj() to update altered pointers. | |||||
2017-04-13 | Add table function refreshObj() | Malf Furious | 1 | -0/+9 | |
2017-04-09 | Fix bug in stage class | Malf Furious | 1 | -0/+1 | |
2017-04-09 | Fix bug in pad class | Malf Furious | 1 | -0/+1 | |
2017-04-09 | Fix bug in group class | Malf Furious | 1 | -0/+1 | |
2017-04-09 | Fix bugs in user class | Malf Furious | 1 | -0/+4 | |
Added calls to function saveObj() where $this is mutated. | |||||
2017-04-09 | Fix bugs in object class | Malf Furious | 1 | -0/+2 | |
Added missing calls to function saveObj() where $this is mutated. | |||||
2017-04-09 | Add agent function getPads_ordByOwnByName() | Malf Furious | 1 | -0/+30 | |
2017-04-09 | Add pad function getStages() | Malf Furious | 1 | -0/+10 | |
2017-04-09 | Add pad function insertStage() | Malf Furious | 1 | -0/+12 | |
2017-04-09 | Add missing require | Malf Furious | 1 | -0/+1 | |
2017-04-09 | Add stage function removeStage() | Malf Furious | 1 | -0/+19 | |
2017-04-09 | Add stage function getIssues_ordByDueByNumb() | Malf Furious | 1 | -0/+19 | |
2017-04-09 | Add stage function insertStage() | Malf Furious | 1 | -0/+11 | |
2017-04-09 | Fix bug in stage moveForward() function | Malf Furious | 1 | -0/+1 | |
Since this function is used by moveBackward(), failing to call $this->saveObj() would result in changes made to $this being lost. $this is now written back to the db every time and calling saveObj() manually when using moveBackward() can result in bad data being written to the db. | |||||
2017-04-09 | Update use of object getParent() function | Malf Furious | 1 | -2/+2 | |
This function has been updated to construct and return the proper object type. This commit addresses the uses of this function so far to account for this. | |||||
2017-04-09 | Add stage class | Malf Furious | 1 | -0/+137 | |
2017-04-07 | Update function getParent() | Malf Furious | 1 | -1/+2 | |
Now returns the correct type of object based on the original object's parent. | |||||
2017-03-29 | Add pad class | Malf Furious | 1 | -0/+87 | |