seed r849 - trunk/libseed
- From: hortont svn gnome org
- To: svn-commits-list gnome org
- Subject: seed r849 - trunk/libseed
- Date: Sat, 7 Feb 2009 08:37:46 +0000 (UTC)
Author: hortont
Date: Sat Feb 7 08:37:45 2009
New Revision: 849
URL: http://svn.gnome.org/viewvc/seed?rev=849&view=rev
Log:
Consistent headers across the C files.
Modified:
trunk/libseed/seed-api.c
trunk/libseed/seed-builtins.c
trunk/libseed/seed-closure.c
trunk/libseed/seed-engine.c
trunk/libseed/seed-exceptions.c
trunk/libseed/seed-gtype.c
trunk/libseed/seed-signals.c
trunk/libseed/seed-structs.c
trunk/libseed/seed-types.c
Modified: trunk/libseed/seed-api.c
==============================================================================
--- trunk/libseed/seed-api.c (original)
+++ trunk/libseed/seed-api.c Sat Feb 7 08:37:45 2009
@@ -1,17 +1,22 @@
-/* This file is part of Seed.
- * Seed is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * Seed 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 Lesser General Public License for more details.
- * You should have received a copy of the GNU Lesser General Public License
- * along with Seed. If not, see <http://www.gnu.org/licenses/>.
+/*
+ * -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
+ */
+
+/*
+ * This file is part of Seed, the GObject Introspection<->Javascript bindings.
+ *
+ * Seed is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of
+ * the License, or (at your option) any later version.
+ * Seed 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 Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Seed. If not, see <http://www.gnu.org/licenses/>.
*
- * Copyright (C) Robert Carr 2008 <carrr rpi edu>
+ * Copyright (C) Robert Carr 2008 <carrr rpi edu>
*/
#include "seed-private.h"
Modified: trunk/libseed/seed-builtins.c
==============================================================================
--- trunk/libseed/seed-builtins.c (original)
+++ trunk/libseed/seed-builtins.c Sat Feb 7 08:37:45 2009
@@ -1,23 +1,23 @@
/*
* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
*/
-/* This file is part of Seed.
-* Seed is free software: you can redistribute it and/or modify
-* it under the terms of the GNU Lesser General Public License as
-* published by
-* the Free Software Foundation, either version 3 of the License, or
-* (at your option) any later version.
-* Seed 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 Lesser General Public License for more details.
-* You should have received a copy of the GNU Lesser General Public License
-* along with Seed. If not, see <http://www.gnu.org/licenses/>.
-*
-* Copyright (C) Robert Carr 2008 <carrr rpi edu>
-* Copyright (C) Tim Horton 2008 <hortont424 gmail com>
-* Copyright (C) Matthew Arsenault 2008 <arsenm2 rpi edu>
-*/
+
+/*
+ * This file is part of Seed, the GObject Introspection<->Javascript bindings.
+ *
+ * Seed is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of
+ * the License, or (at your option) any later version.
+ * Seed 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 Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Seed. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Copyright (C) Robert Carr 2008 <carrr rpi edu>
+ */
#include <unistd.h>
#include <stdio.h>
Modified: trunk/libseed/seed-closure.c
==============================================================================
--- trunk/libseed/seed-closure.c (original)
+++ trunk/libseed/seed-closure.c Sat Feb 7 08:37:45 2009
@@ -2,21 +2,22 @@
* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
*/
-/* This file is part of Seed.
-* Seed is free software: you can redistribute it and/or modify
-* it under the terms of the GNU Lesser General Public License as
-* published by
-* the Free Software Foundation, either version 3 of the License, or
-* (at your option) any later version.
-* Seed 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 Lesser General Public License for more details.
-* You should have received a copy of the GNU Lesser General Public License
-* along with Seed. If not, see <http://www.gnu.org/licenses/>.
-*
-* Copyright (C) Robert Carr 2008 <carrr rpi edu>
-*/
+/*
+ * This file is part of Seed, the GObject Introspection<->Javascript bindings.
+ *
+ * Seed is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of
+ * the License, or (at your option) any later version.
+ * Seed 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 Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Seed. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Copyright (C) Robert Carr 2008 <carrr rpi edu>
+ */
#include "seed-private.h"
#include <sys/mman.h>
Modified: trunk/libseed/seed-engine.c
==============================================================================
--- trunk/libseed/seed-engine.c (original)
+++ trunk/libseed/seed-engine.c Sat Feb 7 08:37:45 2009
@@ -1,21 +1,23 @@
/*
* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
*/
-/* This file is part of Seed.
-* Seed is free software: you can redistribute it and/or modify
-* it under the terms of the GNU Lesser General Public License as
-* published by
-* the Free Software Foundation, either version 3 of the License, or
-* (at your option) any later version.
-* Seed 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 Lesser General Public License for more details.
-* You should have received a copy of the GNU Lesser General Public License
-* along with Seed. If not, see <http://www.gnu.org/licenses/>.
-*
-* Copyright (C) Robert Carr 2008 <carrr rpi edu>
-*/
+
+/*
+ * This file is part of Seed, the GObject Introspection<->Javascript bindings.
+ *
+ * Seed is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of
+ * the License, or (at your option) any later version.
+ * Seed 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 Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Seed. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Copyright (C) Robert Carr 2008 <carrr rpi edu>
+ */
#include "seed-private.h"
Modified: trunk/libseed/seed-exceptions.c
==============================================================================
--- trunk/libseed/seed-exceptions.c (original)
+++ trunk/libseed/seed-exceptions.c Sat Feb 7 08:37:45 2009
@@ -1,22 +1,22 @@
/*
* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
*/
+
/*
- * seed-exceptions.c
- * Copyright (C) Robert Carr 2008 <carrr rpi edu>
- *
- * libseed is free software: you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
+ * This file is part of Seed, the GObject Introspection<->Javascript bindings.
*
- * libseed 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 General Public License for more details.
+ * Seed is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of
+ * the License, or (at your option) any later version.
+ * Seed 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 Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Seed. If not, see <http://www.gnu.org/licenses/>.
*
- * You should have received a copy of the GNU General Public License along
- * with this program. If not, see <http://www.gnu.org/licenses/>.
+ * Copyright (C) Robert Carr 2008 <carrr rpi edu>
*/
#include "seed-private.h"
Modified: trunk/libseed/seed-gtype.c
==============================================================================
--- trunk/libseed/seed-gtype.c (original)
+++ trunk/libseed/seed-gtype.c Sat Feb 7 08:37:45 2009
@@ -1,21 +1,23 @@
/*
* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
*/
-/* This file is part of Seed.
-* Seed is free software: you can redistribute it and/or modify
-* it under the terms of the GNU Lesser General Public License as
-* published by
-* the Free Software Foundation, either version 3 of the License, or
-* (at your option) any later version.
-* Seed 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 Lesser General Public License for more details.
-* You should have received a copy of the GNU Lesser General Public License
-* along with Seed. If not, see <http://www.gnu.org/licenses/>.
-*
-* Copyright (C) Robert Carr 2008 <carrr rpi edu>
-*/
+
+/*
+ * This file is part of Seed, the GObject Introspection<->Javascript bindings.
+ *
+ * Seed is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of
+ * the License, or (at your option) any later version.
+ * Seed 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 Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Seed. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Copyright (C) Robert Carr 2008 <carrr rpi edu>
+ */
#include "seed-private.h"
#include <sys/mman.h>
Modified: trunk/libseed/seed-signals.c
==============================================================================
--- trunk/libseed/seed-signals.c (original)
+++ trunk/libseed/seed-signals.c Sat Feb 7 08:37:45 2009
@@ -1,21 +1,23 @@
/*
* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
*/
-/* This file is part of Seed.
-* Seed is free software: you can redistribute it and/or modify
-* it under the terms of the GNU Lesser General Public License as
-* published by
-* the Free Software Foundation, either version 3 of the License, or
-* (at your option) any later version.
-* Seed 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 Lesser General Public License for more details.
-* You should have received a copy of the GNU Lesser General Public License
-* along with Seed. If not, see <http://www.gnu.org/licenses/>.
-*
-* Copyright (C) Robert Carr 2008 <carrr rpi edu>
-*/
+
+/*
+ * This file is part of Seed, the GObject Introspection<->Javascript bindings.
+ *
+ * Seed is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of
+ * the License, or (at your option) any later version.
+ * Seed 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 Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Seed. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Copyright (C) Robert Carr 2008 <carrr rpi edu>
+ */
#include <string.h>
Modified: trunk/libseed/seed-structs.c
==============================================================================
--- trunk/libseed/seed-structs.c (original)
+++ trunk/libseed/seed-structs.c Sat Feb 7 08:37:45 2009
@@ -1,21 +1,23 @@
/*
* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
*/
-/* This file is part of Seed.
-* Seed is free software: you can redistribute it and/or modify
-* it under the terms of the GNU Lesser General Public License as
-* published by
-* the Free Software Foundation, either version 3 of the License, or
-* (at your option) any later version.
-* Seed 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 Lesser General Public License for more details.
-* You should have received a copy of the GNU Lesser General Public License
-* along with Seed. If not, see <http://www.gnu.org/licenses/>.
-*
-* Copyright (C) Robert Carr 2008 <carrr rpi edu>
-*/
+
+/*
+ * This file is part of Seed, the GObject Introspection<->Javascript bindings.
+ *
+ * Seed is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of
+ * the License, or (at your option) any later version.
+ * Seed 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 Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Seed. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Copyright (C) Robert Carr 2008 <carrr rpi edu>
+ */
#include "seed-private.h"
#include <string.h>
Modified: trunk/libseed/seed-types.c
==============================================================================
--- trunk/libseed/seed-types.c (original)
+++ trunk/libseed/seed-types.c Sat Feb 7 08:37:45 2009
@@ -2,21 +2,21 @@
* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
*/
-/* This file is part of Seed.
- * Seed is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
- * published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * Seed 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 Lesser General Public License for more details.
- * You should have received a copy of the GNU Lesser General Public License
- * along with Seed. If not, see <http://www.gnu.org/licenses/>.
+/*
+ * This file is part of Seed, the GObject Introspection<->Javascript bindings.
*
- * Copyright (C) Robert Carr 2008 <carrr rpi edu>
- * Copyright (C) Tim Horton 2008 <hortont424 gmail com>
+ * Seed is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of
+ * the License, or (at your option) any later version.
+ * Seed 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 Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with Seed. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Copyright (C) Robert Carr 2008 <carrr rpi edu>
*/
#include "seed-private.h"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]