forked from jayantsarda/dotdash-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinclude.inc
executable file
·148 lines (97 loc) · 3.63 KB
/
include.inc
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
<?php
/*
NSS-TODO list
--------------------------------------------------------------------
Copyright (c) 2005-2013 Amadeus Stevenson, http://amadeus.maclab.org
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
require_once 'settings.inc';
/* Load TODO list */
function loadTODO () {
global $file;
$data = @file ( $file );
foreach ( $data as $line ) {
list ( $tid, $status, $text, $cid, $duedate ) = explode ( "|" , trim ( $line ) );
$todo_list[$tid]["status"]=$status;
$todo_list[$tid]["text"]=$text;
$todo_list[$tid]["cid"]=$cid;
$todo_list[$tid]["duedate"]=$duedate;
}
return @$todo_list;
}
/* Write TODO List */
function writeTODO( $todo_list ) {
global $file;
$fp = fopen ( $file , "w" ) or die ("Can't open todo list for writing");
foreach ( $todo_list as $tid => $data ) {
fwrite ( $fp, "$tid|{$data['status']}|{$data['text']}|{$data['cid']}|{$data['duedate']}\r\n" );
}
fclose ( $fp );
}
/* Load category definitions */
function loadCategories () {
global $categories;
$data = @file ( $categories );
foreach ( $data as $line ) {
list ( $cid, $code, $category ) = explode( "|" , trim ( $line ) );
$category_list[$cid]["code"]=$code;
$category_list[$cid]["title"]=$category;
}
return @$category_list;
}
/* Write Category Definitions */
function writeCategories( $category_list ) {
global $categories;
$fp = fopen ( $categories , "w" ) or die ("Can't open category list for writing");
foreach ( $category_list as $cid => $data ) {
fwrite ( $fp, "$cid|{$data['code']}|{$data['title']}\r\n" );
}
fclose ( $fp );
}
/* Sort List */
function duedate ( $a , $b) {
if ( empty ( $a["duedate"] ) )
$a["duedate"] = 1e22;
if ( empty ( $b["duedate"] ) )
$b["duedate"] = 1e22;
if ($a["duedate"] == $b["duedate"])
return 0;
return ($a["duedate"] < $b["duedate"]) ? -1 : 1;
}
/* Calculate time since event */
function timeSince ( $timestamp ) {
$diff = time() - $timestamp;
if ( $diff < 4000 ) {
$diff = ceil ( $diff / 60 );
$unit = "minute";
} elseif ( $diff < 100000 ) {
$diff = ceil ( $diff / 3600 );
$unit = "hour";
} else {
$diff = ceil ( $diff / 86400 );
$unit = "day";
}
$end = ( $diff <= 1 ) ? NULL : "s";
return "$diff $unit$end ago";
}
?>