Simple History - Version 1.3.1

Version Description

  • Improved contrast for details view
  • Fix sql error on installation due to missing column
  • Remove options and database table during removal of plugin
  • Added: German translation for extender module
Download this release

Release Info

Developer eskapism
Plugin Icon 128x128 Simple History
Version 1.3.1
Comparing to
See all releases

Code changes from version 1.3 to 1.3.1

README.md CHANGED
@@ -1,4 +1,3 @@
1
-
2
  WordPress Simple History
3
  ========================
4
 
@@ -8,3 +7,14 @@ Think of it as **Syslog for WordPress**
8
  Download from WordPress.org:
9
  http://wordpress.org/extend/plugins/simple-history/
10
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  WordPress Simple History
2
  ========================
3
 
7
  Download from WordPress.org:
8
  http://wordpress.org/extend/plugins/simple-history/
9
 
10
+ # Screenshots
11
+
12
+ **The log with different kind of items logged**
13
+ ![Simple History screenshot 1](http://eskapism.se/external/simple-history/screenshot-1.png)
14
+
15
+ **The setings page**
16
+ ![Simple History screenshot 1](http://eskapism.se/external/simple-history/screenshot-2.png)
17
+
18
+ **Example of RSS feed with history items**
19
+ ![Simple History screenshot 1](http://eskapism.se/external/simple-history/screenshot-3.png)
20
+
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Simple History
4
  Plugin URI: http://eskapism.se/code-playground/simple-history/
5
  Description: Get a log/history/audit log/version history of the changes made by users in WordPress.
6
- Version: 1.3
7
  Author: Pär Thernström
8
  Author URI: http://eskapism.se/
9
  License: GPL2
@@ -27,7 +27,7 @@ License: GPL2
27
 
28
  load_plugin_textdomain('simple-history', false, "/simple-history/languages");
29
 
30
- define( "SIMPLE_HISTORY_VERSION", "1.3");
31
  define( "SIMPLE_HISTORY_NAME", "Simple History");
32
 
33
  // Find the plugin directory URL
@@ -228,6 +228,7 @@ define("SIMPLE_HISTORY_URL", $plugin_dir_url);
228
  user_id int(10) NOT NULL,
229
  object_id int(10) NOT NULL,
230
  object_name VARCHAR(256) NOT NULL COLLATE utf8_general_ci,
 
231
  PRIMARY KEY (id)
232
  ) CHARACTER SET=utf8;";
233
 
@@ -1124,6 +1125,7 @@ function simple_history_install() {
1124
  user_id int(10) NOT NULL,
1125
  object_id int(10) NOT NULL,
1126
  object_name varchar(255) NOT NULL COLLATE utf8_general_ci,
 
1127
  PRIMARY KEY (id)
1128
  ) CHARACTER SET=utf8;";
1129
 
3
  Plugin Name: Simple History
4
  Plugin URI: http://eskapism.se/code-playground/simple-history/
5
  Description: Get a log/history/audit log/version history of the changes made by users in WordPress.
6
+ Version: 1.3.1
7
  Author: Pär Thernström
8
  Author URI: http://eskapism.se/
9
  License: GPL2
27
 
28
  load_plugin_textdomain('simple-history', false, "/simple-history/languages");
29
 
30
+ define( "SIMPLE_HISTORY_VERSION", "1.3.1");
31
  define( "SIMPLE_HISTORY_NAME", "Simple History");
32
 
33
  // Find the plugin directory URL
228
  user_id int(10) NOT NULL,
229
  object_id int(10) NOT NULL,
230
  object_name VARCHAR(256) NOT NULL COLLATE utf8_general_ci,
231
+ action_description longtext,
232
  PRIMARY KEY (id)
233
  ) CHARACTER SET=utf8;";
234
 
1125
  user_id int(10) NOT NULL,
1126
  object_id int(10) NOT NULL,
1127
  object_name varchar(255) NOT NULL COLLATE utf8_general_ci,
1128
+ action_description longtext,
1129
  PRIMARY KEY (id)
1130
  ) CHARACTER SET=utf8;";
1131
 
languages/simple-history.pot CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/simple-history\n"
7
- "POT-Creation-Date: 2013-04-22 06:14:22+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,171 +12,175 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: index.php:93 index.php:110
16
  msgid "added"
17
  msgstr ""
18
 
19
- #: index.php:94
20
  msgid "approved"
21
  msgstr ""
22
 
23
- #: index.php:95
24
  msgid "unapproved"
25
  msgstr ""
26
 
27
- #: index.php:96 simple-history-extender/class.simple-history-extend.php:92
28
  msgid "marked as spam"
29
  msgstr ""
30
 
31
- #: index.php:97 simple-history-extender/class.simple-history-extend.php:94
32
  msgid "trashed"
33
  msgstr ""
34
 
35
- #: index.php:98 simple-history-extender/class.simple-history-extend.php:95
36
  msgid "untrashed"
37
  msgstr ""
38
 
39
- #: index.php:99 simple-history-extender/class.simple-history-extend.php:89
40
  msgid "created"
41
  msgstr ""
42
 
43
- #: index.php:100 simple-history-extender/class.simple-history-extend.php:91
44
  msgid "deleted"
45
  msgstr ""
46
 
47
- #: index.php:101 simple-history-extender/class.simple-history-extend.php:239
48
  msgid "updated"
49
  msgstr ""
50
 
51
- #: index.php:102
52
  msgid "nav_menu_item"
53
  msgstr ""
54
 
55
- #: index.php:103 index.php:1715
56
  msgid "attachment"
57
  msgstr ""
58
 
59
- #: index.php:104 index.php:1796
60
  msgid "user"
61
  msgstr ""
62
 
63
- #: index.php:105
64
  msgid "settings page"
65
  msgstr ""
66
 
67
- #: index.php:106 simple-history-extender/class.simple-history-extend.php:90
68
  msgid "edited"
69
  msgstr ""
70
 
71
- #: index.php:107
72
  msgid "comment"
73
  msgstr ""
74
 
75
- #: index.php:108
76
  msgid "logged in"
77
  msgstr ""
78
 
79
- #: index.php:109
80
  msgid "logged out"
81
  msgstr ""
82
 
83
- #: index.php:111
84
  msgid "modified"
85
  msgstr ""
86
 
87
- #: index.php:112
88
  msgid "upgraded it\\'s database"
89
  msgstr ""
90
 
91
- #: index.php:113
92
  msgid "plugin"
93
  msgstr ""
94
 
95
- #: index.php:126 index.php:285 index.php:1027
96
  msgid "History"
97
  msgstr ""
98
 
99
- #: index.php:186
100
  msgid "WordPress %1$s"
101
  msgstr ""
102
 
103
- #: index.php:199 index.php:301
104
  msgid "Donate"
105
  msgstr ""
106
 
107
- #: index.php:271 index.php:292
108
  msgid "Simple History Settings"
109
  msgstr ""
110
 
111
- #: index.php:297
112
  msgid "Show Simple History"
113
  msgstr ""
114
 
115
- #: index.php:298
116
  msgid "Number of items per page"
117
  msgstr ""
118
 
119
- #: index.php:299 index.php:1938
120
  msgid "RSS feed"
121
  msgstr ""
122
 
123
- #: index.php:300
124
  msgid "Clear log"
125
  msgstr ""
126
 
127
- #: index.php:353 index.php:412
 
 
 
 
128
  msgid "History for %s"
129
  msgstr ""
130
 
131
- #: index.php:354 index.php:413
132
  msgid "WordPress History for %s"
133
  msgstr ""
134
 
135
- #: index.php:377
136
  msgid "By %s"
137
  msgstr ""
138
 
139
- #: index.php:381
140
  msgid "%d occasions"
141
  msgstr ""
142
 
143
- #: index.php:416
144
  msgid "Wrong RSS secret"
145
  msgstr ""
146
 
147
- #: index.php:417
148
  msgid ""
149
  "Your RSS secret for Simple History RSS feed is wrong. Please see WordPress "
150
  "settings for current link to the RSS feed."
151
  msgstr ""
152
 
153
- #: index.php:496 index.php:1397
154
  msgid "One item"
155
  msgid_plural "%1$d items"
156
  msgstr[0] ""
157
  msgstr[1] ""
158
 
159
- #: index.php:559
160
  msgid "on the dashboard"
161
  msgstr ""
162
 
163
- #: index.php:564
164
  msgid "as a page under the dashboard menu"
165
  msgstr ""
166
 
167
- #: index.php:579
168
  msgid "Cleared database"
169
  msgstr ""
170
 
171
- #: index.php:587
172
  msgid "Items in the database are automatically removed after 60 days."
173
  msgstr ""
174
 
175
- #: index.php:589
176
  msgid "Clear it now."
177
  msgstr ""
178
 
179
- #: index.php:603
180
  msgid ""
181
  "\n"
182
  "\t\t\tPlease\n"
@@ -188,181 +192,185 @@ msgid ""
188
  "\t\t\t"
189
  msgstr ""
190
 
191
- #: index.php:637
192
  msgid "Created new secret RSS address"
193
  msgstr ""
194
 
195
- #: index.php:648
196
  msgid ""
197
  "This is a secret RSS feed for Simple History. Only share the link with "
198
  "people you trust"
199
  msgstr ""
200
 
201
- #: index.php:651
202
  msgid ""
203
  "You can <a href='%s'>generate a new address</a> for the RSS feed. This is "
204
  "useful if you think that the address has fallen into the wrong hands."
205
  msgstr ""
206
 
207
- #: index.php:702 index.php:718 index.php:750
208
  msgid "From %1$s on %2$s"
209
  msgstr ""
210
 
211
- #: index.php:1144
212
  msgid "All types"
213
  msgstr ""
214
 
215
- #: index.php:1305 index.php:1309
216
  msgid "By all users"
217
  msgstr ""
218
 
219
- #: index.php:1363
220
  msgid "Search"
221
  msgstr ""
222
 
223
- #: index.php:1401
224
  msgid "Go to the first page"
225
  msgstr ""
226
 
227
- #: index.php:1402
228
  msgid "Go to the previous page"
229
  msgstr ""
230
 
231
- #: index.php:1403
232
  msgid "Current page"
233
  msgstr ""
234
 
235
- #: index.php:1404
236
  msgid "of"
237
  msgstr ""
238
 
239
- #: index.php:1405
240
  msgid "Go to the next page"
241
  msgstr ""
242
 
243
- #: index.php:1406
244
  msgid "Go to the last page"
245
  msgstr ""
246
 
247
- #: index.php:1669
248
  msgid "Unknown or deleted user"
249
  msgstr ""
250
 
251
- #: index.php:1764
252
  msgid "File name:"
253
  msgstr ""
254
 
255
- #: index.php:1765
256
  msgid "File size:"
257
  msgstr ""
258
 
259
- #: index.php:1767
260
  msgid "Dimensions:"
261
  msgstr ""
262
 
263
- #: index.php:1768
264
  msgid "Length:"
265
  msgstr ""
266
 
267
- #: index.php:1848 simple-history-extender/simple-history-extender.php:274
268
  msgid "activated"
269
  msgstr ""
270
 
271
- #: index.php:1851 simple-history-extender/simple-history-extender.php:274
272
  msgid "deactivated"
273
  msgstr ""
274
 
275
- #: index.php:1854
276
  msgid "enabled"
277
  msgstr ""
278
 
279
- #: index.php:1857
280
  msgid "disabled"
281
  msgstr ""
282
 
283
- #: index.php:1873
284
  msgid "<span class=\"when\">%1$s ago</span> by %2$s"
285
  msgstr ""
286
 
287
- #: index.php:1875
288
  msgid "%s at %s"
289
  msgstr ""
290
 
291
- #: index.php:1897
 
 
 
 
292
  msgid "+ 1 occasion"
293
  msgstr ""
294
 
295
- #: index.php:1900
296
  msgid "+ %d occasions"
297
  msgstr ""
298
 
299
- #: index.php:1908
300
  msgid "%s ago (%s at %s)"
301
  msgstr ""
302
 
303
- #: index.php:1931
304
  msgid "Show 5 more"
305
  msgstr ""
306
 
307
- #: index.php:1932
308
  msgid "Show 15 more"
309
  msgstr ""
310
 
311
- #: index.php:1933
312
  msgid "Show 50 more"
313
  msgstr ""
314
 
315
- #: index.php:1934
316
  msgid "Show 100 more"
317
  msgstr ""
318
 
319
- #: index.php:1937
320
  msgid "No matching items found."
321
  msgstr ""
322
 
323
- #: index.php:1940
324
  msgid "Show"
325
  msgstr ""
326
 
327
- #: index.php:1946
328
  msgid "Loading..."
329
  msgstr ""
330
 
331
- #: index.php:1965
332
  msgid "No history items found."
333
  msgstr ""
334
 
335
- #: index.php:1966
336
  msgid ""
337
  "Please note that Simple History only records things that happen after this "
338
  "plugin have been installed."
339
  msgstr ""
340
 
341
- #: index.php:1979
342
  msgid "General Settings"
343
  msgstr ""
344
 
345
- #: index.php:1980
346
  msgid "Writing Settings"
347
  msgstr ""
348
 
349
- #: index.php:1981
350
  msgid "Reading Settings"
351
  msgstr ""
352
 
353
- #: index.php:1982
354
  msgid "Discussion Settings"
355
  msgstr ""
356
 
357
- #: index.php:1983
358
  msgid "Media Settings"
359
  msgstr ""
360
 
361
- #: index.php:1984
362
  msgid "Privacy Settings"
363
  msgstr ""
364
 
365
- #: index.php:2000
366
  msgid "Permalink Settings"
367
  msgstr ""
368
 
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/simple-history\n"
7
+ "POT-Creation-Date: 2013-05-22 13:16:18+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: index.php:88 index.php:105
16
  msgid "added"
17
  msgstr ""
18
 
19
+ #: index.php:89
20
  msgid "approved"
21
  msgstr ""
22
 
23
+ #: index.php:90
24
  msgid "unapproved"
25
  msgstr ""
26
 
27
+ #: index.php:91 simple-history-extender/class.simple-history-extend.php:92
28
  msgid "marked as spam"
29
  msgstr ""
30
 
31
+ #: index.php:92 simple-history-extender/class.simple-history-extend.php:94
32
  msgid "trashed"
33
  msgstr ""
34
 
35
+ #: index.php:93 simple-history-extender/class.simple-history-extend.php:95
36
  msgid "untrashed"
37
  msgstr ""
38
 
39
+ #: index.php:94 simple-history-extender/class.simple-history-extend.php:89
40
  msgid "created"
41
  msgstr ""
42
 
43
+ #: index.php:95 simple-history-extender/class.simple-history-extend.php:91
44
  msgid "deleted"
45
  msgstr ""
46
 
47
+ #: index.php:96 simple-history-extender/class.simple-history-extend.php:239
48
  msgid "updated"
49
  msgstr ""
50
 
51
+ #: index.php:97
52
  msgid "nav_menu_item"
53
  msgstr ""
54
 
55
+ #: index.php:98 index.php:1770
56
  msgid "attachment"
57
  msgstr ""
58
 
59
+ #: index.php:99 index.php:1851
60
  msgid "user"
61
  msgstr ""
62
 
63
+ #: index.php:100
64
  msgid "settings page"
65
  msgstr ""
66
 
67
+ #: index.php:101 simple-history-extender/class.simple-history-extend.php:90
68
  msgid "edited"
69
  msgstr ""
70
 
71
+ #: index.php:102
72
  msgid "comment"
73
  msgstr ""
74
 
75
+ #: index.php:103
76
  msgid "logged in"
77
  msgstr ""
78
 
79
+ #: index.php:104
80
  msgid "logged out"
81
  msgstr ""
82
 
83
+ #: index.php:106
84
  msgid "modified"
85
  msgstr ""
86
 
87
+ #: index.php:107
88
  msgid "upgraded it\\'s database"
89
  msgstr ""
90
 
91
+ #: index.php:108
92
  msgid "plugin"
93
  msgstr ""
94
 
95
+ #: index.php:121 index.php:283 index.php:1078
96
  msgid "History"
97
  msgstr ""
98
 
99
+ #: index.php:181
100
  msgid "WordPress %1$s"
101
  msgstr ""
102
 
103
+ #: index.php:194 index.php:299
104
  msgid "Donate"
105
  msgstr ""
106
 
107
+ #: index.php:269 index.php:290
108
  msgid "Simple History Settings"
109
  msgstr ""
110
 
111
+ #: index.php:295
112
  msgid "Show Simple History"
113
  msgstr ""
114
 
115
+ #: index.php:296
116
  msgid "Number of items per page"
117
  msgstr ""
118
 
119
+ #: index.php:297 index.php:2024
120
  msgid "RSS feed"
121
  msgstr ""
122
 
123
+ #: index.php:298
124
  msgid "Clear log"
125
  msgstr ""
126
 
127
+ #: index.php:315
128
+ msgid "failed to log in because they entered the wrong password"
129
+ msgstr ""
130
+
131
+ #: index.php:391 index.php:450
132
  msgid "History for %s"
133
  msgstr ""
134
 
135
+ #: index.php:392 index.php:451
136
  msgid "WordPress History for %s"
137
  msgstr ""
138
 
139
+ #: index.php:415
140
  msgid "By %s"
141
  msgstr ""
142
 
143
+ #: index.php:419
144
  msgid "%d occasions"
145
  msgstr ""
146
 
147
+ #: index.php:454
148
  msgid "Wrong RSS secret"
149
  msgstr ""
150
 
151
+ #: index.php:455
152
  msgid ""
153
  "Your RSS secret for Simple History RSS feed is wrong. Please see WordPress "
154
  "settings for current link to the RSS feed."
155
  msgstr ""
156
 
157
+ #: index.php:534 index.php:1448
158
  msgid "One item"
159
  msgid_plural "%1$d items"
160
  msgstr[0] ""
161
  msgstr[1] ""
162
 
163
+ #: index.php:597
164
  msgid "on the dashboard"
165
  msgstr ""
166
 
167
+ #: index.php:602
168
  msgid "as a page under the dashboard menu"
169
  msgstr ""
170
 
171
+ #: index.php:617
172
  msgid "Cleared database"
173
  msgstr ""
174
 
175
+ #: index.php:625
176
  msgid "Items in the database are automatically removed after 60 days."
177
  msgstr ""
178
 
179
+ #: index.php:627
180
  msgid "Clear it now."
181
  msgstr ""
182
 
183
+ #: index.php:641
184
  msgid ""
185
  "\n"
186
  "\t\t\tPlease\n"
192
  "\t\t\t"
193
  msgstr ""
194
 
195
+ #: index.php:675
196
  msgid "Created new secret RSS address"
197
  msgstr ""
198
 
199
+ #: index.php:686
200
  msgid ""
201
  "This is a secret RSS feed for Simple History. Only share the link with "
202
  "people you trust"
203
  msgstr ""
204
 
205
+ #: index.php:689
206
  msgid ""
207
  "You can <a href='%s'>generate a new address</a> for the RSS feed. This is "
208
  "useful if you think that the address has fallen into the wrong hands."
209
  msgstr ""
210
 
211
+ #: index.php:740 index.php:756 index.php:788
212
  msgid "From %1$s on %2$s"
213
  msgstr ""
214
 
215
+ #: index.php:1195
216
  msgid "All types"
217
  msgstr ""
218
 
219
+ #: index.php:1356 index.php:1360
220
  msgid "By all users"
221
  msgstr ""
222
 
223
+ #: index.php:1414
224
  msgid "Search"
225
  msgstr ""
226
 
227
+ #: index.php:1452
228
  msgid "Go to the first page"
229
  msgstr ""
230
 
231
+ #: index.php:1453
232
  msgid "Go to the previous page"
233
  msgstr ""
234
 
235
+ #: index.php:1454
236
  msgid "Current page"
237
  msgstr ""
238
 
239
+ #: index.php:1455
240
  msgid "of"
241
  msgstr ""
242
 
243
+ #: index.php:1456
244
  msgid "Go to the next page"
245
  msgstr ""
246
 
247
+ #: index.php:1457
248
  msgid "Go to the last page"
249
  msgstr ""
250
 
251
+ #: index.php:1724
252
  msgid "Unknown or deleted user"
253
  msgstr ""
254
 
255
+ #: index.php:1819
256
  msgid "File name:"
257
  msgstr ""
258
 
259
+ #: index.php:1820
260
  msgid "File size:"
261
  msgstr ""
262
 
263
+ #: index.php:1822
264
  msgid "Dimensions:"
265
  msgstr ""
266
 
267
+ #: index.php:1823
268
  msgid "Length:"
269
  msgstr ""
270
 
271
+ #: index.php:1894 simple-history-extender/simple-history-extender.php:274
272
  msgid "activated"
273
  msgstr ""
274
 
275
+ #: index.php:1897 simple-history-extender/simple-history-extender.php:274
276
  msgid "deactivated"
277
  msgstr ""
278
 
279
+ #: index.php:1900
280
  msgid "enabled"
281
  msgstr ""
282
 
283
+ #: index.php:1903
284
  msgid "disabled"
285
  msgstr ""
286
 
287
+ #: index.php:1919
288
  msgid "<span class=\"when\">%1$s ago</span> by %2$s"
289
  msgstr ""
290
 
291
+ #: index.php:1921
292
  msgid "%s at %s"
293
  msgstr ""
294
 
295
+ #: index.php:1933 index.php:1981
296
+ msgid "Details"
297
+ msgstr ""
298
+
299
+ #: index.php:1957
300
  msgid "+ 1 occasion"
301
  msgstr ""
302
 
303
+ #: index.php:1960
304
  msgid "+ %d occasions"
305
  msgstr ""
306
 
307
+ #: index.php:1974
308
  msgid "%s ago (%s at %s)"
309
  msgstr ""
310
 
311
+ #: index.php:2017
312
  msgid "Show 5 more"
313
  msgstr ""
314
 
315
+ #: index.php:2018
316
  msgid "Show 15 more"
317
  msgstr ""
318
 
319
+ #: index.php:2019
320
  msgid "Show 50 more"
321
  msgstr ""
322
 
323
+ #: index.php:2020
324
  msgid "Show 100 more"
325
  msgstr ""
326
 
327
+ #: index.php:2023
328
  msgid "No matching items found."
329
  msgstr ""
330
 
331
+ #: index.php:2026
332
  msgid "Show"
333
  msgstr ""
334
 
335
+ #: index.php:2032
336
  msgid "Loading..."
337
  msgstr ""
338
 
339
+ #: index.php:2051
340
  msgid "No history items found."
341
  msgstr ""
342
 
343
+ #: index.php:2052
344
  msgid ""
345
  "Please note that Simple History only records things that happen after this "
346
  "plugin have been installed."
347
  msgstr ""
348
 
349
+ #: index.php:2065
350
  msgid "General Settings"
351
  msgstr ""
352
 
353
+ #: index.php:2066
354
  msgid "Writing Settings"
355
  msgstr ""
356
 
357
+ #: index.php:2067
358
  msgid "Reading Settings"
359
  msgstr ""
360
 
361
+ #: index.php:2068
362
  msgid "Discussion Settings"
363
  msgstr ""
364
 
365
+ #: index.php:2069
366
  msgid "Media Settings"
367
  msgstr ""
368
 
369
+ #: index.php:2070
370
  msgid "Privacy Settings"
371
  msgstr ""
372
 
373
+ #: index.php:2086
374
  msgid "Permalink Settings"
375
  msgstr ""
376
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://eskapism.se/sida/donate/
4
  Tags: history, log, changes, changelog, audit, trail, pages, attachments, users, cms, dashboard, admin, syslog
5
  Requires at least: 3.5.1
6
  Tested up to: 3.5.1
7
- Stable tag: 1.3
8
 
9
  View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
10
 
@@ -175,6 +175,12 @@ to only use the secret RSS feed to keep track of the changes on you web site/Wor
175
 
176
  == Changelog ==
177
 
 
 
 
 
 
 
178
  = 1.3 =
179
  - Added: history events can store text description with a more detailed explanation of the history item
180
  - Added: now logs failed login attempts for existing username. Uses the new text description to store more info, for example user agent and remote ip address (REMOTE_ADDR)
4
  Tags: history, log, changes, changelog, audit, trail, pages, attachments, users, cms, dashboard, admin, syslog
5
  Requires at least: 3.5.1
6
  Tested up to: 3.5.1
7
+ Stable tag: 1.3.1
8
 
9
  View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
10
 
175
 
176
  == Changelog ==
177
 
178
+ = 1.3.1 =
179
+ - Improved contrast for details view
180
+ - Fix sql error on installation due to missing column
181
+ - Remove options and database table during removal of plugin
182
+ - Added: German translation for extender module
183
+
184
  = 1.3 =
185
  - Added: history events can store text description with a more detailed explanation of the history item
186
  - Added: now logs failed login attempts for existing username. Uses the new text description to store more info, for example user agent and remote ip address (REMOTE_ADDR)
screenshot-4.png DELETED
Binary file
simple-history-extender/languages/sh-extender-de_DE.mo ADDED
Binary file
simple-history-extender/languages/sh-extender-de_DE.po ADDED
@@ -0,0 +1,413 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Simple History Extender\n"
4
+ "POT-Creation-Date: 2012-11-26 12:31+0100\n"
5
+ "PO-Revision-Date: 2013-05-18 08:36+0100\n"
6
+ "Last-Translator: Ralph Stenzel <ralph@klein-aber-fein.de>\n"
7
+ "Language-Team: Ralph Stenzel <ralph@klein-aber-fein.de>\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.5.4\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "Language: de_DE\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../simple-history-extender.php:161
19
+ msgid "Settings"
20
+ msgstr "Einstellungen"
21
+
22
+ #: ../simple-history-extender.php:183
23
+ #, php-format
24
+ msgid ""
25
+ "The Simple History Extender plugin was deactivated because the Simple "
26
+ "History plugin was not found installed or active.<br/><br/><a href=\"%s"
27
+ "\">Return</a>."
28
+ msgstr ""
29
+ "Das Simple History Extender-Plugin wurde deaktiviert, weil das Simple "
30
+ "History-Plugin nicht gefunden wurde oder nicht aktiv war.<br/><br/><a href="
31
+ "\"%s\">Return</a>."
32
+
33
+ #: ../simple-history-extender.php:184
34
+ #, php-format
35
+ msgid ""
36
+ "The Simple History Extender plugin was deactivated.<br/><br/><a href=\"%s"
37
+ "\">Return</a>."
38
+ msgstr ""
39
+ "Das Simple History Extender-Plugin wurde deaktiviert.<br/><br/><a href=\"%s"
40
+ "\">Return</a>."
41
+
42
+ #: ../simple-history-extender.php:213
43
+ msgid "Simple History Extender Modules"
44
+ msgstr "Simple History Erweiterungs-Module"
45
+
46
+ #: ../simple-history-extender.php:223
47
+ msgid ""
48
+ "Activate or deactivate the events you want to log. Read the Help tab if you "
49
+ "want to know which actions are supported and which aren't."
50
+ msgstr ""
51
+ "Aktivieren oder deaktivieren Sie die Ereignisse, welche protokolliert werden "
52
+ "sollen. Lesen Sie die Hilfe, wenn Sie wissen wollen, welche Aktionen "
53
+ "unterstützt werden und welche nicht."
54
+
55
+ #: ../simple-history-extender.php:255
56
+ msgid "activated"
57
+ msgstr "aktiviert"
58
+
59
+ #: ../simple-history-extender.php:255
60
+ msgid "deactivated"
61
+ msgstr "deaktiviert"
62
+
63
+ #: ../simple-history-extender.php:256
64
+ msgid "Simple History Extender Module"
65
+ msgstr "Simple History Erweiterungs-Modul"
66
+
67
+ #: ../class.sh-extend.php:68
68
+ #, php-format
69
+ msgid "Log events for the %s plugin."
70
+ msgstr "Protokolliere Ereignisse für das %s-Plugin."
71
+
72
+ #: ../class.sh-extend.php:69
73
+ #, php-format
74
+ msgid "Log events for %s."
75
+ msgstr "Prorotokolliere Ereignisse für %s."
76
+
77
+ #: ../class.sh-extend.php:89
78
+ msgid "created"
79
+ msgstr "erstellt"
80
+
81
+ #: ../class.sh-extend.php:90
82
+ msgid "edited"
83
+ msgstr "geändert"
84
+
85
+ #: ../class.sh-extend.php:91
86
+ msgid "deleted"
87
+ msgstr "gelöscht"
88
+
89
+ #: ../class.sh-extend.php:92
90
+ msgid "marked as spam"
91
+ msgstr "als Spam gekennzeichnet"
92
+
93
+ #: ../class.sh-extend.php:93
94
+ msgid "unmarked as spam"
95
+ msgstr "Spam-Kennzeichnung entfernt"
96
+
97
+ #: ../class.sh-extend.php:94
98
+ msgid "trashed"
99
+ msgstr "gelöscht"
100
+
101
+ #: ../class.sh-extend.php:95
102
+ msgid "untrashed"
103
+ msgstr "wiederhergestellt"
104
+
105
+ #: ../class.sh-extend.php:96
106
+ msgid "submitted"
107
+ msgstr "abgeschickt"
108
+
109
+ #: ../class.sh-extend.php:150
110
+ #, php-format
111
+ msgid "The %s module logs the following events:"
112
+ msgstr "Das %s-Modul protokolliert die folgenden Ereignisse:"
113
+
114
+ #: ../class.sh-extend.php:157
115
+ #, php-format
116
+ msgid "The %s module does not support the following events:"
117
+ msgstr "Das %s-Modul unterstützt die folgenden Ereignisse nicht:"
118
+
119
+ #: ../class.sh-extend.php:226
120
+ msgid "updated"
121
+ msgstr "aktualisiert"
122
+
123
+ #: ../modules/gravityforms.php:28
124
+ msgid "Gravity Forms"
125
+ msgstr "Gravity Forms"
126
+
127
+ #: ../modules/gravityforms.php:32
128
+ msgid "Creating, editing and deleting a form."
129
+ msgstr "Ein Formular erstellen, ändern und löschen."
130
+
131
+ #: ../modules/gravityforms.php:33
132
+ msgid "Deleting a field from an existing form."
133
+ msgstr "Ein Feld eines bereits existierenden Formulars löschen."
134
+
135
+ #: ../modules/gravityforms.php:34
136
+ msgid "Submitting, editing and deleting an entry."
137
+ msgstr "Einen Eintrag absenden, ändern oder löschen."
138
+
139
+ #: ../modules/gravityforms.php:35
140
+ msgid "Changing the status of an entry, including read/unread and star/unstar."
141
+ msgstr ""
142
+ "Den Status eines Eintrags ändern, einschließlich gelesen/ungelesen und "
143
+ "markieren/unmarkieren."
144
+
145
+ #: ../modules/gravityforms.php:38
146
+ msgid "Duplicating a form."
147
+ msgstr "Dupliziere ein Formular."
148
+
149
+ #: ../modules/gravityforms.php:39
150
+ msgid "Setting a form to active/inactive."
151
+ msgstr "Ein Formular auf aktiv/inaktiv setzend."
152
+
153
+ #: ../modules/gravityforms.php:48
154
+ msgid "starred"
155
+ msgstr "markiert"
156
+
157
+ #: ../modules/gravityforms.php:49
158
+ msgid "unstarred"
159
+ msgstr "unmarkiert"
160
+
161
+ #: ../modules/gravityforms.php:50
162
+ msgid "marked as read"
163
+ msgstr "als gelesen gekennzeichnet"
164
+
165
+ #: ../modules/gravityforms.php:51
166
+ msgid "marked as unread"
167
+ msgstr "als ungelesen gekennzeichnet"
168
+
169
+ #: ../modules/gravityforms.php:110
170
+ #, php-format
171
+ msgid "from %s"
172
+ msgstr "von %s"
173
+
174
+ #: ../modules/gravityforms.php:112
175
+ msgid "from unknown"
176
+ msgstr "von unbekannt"
177
+
178
+ #: ../modules/gravityforms.php:120
179
+ msgid "Form"
180
+ msgstr "Formular"
181
+
182
+ #: ../modules/gravityforms.php:129
183
+ msgid "Form entry"
184
+ msgstr "Formular-Eintrag"
185
+
186
+ #: ../modules/gravityforms.php:150
187
+ msgid "without entries deleted"
188
+ msgstr "ohne gelöschte Einträge"
189
+
190
+ #: ../modules/gravityforms.php:151
191
+ #, php-format
192
+ msgid "with %d entries deleted"
193
+ msgstr "mit %d gelöschten Einträgen"
194
+
195
+ #: ../modules/gravityforms.php:160
196
+ #, php-format
197
+ msgid "field %s deleted"
198
+ msgstr "Feld %s gelöscht"
199
+
200
+ #: ../modules/gravityforms.php:201
201
+ msgid "restored"
202
+ msgstr "wiederhergestellt"
203
+
204
+ #: ../modules/gravityforms.php:206
205
+ msgid "changed status"
206
+ msgstr "änderte den Status"
207
+
208
+ #: ../modules/widgets.php:25
209
+ msgid "Widgets"
210
+ msgstr "Widgets"
211
+
212
+ #: ../modules/widgets.php:27
213
+ msgid "Log events for the Widgets section of your WP install."
214
+ msgstr ""
215
+ "Protokolliere Ereignisse für die Widgets-Abteilung Ihrer WordPress-"
216
+ "Installation."
217
+
218
+ #: ../modules/widgets.php:30
219
+ msgid "Adding, updating and deleting widgets in/from a sidebar."
220
+ msgstr ""
221
+ "Widgets zu/aus einer Seitenleiste hinzufügen, aktualisieren oder löschen."
222
+
223
+ #: ../modules/widgets.php:33
224
+ msgid "Moving widgets between sidebars."
225
+ msgstr "Widgets zwischen Seitenleisten verschiebend."
226
+
227
+ #: ../modules/widgets.php:34
228
+ msgid "Setting a widget to active/inactive."
229
+ msgstr "Ein Widget auf aktiv/inaktiv setzend."
230
+
231
+ #: ../modules/widgets.php:86
232
+ #, php-format
233
+ msgid "removed from sidebar %s"
234
+ msgstr "entfernt von Seitenleiste %s"
235
+
236
+ #: ../modules/widgets.php:88
237
+ #, php-format
238
+ msgid "updated in sidebar %s"
239
+ msgstr "aktualisiert in Seitenleiste %s"
240
+
241
+ #: ../modules/widgets.php:90
242
+ #, php-format
243
+ msgid "added to sidebar %s"
244
+ msgstr "hinzugefügt zur Seitenleiste %s"
245
+
246
+ #: ../modules/widgets.php:95
247
+ msgid "Widget"
248
+ msgstr "Widget"
249
+
250
+ #: ../modules/bbpress.php:28
251
+ msgid "BBPress"
252
+ msgstr "BBPress"
253
+
254
+ #: ../modules/bbpress.php:32
255
+ msgid "Creating, editing and deleting a forum, topic, reply."
256
+ msgstr "Ein Forum, ein Thema oder eine Antwort erstellen, ändern oder löschen."
257
+
258
+ #: ../modules/bbpress.php:33
259
+ msgid "Setting the type of a forum to category or forum."
260
+ msgstr "Den Typ eines Forums auf Kategorie oder auf Forum setzen."
261
+
262
+ #: ../modules/bbpress.php:34
263
+ msgid "Setting the status of a forum, topic to open or closed."
264
+ msgstr ""
265
+ "Den Status eines Forums oder eines Themas auf offen oder auf geschlossen "
266
+ "setzen."
267
+
268
+ #: ../modules/bbpress.php:35
269
+ msgid "Setting the forum visibility to public, private or hidden."
270
+ msgstr ""
271
+ "Die Sichtbarkeit eines Forums auf öffentlich, privat oder versteckt setzen."
272
+
273
+ #: ../modules/bbpress.php:36
274
+ msgid "Trashing and untrashing a forum, topic, reply."
275
+ msgstr "Ein Forum, ein Thema oder eine Antwort löschen oder wiederherstellen."
276
+
277
+ #: ../modules/bbpress.php:37
278
+ msgid "Marking and unmarking a topic, reply as spam."
279
+ msgstr "Ein Thema oder eine Antwort als Spam markieren oder entmarkieren."
280
+
281
+ #: ../modules/bbpress.php:38
282
+ msgid "Marking and unmarking a topic as sticky."
283
+ msgstr "Ein Thema als sticky markieren oder entmarkieren."
284
+
285
+ #: ../modules/bbpress.php:39
286
+ msgid "Merging and splitting a topic."
287
+ msgstr "Themen zusammenführen oder splitten."
288
+
289
+ #: ../modules/bbpress.php:40
290
+ msgid "Updating, merging and deleting a topic tag."
291
+ msgstr "Eine Themen-Kennzeichnung aktualisieren, zusammenführen oder löschen."
292
+
293
+ #: ../modules/bbpress.php:41
294
+ msgid "A user (un)favoriting and (un)subscribing to a topic."
295
+ msgstr "Ein Benutzer, der ein Thema (un)favorisiert oder abonniert/abbestellt."
296
+
297
+ #: ../modules/bbpress.php:42
298
+ msgid "A user saving his/her profile."
299
+ msgstr "Ein(e) das eigene Profil speichernde Benutzer(in)."
300
+
301
+ #: ../modules/bbpress.php:53
302
+ msgid "closed"
303
+ msgstr "geschlossen"
304
+
305
+ #: ../modules/bbpress.php:54
306
+ msgid "opened"
307
+ msgstr "geöffnet"
308
+
309
+ #: ../modules/bbpress.php:55
310
+ msgid "marked as sticky"
311
+ msgstr "als sticky markiert"
312
+
313
+ #: ../modules/bbpress.php:56
314
+ msgid "marked as super sticky"
315
+ msgstr "als super sticky markiert"
316
+
317
+ #: ../modules/bbpress.php:57
318
+ msgid "unmarked as sticky"
319
+ msgstr "Sticky-Markierung entfernt"
320
+
321
+ #: ../modules/bbpress.php:58
322
+ msgid "set to category type"
323
+ msgstr "auf Typ Kategorie gesetzt"
324
+
325
+ #: ../modules/bbpress.php:59
326
+ msgid "set to forum type"
327
+ msgstr "auf Typ Forum gesetzt"
328
+
329
+ #: ../modules/bbpress.php:60
330
+ msgid "set to public"
331
+ msgstr "auf öffentlich gesetzt"
332
+
333
+ #: ../modules/bbpress.php:61
334
+ msgid "set to private"
335
+ msgstr "auf privat gesetzt"
336
+
337
+ #: ../modules/bbpress.php:62
338
+ msgid "set to hidden"
339
+ msgstr "auf versteckt gesetzt"
340
+
341
+ #: ../modules/bbpress.php:63
342
+ #, php-format
343
+ msgid "in forum %s merged into %s"
344
+ msgstr "im Forum %s vereinigt mit %s"
345
+
346
+ #: ../modules/bbpress.php:64
347
+ #, php-format
348
+ msgid "in forum %s split from reply %s by %s into %s in forum %s"
349
+ msgstr "im Forum %s abgeteilt von Antwort %s durch %s in %s im Forum %s"
350
+
351
+ #: ../modules/bbpress.php:131
352
+ msgid "Forum"
353
+ msgstr "Forum"
354
+
355
+ #: ../modules/bbpress.php:141
356
+ msgid "Topic"
357
+ msgstr "Thema"
358
+
359
+ #: ../modules/bbpress.php:150
360
+ msgid "Topic Tag"
361
+ msgstr "Themen-Kennzeichen"
362
+
363
+ #: ../modules/bbpress.php:161
364
+ #, php-format
365
+ msgid "by %s"
366
+ msgstr "von %s"
367
+
368
+ #: ../modules/bbpress.php:162
369
+ msgid "Reply"
370
+ msgstr "Antwort"
371
+
372
+ #: ../modules/bbpress.php:173
373
+ msgid "User"
374
+ msgstr "Benutzer"
375
+
376
+ #: ../modules/bbpress.php:185
377
+ #, php-format
378
+ msgid "as child of %s"
379
+ msgstr "als Kind von %s"
380
+
381
+ #: ../modules/bbpress.php:246 ../modules/bbpress.php:256
382
+ #, php-format
383
+ msgid "in forum %s"
384
+ msgstr "im Forum %s"
385
+
386
+ #: ../modules/bbpress.php:369
387
+ msgid "favorited"
388
+ msgstr "als Favorit gekennzeichnet"
389
+
390
+ #: ../modules/bbpress.php:373
391
+ msgid "unfavorited"
392
+ msgstr "Favoriten-Kennzeichnung entfernt"
393
+
394
+ #: ../modules/bbpress.php:377
395
+ msgid "subscribed"
396
+ msgstr "abonniert"
397
+
398
+ #: ../modules/bbpress.php:381
399
+ msgid "unsubscribed"
400
+ msgstr "abbestellt"
401
+
402
+ #: ../modules/bbpress.php:385
403
+ msgid "profile updated"
404
+ msgstr "Profil aktualisiert"
405
+
406
+ #: ../modules/bbpress.php:389
407
+ msgid "registered"
408
+ msgstr "registriert"
409
+
410
+ #: ../modules/bbpress.php:397
411
+ #, php-format
412
+ msgid "changed forum role to %s"
413
+ msgstr "Forum-Rolle gewechselt zu %s"
styles.css CHANGED
@@ -53,7 +53,7 @@ ol.simple-history .first {
53
  }
54
 
55
  ol.simple-history .second {
56
- color: #999;
57
  margin-top: .5em;
58
  }
59
 
@@ -145,7 +145,7 @@ ol.simple-history .simple-history-has-attachment-thumnbail .third
145
  margin: .75em 0 .75em .5ex;
146
  line-height: 1.4;
147
  display: none;
148
- background-color: #ddd;
149
  padding: .5em;
150
  }
151
 
53
  }
54
 
55
  ol.simple-history .second {
56
+ color: #666;
57
  margin-top: .5em;
58
  }
59
 
145
  margin: .75em 0 .75em .5ex;
146
  line-height: 1.4;
147
  display: none;
148
+ background-color: #eee;
149
  padding: .5em;
150
  }
151
 
uninstall.php CHANGED
@@ -3,7 +3,32 @@
3
  * File that is run during plugin uninstall (not just de-activate)
4
  */
5
 
6
- //if uninstall not called from WordPress exit
7
- if ( !defined( 'WP_UNINSTALL_PLUGIN' ) )
8
  exit ();
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  * File that is run during plugin uninstall (not just de-activate)
4
  */
5
 
6
+ // If uninstall not called from WordPress exit
7
+ if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) )
8
  exit ();
9
 
10
+ /*
11
+ Go on with uninstall actions:
12
+ - Remove our database table
13
+ - Remove options:
14
+ */
15
+
16
+ // Remove options
17
+ $arr_options = array(
18
+ "simple_history_pager_size",
19
+ "simple_history_db_version",
20
+ "simple_history_rss_secret",
21
+ "simple_history_show_on_dashboard",
22
+ "simple_history_show_as_page"
23
+ );
24
+
25
+ foreach ($arr_options as $one_option) {
26
+ delete_option( $one_option );
27
+ }
28
+
29
+ // Remove database table
30
+ global $wpdb;
31
+ $table_name = $wpdb->prefix . "simple_history";
32
+ $wpdb->query("DROP TABLE IF EXISTS $table_name");
33
+
34
+ // And we are done. Simple History is ... history.