[pyatspi2: 1/3] Add LGPL 2+ licence header on some test files
- From: Mike Gorse <mgorse src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pyatspi2: 1/3] Add LGPL 2+ licence header on some test files
- Date: Tue, 27 Aug 2019 14:47:53 +0000 (UTC)
commit 4e5c92d894e51d6fe2061bf5ba0eb392e8bacfb7
Author: Samuel Thibault <samuel thibault ens-lyon org>
Date: Mon Aug 26 23:08:10 2019 +0200
Add LGPL 2+ licence header on some test files
These were introduced at a time where the whole pyatspi was LGPL 2+.
Fixes #3
tests/apps/accessible-app.c | 19 +++++++++++++++++++
tests/apps/action-app.c | 19 +++++++++++++++++++
tests/apps/component-app.c | 19 +++++++++++++++++++
tests/apps/noop-app.c | 19 +++++++++++++++++++
tests/apps/relation-app.c | 19 +++++++++++++++++++
tests/data/accessible-test-results.xml | 21 +++++++++++++++++++++
tests/data/accessible-test.xml | 21 +++++++++++++++++++++
tests/dummyatk/my-atk-action.c | 19 +++++++++++++++++++
tests/dummyatk/my-atk-action.h | 19 +++++++++++++++++++
tests/dummyatk/my-atk-component.c | 19 +++++++++++++++++++
tests/dummyatk/my-atk-component.h | 19 +++++++++++++++++++
tests/dummyatk/my-atk-document.c | 19 +++++++++++++++++++
tests/dummyatk/my-atk-document.h | 19 +++++++++++++++++++
tests/dummyatk/my-atk-hyperlink.c | 19 +++++++++++++++++++
tests/dummyatk/my-atk-hyperlink.h | 19 +++++++++++++++++++
tests/dummyatk/my-atk-hypertext.c | 19 +++++++++++++++++++
tests/dummyatk/my-atk-hypertext.h | 19 +++++++++++++++++++
tests/dummyatk/my-atk-object.c | 19 +++++++++++++++++++
tests/dummyatk/my-atk-object.h | 19 +++++++++++++++++++
tests/dummyatk/my-atk-selection.c | 19 +++++++++++++++++++
tests/dummyatk/my-atk-selection.h | 19 +++++++++++++++++++
tests/dummyatk/my-atk-streamable-content.c | 19 +++++++++++++++++++
tests/dummyatk/my-atk-streamable-content.h | 19 +++++++++++++++++++
tests/dummyatk/my-atk-table.c | 19 +++++++++++++++++++
tests/dummyatk/my-atk-table.h | 19 +++++++++++++++++++
tests/dummyatk/my-atk-text.c | 19 +++++++++++++++++++
tests/dummyatk/my-atk-text.h | 19 +++++++++++++++++++
tests/dummyatk/my-atk-value.c | 19 +++++++++++++++++++
tests/dummyatk/my-atk-value.h | 19 +++++++++++++++++++
tests/dummyatk/my-atk.h | 19 +++++++++++++++++++
tests/dummyatk/resources_storage.c | 19 +++++++++++++++++++
tests/dummyatk/resources_storage.h | 19 +++++++++++++++++++
tests/dummyatk/useful_functions.c | 19 +++++++++++++++++++
tests/dummyatk/useful_functions.h | 19 +++++++++++++++++++
tests/dummyatk/user_marshal.c | 19 +++++++++++++++++++
tests/dummyatk/user_marshal.h | 19 +++++++++++++++++++
tests/pyatspi/accessibletest.py | 19 +++++++++++++++++++
tests/pyatspi/actiontest.py | 19 +++++++++++++++++++
tests/pyatspi/collectiontest.py | 19 +++++++++++++++++++
tests/pyatspi/componenttest.py | 19 +++++++++++++++++++
tests/pyatspi/desktoptest.py | 19 +++++++++++++++++++
tests/pyatspi/relationtest.py | 19 +++++++++++++++++++
tests/pyatspi/statetest.py | 19 +++++++++++++++++++
tests/pyatspi/testrunner.in | 18 ++++++++++++++++++
44 files changed, 839 insertions(+)
---
diff --git a/tests/apps/accessible-app.c b/tests/apps/accessible-app.c
index 2796bf5..e886feb 100644
--- a/tests/apps/accessible-app.c
+++ b/tests/apps/accessible-app.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <gmodule.h>
#include <atk/atk.h>
#include <my-atk.h>
diff --git a/tests/apps/action-app.c b/tests/apps/action-app.c
index a6bd742..723b160 100644
--- a/tests/apps/action-app.c
+++ b/tests/apps/action-app.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <gmodule.h>
#include <atk/atk.h>
#include <my-atk.h>
diff --git a/tests/apps/component-app.c b/tests/apps/component-app.c
index c926513..7c7907e 100644
--- a/tests/apps/component-app.c
+++ b/tests/apps/component-app.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <gmodule.h>
#include <atk/atk.h>
#include <my-atk.h>
diff --git a/tests/apps/noop-app.c b/tests/apps/noop-app.c
index f2a5f51..478d94d 100644
--- a/tests/apps/noop-app.c
+++ b/tests/apps/noop-app.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <gmodule.h>
#include <atk/atk.h>
diff --git a/tests/apps/relation-app.c b/tests/apps/relation-app.c
index 0ee4517..6303c81 100644
--- a/tests/apps/relation-app.c
+++ b/tests/apps/relation-app.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <gmodule.h>
#include <atk/atk.h>
#include <my-atk.h>
diff --git a/tests/data/accessible-test-results.xml b/tests/data/accessible-test-results.xml
index d2db548..3d9dcad 100644
--- a/tests/data/accessible-test-results.xml
+++ b/tests/data/accessible-test-results.xml
@@ -1,3 +1,24 @@
+<!--
+
+Copyright 2008 Codethink Ltd.
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Library General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Library General Public License for more details.
+
+You should have received a copy of the GNU Library General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+
+-->
+
<?xml version="1.0" ?>
<accessible description="The main accessible object, root of the accessible tree" name="atspi-test-main"
role="69">
<accessible description="" name="gnome-settings-daemon" role="79"/>
diff --git a/tests/data/accessible-test.xml b/tests/data/accessible-test.xml
index 000a10b..6ff1a0c 100644
--- a/tests/data/accessible-test.xml
+++ b/tests/data/accessible-test.xml
@@ -1,3 +1,24 @@
+<!--
+
+Copyright 2008 Codethink Ltd.
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Library General Public
+License as published by the Free Software Foundation; either
+version 2 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Library General Public License for more details.
+
+You should have received a copy of the GNU Library General Public
+License along with this library; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+
+-->
+
<?xml version="1.0" ?>
<accessible description="The main accessible object, root of the accessible tree" name="atspi-test-main"
role="68" type="document">
<accessible description="" name="gnome-settings-daemon" role="77"/>
diff --git a/tests/dummyatk/my-atk-action.c b/tests/dummyatk/my-atk-action.c
index 31964c2..b5caece 100644
--- a/tests/dummyatk/my-atk-action.c
+++ b/tests/dummyatk/my-atk-action.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <stdio.h>
#include <string.h>
#include <atk/atk.h>
diff --git a/tests/dummyatk/my-atk-action.h b/tests/dummyatk/my-atk-action.h
index f33e75d..86d3a40 100644
--- a/tests/dummyatk/my-atk-action.h
+++ b/tests/dummyatk/my-atk-action.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef MY_ATK_ACTION_H
#define MY_ATK_ACTION_H
//Object, which implement interface AtkAction(all functions)
diff --git a/tests/dummyatk/my-atk-component.c b/tests/dummyatk/my-atk-component.c
index e304c7d..d91e8c1 100644
--- a/tests/dummyatk/my-atk-component.c
+++ b/tests/dummyatk/my-atk-component.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <stdio.h>
#include <atk/atk.h>
#include <limits.h>
diff --git a/tests/dummyatk/my-atk-component.h b/tests/dummyatk/my-atk-component.h
index 3fa5850..15bab6a 100644
--- a/tests/dummyatk/my-atk-component.h
+++ b/tests/dummyatk/my-atk-component.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef MY_ATK_COMPONENT_H
#define MY_ATK_COMPONENT_H
/*
diff --git a/tests/dummyatk/my-atk-document.c b/tests/dummyatk/my-atk-document.c
index eab6aba..25879a2 100644
--- a/tests/dummyatk/my-atk-document.c
+++ b/tests/dummyatk/my-atk-document.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2010 Mike Gorse <mgorse novell com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
/* This file contains both declaration and definition of the MyAtkDocument,
* a GObject that pretends to implement the AtkDocumentIface interface (it
* registers appropriate interface), but provides no implementation for any of the
diff --git a/tests/dummyatk/my-atk-document.h b/tests/dummyatk/my-atk-document.h
index c4b2478..11dfaf3 100644
--- a/tests/dummyatk/my-atk-document.h
+++ b/tests/dummyatk/my-atk-document.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2010 Mike Gorse <mgorse novell com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef MY_ATK_DOCUMENT_H
#define MY_ATK_DOCUMENT_H
diff --git a/tests/dummyatk/my-atk-hyperlink.c b/tests/dummyatk/my-atk-hyperlink.c
index cb6b435..0c69443 100644
--- a/tests/dummyatk/my-atk-hyperlink.c
+++ b/tests/dummyatk/my-atk-hyperlink.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <atk/atk.h>
#include "my-atk-text.h"
diff --git a/tests/dummyatk/my-atk-hyperlink.h b/tests/dummyatk/my-atk-hyperlink.h
index 026ba54..2eddf2d 100644
--- a/tests/dummyatk/my-atk-hyperlink.h
+++ b/tests/dummyatk/my-atk-hyperlink.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef MY_ATK_HYPERLINK_H
#define MY_ATK_HYPERLINK_H
/*
diff --git a/tests/dummyatk/my-atk-hypertext.c b/tests/dummyatk/my-atk-hypertext.c
index 1bba620..b51ea3a 100644
--- a/tests/dummyatk/my-atk-hypertext.c
+++ b/tests/dummyatk/my-atk-hypertext.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <atk/atk.h>
#include "my-atk-text.h"
diff --git a/tests/dummyatk/my-atk-hypertext.h b/tests/dummyatk/my-atk-hypertext.h
index 50d02cf..781944b 100644
--- a/tests/dummyatk/my-atk-hypertext.h
+++ b/tests/dummyatk/my-atk-hypertext.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef MY_ATK_HYPERTEXT_H
#define MY_ATK_HYPERTEXT_H
/*
diff --git a/tests/dummyatk/my-atk-object.c b/tests/dummyatk/my-atk-object.c
index 4029424..d025d54 100644
--- a/tests/dummyatk/my-atk-object.c
+++ b/tests/dummyatk/my-atk-object.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <stdio.h>
#include <atk/atk.h>
diff --git a/tests/dummyatk/my-atk-object.h b/tests/dummyatk/my-atk-object.h
index 72a4aea..d6fe5c0 100644
--- a/tests/dummyatk/my-atk-object.h
+++ b/tests/dummyatk/my-atk-object.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef MY_ATK_OBJECT_H
#define MY_ATK_OBJECT_H
diff --git a/tests/dummyatk/my-atk-selection.c b/tests/dummyatk/my-atk-selection.c
index e3f386f..87757a0 100644
--- a/tests/dummyatk/my-atk-selection.c
+++ b/tests/dummyatk/my-atk-selection.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
/* This file contains both declaration and definition of the MyAtkSelection,
* a GObject that implements the AtkSelectionIface interface.
*/
diff --git a/tests/dummyatk/my-atk-selection.h b/tests/dummyatk/my-atk-selection.h
index 8e8fcf5..bea511b 100644
--- a/tests/dummyatk/my-atk-selection.h
+++ b/tests/dummyatk/my-atk-selection.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
/* This file contains both declaration and definition of the MyAtkSelection,
* a GObject that implements the AtkSelectionIface interface.
*/
diff --git a/tests/dummyatk/my-atk-streamable-content.c b/tests/dummyatk/my-atk-streamable-content.c
index 460dd9a..19f437f 100644
--- a/tests/dummyatk/my-atk-streamable-content.c
+++ b/tests/dummyatk/my-atk-streamable-content.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <atk/atk.h>
#include "my-atk-object.h"
diff --git a/tests/dummyatk/my-atk-streamable-content.h b/tests/dummyatk/my-atk-streamable-content.h
index 7a476ac..a9ba5e6 100644
--- a/tests/dummyatk/my-atk-streamable-content.h
+++ b/tests/dummyatk/my-atk-streamable-content.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef MY_ATK_STREAMABLE_CONTENT_H
#define MY_ATK_STREAMABLE_CONTENT_H
diff --git a/tests/dummyatk/my-atk-table.c b/tests/dummyatk/my-atk-table.c
index a76c70e..3c2e26e 100644
--- a/tests/dummyatk/my-atk-table.c
+++ b/tests/dummyatk/my-atk-table.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
/* This file contains both declaration and definition of the MyAtkTable,
* a GObject that pretends to implement the AtkTableIface interface (it
* registers appropriate interface), but provides no implementation for any of the
diff --git a/tests/dummyatk/my-atk-table.h b/tests/dummyatk/my-atk-table.h
index 7860a2d..47b939e 100644
--- a/tests/dummyatk/my-atk-table.h
+++ b/tests/dummyatk/my-atk-table.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef MY_ATK_TABLE_H
#define MY_ATK_TABLE_H
diff --git a/tests/dummyatk/my-atk-text.c b/tests/dummyatk/my-atk-text.c
index dcca0ab..1b6a79c 100644
--- a/tests/dummyatk/my-atk-text.c
+++ b/tests/dummyatk/my-atk-text.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <atk/atk.h>
#include <string.h>
diff --git a/tests/dummyatk/my-atk-text.h b/tests/dummyatk/my-atk-text.h
index 7a6a73e..c16cc42 100644
--- a/tests/dummyatk/my-atk-text.h
+++ b/tests/dummyatk/my-atk-text.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef MY_ATK_TEXT_H
#define MY_ATK_TEXT_H
/*
diff --git a/tests/dummyatk/my-atk-value.c b/tests/dummyatk/my-atk-value.c
index 3530d4f..6452a5d 100644
--- a/tests/dummyatk/my-atk-value.c
+++ b/tests/dummyatk/my-atk-value.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <atk/atk.h>
#include <limits.h>
diff --git a/tests/dummyatk/my-atk-value.h b/tests/dummyatk/my-atk-value.h
index 03ed6d1..ca27db3 100644
--- a/tests/dummyatk/my-atk-value.h
+++ b/tests/dummyatk/my-atk-value.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef MY_ATK_VALUE_H
#define MY_ATK_VALUE_H
/*
diff --git a/tests/dummyatk/my-atk.h b/tests/dummyatk/my-atk.h
index 0ab937d..c32d7cb 100644
--- a/tests/dummyatk/my-atk.h
+++ b/tests/dummyatk/my-atk.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef MY_ATK_H
#define MY_ATK_H
diff --git a/tests/dummyatk/resources_storage.c b/tests/dummyatk/resources_storage.c
index e86051d..11fd647 100644
--- a/tests/dummyatk/resources_storage.c
+++ b/tests/dummyatk/resources_storage.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <atk/atk.h>
GHashTable* resources = NULL;
diff --git a/tests/dummyatk/resources_storage.h b/tests/dummyatk/resources_storage.h
index 3decd86..962b27e 100644
--- a/tests/dummyatk/resources_storage.h
+++ b/tests/dummyatk/resources_storage.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef RESOURCES_STORAGE_H
#define RESOURCES_STORAGE_H
diff --git a/tests/dummyatk/useful_functions.c b/tests/dummyatk/useful_functions.c
index 49b6a82..a2e2734 100644
--- a/tests/dummyatk/useful_functions.c
+++ b/tests/dummyatk/useful_functions.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <string.h>
#include <glib.h>
/*
diff --git a/tests/dummyatk/useful_functions.h b/tests/dummyatk/useful_functions.h
index 4fbce6c..498d212 100644
--- a/tests/dummyatk/useful_functions.h
+++ b/tests/dummyatk/useful_functions.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef USEFUL_FUNCTIONS_H
#define USEFUL_FUNCTIONS_H
/*
diff --git a/tests/dummyatk/user_marshal.c b/tests/dummyatk/user_marshal.c
index 1f8ecf0..d87c07f 100644
--- a/tests/dummyatk/user_marshal.c
+++ b/tests/dummyatk/user_marshal.c
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#include <glib-object.h>
/* INT:BOXED (marshal.list:1) */
diff --git a/tests/dummyatk/user_marshal.h b/tests/dummyatk/user_marshal.h
index a845925..914d4c2 100644
--- a/tests/dummyatk/user_marshal.h
+++ b/tests/dummyatk/user_marshal.h
@@ -1,3 +1,22 @@
+/*
+ * Copyright 2008 Codethink Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
#ifndef USER_MARSHAL_H
#define USER_MARSHAL_H
diff --git a/tests/pyatspi/accessibletest.py b/tests/pyatspi/accessibletest.py
index 7772078..64dafb6 100644
--- a/tests/pyatspi/accessibletest.py
+++ b/tests/pyatspi/accessibletest.py
@@ -1,3 +1,22 @@
+#
+# Copyright 2008 Codethink Ltd.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Library General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
import dbus
from gi.repository import GObject
import os.path
diff --git a/tests/pyatspi/actiontest.py b/tests/pyatspi/actiontest.py
index 98479c8..cc29bbe 100644
--- a/tests/pyatspi/actiontest.py
+++ b/tests/pyatspi/actiontest.py
@@ -1,3 +1,22 @@
+#
+# Copyright 2008 Codethink Ltd.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Library General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
import dbus
from gi.repository import GObject
import os.path
diff --git a/tests/pyatspi/collectiontest.py b/tests/pyatspi/collectiontest.py
index 2bb86e1..fbd9b4d 100644
--- a/tests/pyatspi/collectiontest.py
+++ b/tests/pyatspi/collectiontest.py
@@ -1,3 +1,22 @@
+#
+# Copyright 2009 Mike Gorse <mgorse novell com>
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Library General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
import dbus
from gi.repository import GObject
import os.path
diff --git a/tests/pyatspi/componenttest.py b/tests/pyatspi/componenttest.py
index cdd39c8..2ca84e6 100644
--- a/tests/pyatspi/componenttest.py
+++ b/tests/pyatspi/componenttest.py
@@ -1,3 +1,22 @@
+#
+# Copyright 2008 Codethink Ltd.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Library General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
import dbus
from gi.repository import GObject
import os.path
diff --git a/tests/pyatspi/desktoptest.py b/tests/pyatspi/desktoptest.py
index b237a58..65e953d 100644
--- a/tests/pyatspi/desktoptest.py
+++ b/tests/pyatspi/desktoptest.py
@@ -1,3 +1,22 @@
+#
+# Copyright 2008 Codethink Ltd.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Library General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
import dbus
from gi.repository import GObject
import os.path
diff --git a/tests/pyatspi/relationtest.py b/tests/pyatspi/relationtest.py
index 7981023..bb09159 100644
--- a/tests/pyatspi/relationtest.py
+++ b/tests/pyatspi/relationtest.py
@@ -1,3 +1,22 @@
+#
+# Copyright 2008 Codethink Ltd.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Library General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
import dbus
from gi.repository import GObject
import os.path
diff --git a/tests/pyatspi/statetest.py b/tests/pyatspi/statetest.py
index 572ebb2..4a1f11e 100644
--- a/tests/pyatspi/statetest.py
+++ b/tests/pyatspi/statetest.py
@@ -1,3 +1,22 @@
+#
+# Copyright 2008 Codethink Ltd.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Library General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
import dbus
from gi.repository import GObject
import os.path
diff --git a/tests/pyatspi/testrunner.in b/tests/pyatspi/testrunner.in
index 39cc7ff..29a0a68 100755
--- a/tests/pyatspi/testrunner.in
+++ b/tests/pyatspi/testrunner.in
@@ -1,4 +1,22 @@
#!@PYTHON@
+#
+# Copyright 2008 Codethink Ltd.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Library General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
from gi.repository import GObject, GLib
import dbus
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]