Merge lp:~markellmtthw/midori/fix-920012 into lp:~vcs-imports/midori/master

Proposed by Matthew Markell
Status: Rejected
Rejected by: Cody Garver
Proposed branch: lp:~markellmtthw/midori/fix-920012
Merge into: lp:~vcs-imports/midori/master
Diff against target: 839 lines (+103/-71)
74 files modified
katze/gtk3-compat.c (+11/-0)
katze/gtk3-compat.h (+11/-0)
katze/katze-array.c (+1/-1)
katze/katze-array.h (+1/-1)
katze/katze-arrayaction.c (+1/-1)
katze/katze-arrayaction.h (+1/-1)
katze/katze-http-auth.c (+1/-1)
katze/katze-http-auth.h (+1/-1)
katze/katze-http-cookies-sqlite.c (+1/-1)
katze/katze-http-cookies-sqlite.h (+1/-1)
katze/katze-http-cookies.c (+1/-1)
katze/katze-http-cookies.h (+1/-1)
katze/katze-item.c (+1/-1)
katze/katze-item.h (+1/-1)
katze/katze-net.c (+1/-1)
katze/katze-net.h (+1/-1)
katze/katze-preferences.c (+1/-1)
katze/katze-preferences.h (+1/-1)
katze/katze-scrolled.c (+1/-1)
katze/katze-scrolled.h (+1/-1)
katze/katze-separatoraction.c (+1/-1)
katze/katze-separatoraction.h (+1/-1)
katze/katze-throbber.c (+1/-1)
katze/katze-throbber.h (+1/-1)
katze/katze-utils.c (+1/-1)
katze/katze-utils.h (+1/-1)
katze/katze.h (+1/-1)
katze/midori-uri.vala (+1/-1)
midori/main.c (+1/-1)
midori/midori-app.c (+1/-1)
midori/midori-app.h (+1/-1)
midori/midori-array.c (+1/-1)
midori/midori-array.h (+1/-1)
midori/midori-browser.c (+1/-1)
midori/midori-browser.h (+1/-1)
midori/midori-extension.c (+1/-1)
midori/midori-extension.h (+1/-1)
midori/midori-extensions-column.vala (+10/-0)
midori/midori-locationaction.c (+1/-1)
midori/midori-locationaction.h (+1/-1)
midori/midori-panel.c (+1/-1)
midori/midori-panel.h (+1/-1)
midori/midori-platform.h (+1/-1)
midori/midori-preferences.c (+1/-1)
midori/midori-preferences.h (+1/-1)
midori/midori-searchaction.c (+1/-1)
midori/midori-searchaction.h (+1/-1)
midori/midori-stock.h (+1/-1)
midori/midori-view.c (+1/-1)
midori/midori-view.h (+1/-1)
midori/midori-viewable.c (+1/-1)
midori/midori-viewable.h (+1/-1)
midori/midori-websettings.c (+1/-1)
midori/midori-websettings.h (+1/-1)
midori/midori.h (+1/-1)
midori/midori.vapi (+1/-1)
midori/sokoke.c (+1/-1)
midori/sokoke.h (+1/-1)
panels/midori-bookmarks.c (+1/-1)
panels/midori-bookmarks.h (+1/-1)
panels/midori-extensions.c (+1/-1)
panels/midori-extensions.h (+1/-1)
panels/midori-history.c (+1/-1)
panels/midori-history.h (+1/-1)
panels/midori-transfers.c (+1/-1)
panels/midori-transfers.h (+1/-1)
tests/browser.c (+1/-1)
tests/extensions.c (+1/-1)
tests/magic-uri.c (+1/-1)
tests/properties.c (+1/-1)
toolbars/midori-findbar.c (+1/-1)
toolbars/midori-findbar.h (+1/-1)
toolbars/midori-transferbar.c (+1/-1)
toolbars/midori-transferbar.h (+1/-1)
To merge this branch: bzr merge lp:~markellmtthw/midori/fix-920012
Reviewer Review Type Date Requested Status
Cody Garver (community) Disapprove
VCS imports Pending
Review via email: mp+91550@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Cody Garver (codygarver) wrote :

A 2013 branch has been submitted.

review: Disapprove

Unmerged revisions

4489. By Matthew Markell

changed copyright notice to 20xx-2012

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'katze/gtk3-compat.c'
2--- katze/gtk3-compat.c 2011-11-09 21:06:10 +0000
3+++ katze/gtk3-compat.c 2012-02-04 14:53:19 +0000
4@@ -1,3 +1,14 @@
5+/*
6+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
7+
8+ This library is free software; you can redistribute it and/or
9+ modify it under the terms of the GNU Lesser General Public
10+ License as published by the Free Software Foundation; either
11+ version 2.1 of the License, or (at your option) any later version.
12+
13+ See the file COPYING for the full license text.
14+*/
15+
16 #include "katze/gtk3-compat.h"
17
18 #if !GTK_CHECK_VERSION (3, 2, 0) && !defined (HAVE_HILDON_2_2)
19
20=== modified file 'katze/gtk3-compat.h'
21--- katze/gtk3-compat.h 2011-11-28 22:37:34 +0000
22+++ katze/gtk3-compat.h 2012-02-04 14:53:19 +0000
23@@ -1,3 +1,14 @@
24+/*
25+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
26+
27+ This library is free software; you can redistribute it and/or
28+ modify it under the terms of the GNU Lesser General Public
29+ License as published by the Free Software Foundation; either
30+ version 2.1 of the License, or (at your option) any later version.
31+
32+ See the file COPYING for the full license text.
33+*/
34+
35 #include <gtk/gtk.h>
36 #include <gdk/gdkkeysyms.h>
37
38
39=== modified file 'katze/katze-array.c'
40--- katze/katze-array.c 2011-03-05 02:40:10 +0000
41+++ katze/katze-array.c 2012-02-04 14:53:19 +0000
42@@ -1,5 +1,5 @@
43 /*
44- Copyright (C) 2008-2011 Christian Dywan <christian@twotoasts.de>
45+ Copyright (C) 2008--2012 Christian Dywan <christian@twotoasts.de>
46
47 This library is free software; you can redistribute it and/or
48 modify it under the terms of the GNU Lesser General Public
49
50=== modified file 'katze/katze-array.h'
51--- katze/katze-array.h 2011-01-19 20:58:26 +0000
52+++ katze/katze-array.h 2012-02-04 14:53:19 +0000
53@@ -1,5 +1,5 @@
54 /*
55- Copyright (C) 2008-2009 Christian Dywan <christian@twotoasts.de>
56+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
57
58 This library is free software; you can redistribute it and/or
59 modify it under the terms of the GNU Lesser General Public
60
61=== modified file 'katze/katze-arrayaction.c'
62--- katze/katze-arrayaction.c 2011-12-01 19:04:32 +0000
63+++ katze/katze-arrayaction.c 2012-02-04 14:53:19 +0000
64@@ -1,5 +1,5 @@
65 /*
66- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
67+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
68 Copyright (C) 2009 Enrico Tröger <enrico.troeger@uvena.de>
69
70 This library is free software; you can redistribute it and/or
71
72=== modified file 'katze/katze-arrayaction.h'
73--- katze/katze-arrayaction.h 2010-09-15 02:10:55 +0000
74+++ katze/katze-arrayaction.h 2012-02-04 14:53:19 +0000
75@@ -1,5 +1,5 @@
76 /*
77- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
78+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
79
80 This library is free software; you can redistribute it and/or
81 modify it under the terms of the GNU Lesser General Public
82
83=== modified file 'katze/katze-http-auth.c'
84--- katze/katze-http-auth.c 2011-10-26 18:07:11 +0000
85+++ katze/katze-http-auth.c 2012-02-04 14:53:19 +0000
86@@ -1,5 +1,5 @@
87 /*
88- Copyright (C) 2008-2009 Christian Dywan <christian@twotoasts.de>
89+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
90
91 This library is free software; you can redistribute it and/or
92 modify it under the terms of the GNU Lesser General Public
93
94=== modified file 'katze/katze-http-auth.h'
95--- katze/katze-http-auth.h 2010-01-17 17:14:48 +0000
96+++ katze/katze-http-auth.h 2012-02-04 14:53:19 +0000
97@@ -1,5 +1,5 @@
98 /*
99- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
100+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
101
102 This library is free software; you can redistribute it and/or
103 modify it under the terms of the GNU Lesser General Public
104
105=== modified file 'katze/katze-http-cookies-sqlite.c'
106--- katze/katze-http-cookies-sqlite.c 2011-10-10 21:22:27 +0000
107+++ katze/katze-http-cookies-sqlite.c 2012-02-04 14:53:19 +0000
108@@ -1,5 +1,5 @@
109 /*
110- Copyright (C) 2008-2010 Christian Dywan <christian@twotoasts.de>
111+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
112 Copyright (C) 2011 Alexander Butenko <a.butenka@gmail.com>
113
114 This library is free software; you can redistribute it and/or
115
116=== modified file 'katze/katze-http-cookies-sqlite.h'
117--- katze/katze-http-cookies-sqlite.h 2011-10-10 21:22:27 +0000
118+++ katze/katze-http-cookies-sqlite.h 2012-02-04 14:53:19 +0000
119@@ -1,5 +1,5 @@
120 /*
121- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
122+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
123
124 This library is free software; you can redistribute it and/or
125 modify it under the terms of the GNU Lesser General Public
126
127=== modified file 'katze/katze-http-cookies.c'
128--- katze/katze-http-cookies.c 2011-05-04 21:53:45 +0000
129+++ katze/katze-http-cookies.c 2012-02-04 14:53:19 +0000
130@@ -1,5 +1,5 @@
131 /*
132- Copyright (C) 2008-2010 Christian Dywan <christian@twotoasts.de>
133+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
134
135 This library is free software; you can redistribute it and/or
136 modify it under the terms of the GNU Lesser General Public
137
138=== modified file 'katze/katze-http-cookies.h'
139--- katze/katze-http-cookies.h 2010-01-17 17:14:48 +0000
140+++ katze/katze-http-cookies.h 2012-02-04 14:53:19 +0000
141@@ -1,5 +1,5 @@
142 /*
143- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
144+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
145
146 This library is free software; you can redistribute it and/or
147 modify it under the terms of the GNU Lesser General Public
148
149=== modified file 'katze/katze-item.c'
150--- katze/katze-item.c 2012-01-03 20:28:45 +0000
151+++ katze/katze-item.c 2012-02-04 14:53:19 +0000
152@@ -1,5 +1,5 @@
153 /*
154- Copyright (C) 2008-2009 Christian Dywan <christian@twotoasts.de>
155+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
156
157 This library is free software; you can redistribute it and/or
158 modify it under the terms of the GNU Lesser General Public
159
160=== modified file 'katze/katze-item.h'
161--- katze/katze-item.h 2010-07-01 21:37:13 +0000
162+++ katze/katze-item.h 2012-02-04 14:53:19 +0000
163@@ -1,5 +1,5 @@
164 /*
165- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
166+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
167
168 This library is free software; you can redistribute it and/or
169 modify it under the terms of the GNU Lesser General Public
170
171=== modified file 'katze/katze-net.c'
172--- katze/katze-net.c 2011-10-28 20:49:10 +0000
173+++ katze/katze-net.c 2012-02-04 14:53:19 +0000
174@@ -1,5 +1,5 @@
175 /*
176- Copyright (C) 2008-2009 Christian Dywan <christian@twotoasts.de>
177+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
178
179 This library is free software; you can redistribute it and/or
180 modify it under the terms of the GNU Lesser General Public
181
182=== modified file 'katze/katze-net.h'
183--- katze/katze-net.h 2010-09-07 20:39:51 +0000
184+++ katze/katze-net.h 2012-02-04 14:53:19 +0000
185@@ -1,5 +1,5 @@
186 /*
187- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
188+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
189
190 This library is free software; you can redistribute it and/or
191 modify it under the terms of the GNU Lesser General Public
192
193=== modified file 'katze/katze-preferences.c'
194--- katze/katze-preferences.c 2011-12-16 01:06:35 +0000
195+++ katze/katze-preferences.c 2012-02-04 14:53:19 +0000
196@@ -1,5 +1,5 @@
197 /*
198- Copyright (C) 2007-2009 Christian Dywan <christian@twotoasts.de>
199+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
200
201 This library is free software; you can redistribute it and/or
202 modify it under the terms of the GNU Lesser General Public
203
204=== modified file 'katze/katze-preferences.h'
205--- katze/katze-preferences.h 2011-04-14 01:29:50 +0000
206+++ katze/katze-preferences.h 2012-02-04 14:53:19 +0000
207@@ -1,5 +1,5 @@
208 /*
209- Copyright (C) 2008-2009 Christian Dywan <christian@twotoasts.de>
210+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
211
212 This library is free software; you can redistribute it and/or
213 modify it under the terms of the GNU Lesser General Public
214
215=== modified file 'katze/katze-scrolled.c'
216--- katze/katze-scrolled.c 2011-11-24 23:59:49 +0000
217+++ katze/katze-scrolled.c 2012-02-04 14:53:19 +0000
218@@ -1,7 +1,7 @@
219 /*
220 Copyright (C) 2007 Henrik Hedberg <hhedberg@innologies.fi>
221 Copyright (C) 2009 Nadav Wiener <nadavwr@yahoo.com>
222- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
223+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
224
225 This library is free software; you can redistribute it and/or
226 modify it under the terms of the GNU Lesser General Public
227
228=== modified file 'katze/katze-scrolled.h'
229--- katze/katze-scrolled.h 2010-01-17 17:14:48 +0000
230+++ katze/katze-scrolled.h 2012-02-04 14:53:19 +0000
231@@ -1,7 +1,7 @@
232 /*
233 Copyright (C) 2007 Henrik Hedberg <hhedberg@innologies.fi>
234 Copyright (C) 2009 Nadav Wiener <nadavwr@yahoo.com>
235- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
236+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
237
238 This library is free software; you can redistribute it and/or
239 modify it under the terms of the GNU Lesser General Public
240
241=== modified file 'katze/katze-separatoraction.c'
242--- katze/katze-separatoraction.c 2009-01-28 23:52:27 +0000
243+++ katze/katze-separatoraction.c 2012-02-04 14:53:19 +0000
244@@ -1,5 +1,5 @@
245 /*
246- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
247+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
248
249 This library is free software; you can redistribute it and/or
250 modify it under the terms of the GNU Lesser General Public
251
252=== modified file 'katze/katze-separatoraction.h'
253--- katze/katze-separatoraction.h 2010-01-17 17:14:48 +0000
254+++ katze/katze-separatoraction.h 2012-02-04 14:53:19 +0000
255@@ -1,5 +1,5 @@
256 /*
257- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
258+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
259
260 This library is free software; you can redistribute it and/or
261 modify it under the terms of the GNU Lesser General Public
262
263=== modified file 'katze/katze-throbber.c'
264--- katze/katze-throbber.c 2011-12-14 01:14:54 +0000
265+++ katze/katze-throbber.c 2012-02-04 14:53:19 +0000
266@@ -1,5 +1,5 @@
267 /*
268- Copyright (C) 2007-2010 Christian Dywan <christian@twotoasts.de>
269+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
270
271 This library is free software; you can redistribute it and/or
272 modify it under the terms of the GNU Lesser General Public
273
274=== modified file 'katze/katze-throbber.h'
275--- katze/katze-throbber.h 2010-05-02 14:11:18 +0000
276+++ katze/katze-throbber.h 2012-02-04 14:53:19 +0000
277@@ -1,5 +1,5 @@
278 /*
279- Copyright (C) 2007 Christian Dywan <christian@twotoasts.de>
280+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
281
282 This library is free software; you can redistribute it and/or
283 modify it under the terms of the GNU Lesser General Public
284
285=== modified file 'katze/katze-utils.c'
286--- katze/katze-utils.c 2012-01-04 23:01:09 +0000
287+++ katze/katze-utils.c 2012-02-04 14:53:19 +0000
288@@ -1,5 +1,5 @@
289 /*
290- Copyright (C) 2007-2009 Christian Dywan <christian@twotoasts.de>
291+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
292
293 This library is free software; you can redistribute it and/or
294 modify it under the terms of the GNU Lesser General Public
295
296=== modified file 'katze/katze-utils.h'
297--- katze/katze-utils.h 2011-11-28 22:37:34 +0000
298+++ katze/katze-utils.h 2012-02-04 14:53:19 +0000
299@@ -1,5 +1,5 @@
300 /*
301- Copyright (C) 2007-2008 Christian Dywan <christian@twotoasts.de>
302+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
303 Copyright (C) 2009 Dale Whittaker <dayul@users.sf.net>
304
305 This library is free software; you can redistribute it and/or
306
307=== modified file 'katze/katze.h'
308--- katze/katze.h 2011-10-10 21:22:27 +0000
309+++ katze/katze.h 2012-02-04 14:53:19 +0000
310@@ -1,5 +1,5 @@
311 /*
312- Copyright (C) 2007-2009 Christian Dywan <christian@twotoasts.de>
313+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
314
315 This library is free software; you can redistribute it and/or
316 modify it under the terms of the GNU Lesser General Public
317
318=== modified file 'katze/midori-uri.vala'
319--- katze/midori-uri.vala 2011-11-22 20:57:20 +0000
320+++ katze/midori-uri.vala 2012-02-04 14:53:19 +0000
321@@ -1,5 +1,5 @@
322 /*
323- Copyright (C) 2011 Christian Dywan <christian@twotoasts.de>
324+ Copyright (C) 2011-2012 Christian Dywan <christian@twotoasts.de>
325
326 This library is free software; you can redistribute it and/or
327 modify it under the terms of the GNU Lesser General Public
328
329=== modified file 'midori/main.c'
330--- midori/main.c 2012-01-27 20:42:04 +0000
331+++ midori/main.c 2012-02-04 14:53:19 +0000
332@@ -1,5 +1,5 @@
333 /*
334- Copyright (C) 2007-2009 Christian Dywan <christian@twotoasts.de>
335+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
336 Copyright (C) 2008 Dale Whittaker <dayul@users.sf.net>
337
338 This library is free software; you can redistribute it and/or
339
340=== modified file 'midori/midori-app.c'
341--- midori/midori-app.c 2012-01-24 22:57:40 +0000
342+++ midori/midori-app.c 2012-02-04 14:53:19 +0000
343@@ -1,5 +1,5 @@
344 /*
345- Copyright (C) 2008-2010 Christian Dywan <christian@twotoasts.de>
346+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
347
348 This library is free software; you can redistribute it and/or
349 modify it under the terms of the GNU Lesser General Public
350
351=== modified file 'midori/midori-app.h'
352--- midori/midori-app.h 2011-10-28 20:49:10 +0000
353+++ midori/midori-app.h 2012-02-04 14:53:19 +0000
354@@ -1,5 +1,5 @@
355 /*
356- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
357+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
358
359 This library is free software; you can redistribute it and/or
360 modify it under the terms of the GNU Lesser General Public
361
362=== modified file 'midori/midori-array.c'
363--- midori/midori-array.c 2012-01-03 20:15:19 +0000
364+++ midori/midori-array.c 2012-02-04 14:53:19 +0000
365@@ -1,5 +1,5 @@
366 /*
367- Copyright (C) 2007-2009 Christian Dywan <christian@twotoasts.de>
368+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
369
370 This library is free software; you can redistribute it and/or
371 modify it under the terms of the GNU Lesser General Public
372
373=== modified file 'midori/midori-array.h'
374--- midori/midori-array.h 2012-01-03 20:15:19 +0000
375+++ midori/midori-array.h 2012-02-04 14:53:19 +0000
376@@ -1,5 +1,5 @@
377 /*
378- Copyright (C) 2007-2009 Christian Dywan <christian@twotoasts.de>
379+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
380
381 This library is free software; you can redistribute it and/or
382 modify it under the terms of the GNU Lesser General Public
383
384=== modified file 'midori/midori-browser.c'
385--- midori/midori-browser.c 2012-01-27 20:42:04 +0000
386+++ midori/midori-browser.c 2012-02-04 14:53:19 +0000
387@@ -1,5 +1,5 @@
388 /*
389- Copyright (C) 2007-2011 Christian Dywan <christian@twotoasts.de>
390+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
391 Copyright (C) 2008 Dale Whittaker <dayul@users.sf.net>
392 Copyright (C) 2009 Jérôme Geulfucci <jeromeg@xfce.org>
393
394
395=== modified file 'midori/midori-browser.h'
396--- midori/midori-browser.h 2011-04-30 10:17:55 +0000
397+++ midori/midori-browser.h 2012-02-04 14:53:19 +0000
398@@ -1,5 +1,5 @@
399 /*
400- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
401+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
402
403 This library is free software; you can redistribute it and/or
404 modify it under the terms of the GNU Lesser General Public
405
406=== modified file 'midori/midori-extension.c'
407--- midori/midori-extension.c 2011-11-08 21:42:03 +0000
408+++ midori/midori-extension.c 2012-02-04 14:53:19 +0000
409@@ -1,5 +1,5 @@
410 /*
411- Copyright (C) 2008-2009 Christian Dywan <christian@twotoasts.de>
412+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
413 Copyright (C) 2009 Dale Whittaker <dayul@users.sf.net>
414
415 This library is free software; you can redistribute it and/or
416
417=== modified file 'midori/midori-extension.h'
418--- midori/midori-extension.h 2011-06-07 19:02:09 +0000
419+++ midori/midori-extension.h 2012-02-04 14:53:19 +0000
420@@ -1,5 +1,5 @@
421 /*
422- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
423+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
424
425 This library is free software; you can redistribute it and/or
426 modify it under the terms of the GNU Lesser General Public
427
428=== modified file 'midori/midori-extensions-column.vala'
429--- midori/midori-extensions-column.vala 2011-10-30 13:09:12 +0000
430+++ midori/midori-extensions-column.vala 2012-02-04 14:53:19 +0000
431@@ -1,3 +1,13 @@
432+/*
433+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
434+
435+ This library is free software; you can redistribute it and/or
436+ modify it under the terms of the GNU Lesser General Public
437+ License as published by the Free Software Foundation; either
438+ version 2.1 of the License, or (at your option) any later version.
439+
440+ See the file COPYING for the full license text.
441+*/
442
443 public class Midori.ExtensionsColumn : Gtk.TreeViewColumn {
444 public signal void row_clicked (Gtk.TreeView view, Gtk.TreePath path);
445
446=== modified file 'midori/midori-locationaction.c'
447--- midori/midori-locationaction.c 2012-01-24 22:57:40 +0000
448+++ midori/midori-locationaction.c 2012-02-04 14:53:19 +0000
449@@ -1,5 +1,5 @@
450 /*
451- Copyright (C) 2008-2010 Christian Dywan <christian@twotoasts.de>
452+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
453 Copyright (C) 2008-2010 Dale Whittaker <dayul@users.sf.net>
454
455 This library is free software; you can redistribute it and/or
456
457=== modified file 'midori/midori-locationaction.h'
458--- midori/midori-locationaction.h 2010-07-31 11:59:48 +0000
459+++ midori/midori-locationaction.h 2012-02-04 14:53:19 +0000
460@@ -1,5 +1,5 @@
461 /*
462- Copyright (C) 2008-2009 Christian Dywan <christian@twotoasts.de>
463+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
464
465 This library is free software; you can redistribute it and/or
466 modify it under the terms of the GNU Lesser General Public
467
468=== modified file 'midori/midori-panel.c'
469--- midori/midori-panel.c 2011-11-20 21:14:30 +0000
470+++ midori/midori-panel.c 2012-02-04 14:53:19 +0000
471@@ -1,5 +1,5 @@
472 /*
473- Copyright (C) 2007-2009 Christian Dywan <christian@twotoasts.de>
474+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
475
476 This library is free software; you can redistribute it and/or
477 modify it under the terms of the GNU Lesser General Public
478
479=== modified file 'midori/midori-panel.h'
480--- midori/midori-panel.h 2010-09-07 20:24:11 +0000
481+++ midori/midori-panel.h 2012-02-04 14:53:19 +0000
482@@ -1,5 +1,5 @@
483 /*
484- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
485+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
486
487 This library is free software; you can redistribute it and/or
488 modify it under the terms of the GNU Lesser General Public
489
490=== modified file 'midori/midori-platform.h'
491--- midori/midori-platform.h 2011-10-31 21:18:06 +0000
492+++ midori/midori-platform.h 2012-02-04 14:53:19 +0000
493@@ -1,5 +1,5 @@
494 /*
495- Copyright (C) 2010-2011 Christian Dywan <christian@twotoasts.de>
496+ Copyright (C) 2010-2012 Christian Dywan <christian@twotoasts.de>
497
498 This library is free software; you can redistribute it and/or
499 modify it under the terms of the GNU Lesser General Public
500
501=== modified file 'midori/midori-preferences.c'
502--- midori/midori-preferences.c 2012-01-03 21:45:21 +0000
503+++ midori/midori-preferences.c 2012-02-04 14:53:19 +0000
504@@ -1,5 +1,5 @@
505 /*
506- Copyright (C) 2007-2009 Christian Dywan <christian@twotoasts.de>
507+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
508
509 This library is free software; you can redistribute it and/or
510 modify it under the terms of the GNU Lesser General Public
511
512=== modified file 'midori/midori-preferences.h'
513--- midori/midori-preferences.h 2010-01-17 17:14:48 +0000
514+++ midori/midori-preferences.h 2012-02-04 14:53:19 +0000
515@@ -1,5 +1,5 @@
516 /*
517- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
518+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
519
520 This library is free software; you can redistribute it and/or
521 modify it under the terms of the GNU Lesser General Public
522
523=== modified file 'midori/midori-searchaction.c'
524--- midori/midori-searchaction.c 2012-01-13 23:34:11 +0000
525+++ midori/midori-searchaction.c 2012-02-04 14:53:19 +0000
526@@ -1,5 +1,5 @@
527 /*
528- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
529+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
530
531 This library is free software; you can redistribute it and/or
532 modify it under the terms of the GNU Lesser General Public
533
534=== modified file 'midori/midori-searchaction.h'
535--- midori/midori-searchaction.h 2011-05-01 16:49:09 +0000
536+++ midori/midori-searchaction.h 2012-02-04 14:53:19 +0000
537@@ -1,5 +1,5 @@
538 /*
539- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
540+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
541
542 This library is free software; you can redistribute it and/or
543 modify it under the terms of the GNU Lesser General Public
544
545=== modified file 'midori/midori-stock.h'
546--- midori/midori-stock.h 2011-10-31 21:18:06 +0000
547+++ midori/midori-stock.h 2012-02-04 14:53:19 +0000
548@@ -1,5 +1,5 @@
549 /*
550- Copyright (C) 2007-2008 Christian Dywan <christian@twotoasts.de>
551+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
552
553 This library is free software; you can redistribute it and/or
554 modify it under the terms of the GNU Lesser General Public
555
556=== modified file 'midori/midori-view.c'
557--- midori/midori-view.c 2012-01-29 18:14:24 +0000
558+++ midori/midori-view.c 2012-02-04 14:53:19 +0000
559@@ -1,5 +1,5 @@
560 /*
561- Copyright (C) 2007-2010 Christian Dywan <christian@twotoasts.de>
562+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
563 Copyright (C) 2009 Jean-François Guchens <zcx000@gmail.com>
564
565 This library is free software; you can redistribute it and/or
566
567=== modified file 'midori/midori-view.h'
568--- midori/midori-view.h 2011-12-14 00:37:14 +0000
569+++ midori/midori-view.h 2012-02-04 14:53:19 +0000
570@@ -1,5 +1,5 @@
571 /*
572- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
573+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
574
575 This library is free software; you can redistribute it and/or
576 modify it under the terms of the GNU Lesser General Public
577
578=== modified file 'midori/midori-viewable.c'
579--- midori/midori-viewable.c 2010-09-12 19:03:14 +0000
580+++ midori/midori-viewable.c 2012-02-04 14:53:19 +0000
581@@ -1,5 +1,5 @@
582 /*
583- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
584+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
585
586 This library is free software; you can redistribute it and/or
587 modify it under the terms of the GNU Lesser General Public
588
589=== modified file 'midori/midori-viewable.h'
590--- midori/midori-viewable.h 2010-09-12 19:03:14 +0000
591+++ midori/midori-viewable.h 2012-02-04 14:53:19 +0000
592@@ -1,5 +1,5 @@
593 /*
594- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
595+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
596
597 This library is free software; you can redistribute it and/or
598 modify it under the terms of the GNU Lesser General Public
599
600=== modified file 'midori/midori-websettings.c'
601--- midori/midori-websettings.c 2012-01-03 21:45:21 +0000
602+++ midori/midori-websettings.c 2012-02-04 14:53:19 +0000
603@@ -1,5 +1,5 @@
604 /*
605- Copyright (C) 2008-2010 Christian Dywan <christian@twotoasts.de>
606+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
607 Copyright (C) 2011 Peter Hatina <phatina@redhat.com>
608
609 This library is free software; you can redistribute it and/or
610
611=== modified file 'midori/midori-websettings.h'
612--- midori/midori-websettings.h 2011-11-16 23:03:52 +0000
613+++ midori/midori-websettings.h 2012-02-04 14:53:19 +0000
614@@ -1,5 +1,5 @@
615 /*
616- Copyright (C) 2008-2010 Christian Dywan <christian@twotoasts.de>
617+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
618
619 This library is free software; you can redistribute it and/or
620 modify it under the terms of the GNU Lesser General Public
621
622=== modified file 'midori/midori.h'
623--- midori/midori.h 2011-10-31 21:18:06 +0000
624+++ midori/midori.h 2012-02-04 14:53:19 +0000
625@@ -1,5 +1,5 @@
626 /*
627- Copyright (C) 2008-2009 Christian Dywan <christian@twotoasts.de>
628+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
629
630 This library is free software; you can redistribute it and/or
631 modify it under the terms of the GNU Lesser General Public
632
633=== modified file 'midori/midori.vapi'
634--- midori/midori.vapi 2011-11-08 00:53:53 +0000
635+++ midori/midori.vapi 2012-02-04 14:53:19 +0000
636@@ -1,4 +1,4 @@
637-/* Copyright (C) 2010 Christian Dywan <christian@twotoasts.de>
638+/* Copyright (C) 2010-2012 Christian Dywan <christian@twotoasts.de>
639 This file is licensed under the terms of the expat license, see the file EXPAT. */
640
641 [CCode (cprefix = "Midori", lower_case_cprefix = "midori_")]
642
643=== modified file 'midori/sokoke.c'
644--- midori/sokoke.c 2012-01-13 23:34:11 +0000
645+++ midori/sokoke.c 2012-02-04 14:53:19 +0000
646@@ -1,5 +1,5 @@
647 /*
648- Copyright (C) 2007-2011 Christian Dywan <christian@twotoasts.de>
649+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
650 Copyright (C) 2009 Dale Whittaker <dayul@users.sf.net>
651 Copyright (C) 2009 Alexander Butenko <a.butenka@gmail.com>
652
653
654=== modified file 'midori/sokoke.h'
655--- midori/sokoke.h 2012-01-13 23:34:11 +0000
656+++ midori/sokoke.h 2012-02-04 14:53:19 +0000
657@@ -1,5 +1,5 @@
658 /*
659- Copyright (C) 2007-2008 Christian Dywan <christian@twotoasts.de>
660+ Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de>
661 Copyright (C) 2009 Dale Whittaker <dayul@users.sf.net>
662
663 This library is free software; you can redistribute it and/or
664
665=== modified file 'panels/midori-bookmarks.c'
666--- panels/midori-bookmarks.c 2012-01-13 23:45:01 +0000
667+++ panels/midori-bookmarks.c 2012-02-04 14:53:19 +0000
668@@ -1,5 +1,5 @@
669 /*
670- Copyright (C) 2008-2009 Christian Dywan <christian@twotoasts.de>
671+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
672
673 This library is free software; you can redistribute it and/or
674 modify it under the terms of the GNU Lesser General Public
675
676=== modified file 'panels/midori-bookmarks.h'
677--- panels/midori-bookmarks.h 2011-10-31 21:18:06 +0000
678+++ panels/midori-bookmarks.h 2012-02-04 14:53:19 +0000
679@@ -1,5 +1,5 @@
680 /*
681- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
682+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
683
684 This library is free software; you can redistribute it and/or
685 modify it under the terms of the GNU Lesser General Public
686
687=== modified file 'panels/midori-extensions.c'
688--- panels/midori-extensions.c 2011-11-09 21:06:11 +0000
689+++ panels/midori-extensions.c 2012-02-04 14:53:19 +0000
690@@ -1,5 +1,5 @@
691 /*
692- Copyright (C) 2008-2009 Christian Dywan <christian@twotoasts.de>
693+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
694
695 This library is free software; you can redistribute it and/or
696 modify it under the terms of the GNU Lesser General Public
697
698=== modified file 'panels/midori-extensions.h'
699--- panels/midori-extensions.h 2008-12-04 00:44:33 +0000
700+++ panels/midori-extensions.h 2012-02-04 14:53:19 +0000
701@@ -1,5 +1,5 @@
702 /*
703- Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
704+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
705
706 This library is free software; you can redistribute it and/or
707 modify it under the terms of the GNU Lesser General Public
708
709=== modified file 'panels/midori-history.c'
710--- panels/midori-history.c 2012-01-13 23:45:01 +0000
711+++ panels/midori-history.c 2012-02-04 14:53:19 +0000
712@@ -1,5 +1,5 @@
713 /*
714- Copyright (C) 2008-2009 Christian Dywan <christian@twotoasts.de>
715+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
716
717 This library is free software; you can redistribute it and/or
718 modify it under the terms of the GNU Lesser General Public
719
720=== modified file 'panels/midori-history.h'
721--- panels/midori-history.h 2009-02-21 22:59:02 +0000
722+++ panels/midori-history.h 2012-02-04 14:53:19 +0000
723@@ -1,5 +1,5 @@
724 /*
725- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
726+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
727
728 This library is free software; you can redistribute it and/or
729 modify it under the terms of the GNU Lesser General Public
730
731=== modified file 'panels/midori-transfers.c'
732--- panels/midori-transfers.c 2011-11-09 21:06:11 +0000
733+++ panels/midori-transfers.c 2012-02-04 14:53:19 +0000
734@@ -1,5 +1,5 @@
735 /*
736- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
737+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
738
739 This library is free software; you can redistribute it and/or
740 modify it under the terms of the GNU Lesser General Public
741
742=== modified file 'panels/midori-transfers.h'
743--- panels/midori-transfers.h 2009-03-22 14:25:57 +0000
744+++ panels/midori-transfers.h 2012-02-04 14:53:19 +0000
745@@ -1,5 +1,5 @@
746 /*
747- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
748+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
749
750 This library is free software; you can redistribute it and/or
751 modify it under the terms of the GNU Lesser General Public
752
753=== modified file 'tests/browser.c'
754--- tests/browser.c 2011-11-08 21:42:02 +0000
755+++ tests/browser.c 2012-02-04 14:53:19 +0000
756@@ -1,5 +1,5 @@
757 /*
758- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
759+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
760
761 This library is free software; you can redistribute it and/or
762 modify it under the terms of the GNU Lesser General Public
763
764=== modified file 'tests/extensions.c'
765--- tests/extensions.c 2011-11-17 23:55:19 +0000
766+++ tests/extensions.c 2012-02-04 14:53:19 +0000
767@@ -1,5 +1,5 @@
768 /*
769- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
770+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
771
772 This library is free software; you can redistribute it and/or
773 modify it under the terms of the GNU Lesser General Public
774
775=== modified file 'tests/magic-uri.c'
776--- tests/magic-uri.c 2011-11-18 00:44:48 +0000
777+++ tests/magic-uri.c 2012-02-04 14:53:19 +0000
778@@ -1,5 +1,5 @@
779 /*
780- Copyright (C) 2008-2009 Christian Dywan <christian@twotoasts.de>
781+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
782 Copyright (C) 2009 Alexander Butenko <a.butenka@gmail.com>
783
784 This library is free software; you can redistribute it and/or
785
786=== modified file 'tests/properties.c'
787--- tests/properties.c 2011-11-08 21:42:03 +0000
788+++ tests/properties.c 2012-02-04 14:53:19 +0000
789@@ -1,5 +1,5 @@
790 /*
791- Copyright (C) 2009 Christian Dywan <christian@twotoasts.de>
792+ Copyright (C) 2009-2012 Christian Dywan <christian@twotoasts.de>
793
794 This library is free software; you can redistribute it and/or
795 modify it under the terms of the GNU Lesser General Public
796
797=== modified file 'toolbars/midori-findbar.c'
798--- toolbars/midori-findbar.c 2012-01-13 23:45:01 +0000
799+++ toolbars/midori-findbar.c 2012-02-04 14:53:19 +0000
800@@ -1,5 +1,5 @@
801 /*
802- Copyright (C) 2008-2010 Christian Dywan <christian@twotoasts.de>
803+ Copyright (C) 2008-2012 Christian Dywan <christian@twotoasts.de>
804
805 This library is free software; you can redistribute it and/or
806 modify it under the terms of the GNU Lesser General Public
807
808=== modified file 'toolbars/midori-findbar.h'
809--- toolbars/midori-findbar.h 2011-10-13 16:31:50 +0000
810+++ toolbars/midori-findbar.h 2012-02-04 14:53:19 +0000
811@@ -1,5 +1,5 @@
812 /*
813- Copyright (C) 2010 Christian Dywan <christian@twotoasts.de>
814+ Copyright (C) 2010-2012 Christian Dywan <christian@twotoasts.de>
815
816 This library is free software; you can redistribute it and/or
817 modify it under the terms of the GNU Lesser General Public
818
819=== modified file 'toolbars/midori-transferbar.c'
820--- toolbars/midori-transferbar.c 2011-11-07 23:28:07 +0000
821+++ toolbars/midori-transferbar.c 2012-02-04 14:53:19 +0000
822@@ -1,5 +1,5 @@
823 /*
824- Copyright (C) 2010 Christian Dywan <christian@twotoasts.de>
825+ Copyright (C) 2010-2012 Christian Dywan <christian@twotoasts.de>
826
827 This library is free software; you can redistribute it and/or
828 modify it under the terms of the GNU Lesser General Public
829
830=== modified file 'toolbars/midori-transferbar.h'
831--- toolbars/midori-transferbar.h 2010-06-17 18:17:21 +0000
832+++ toolbars/midori-transferbar.h 2012-02-04 14:53:19 +0000
833@@ -1,5 +1,5 @@
834 /*
835- Copyright (C) 2010 Christian Dywan <christian@twotoasts.de>
836+ Copyright (C) 2010-2012 Christian Dywan <christian@twotoasts.de>
837
838 This library is free software; you can redistribute it and/or
839 modify it under the terms of the GNU Lesser General Public

Subscribers

People subscribed via source and target branches

to all changes: