Merging trunk up to revision 41245.

This commit is contained in:
Sergey Sharybin 2011-10-24 14:52:04 +00:00
commit 7320f6a90a
2221 changed files with 2807 additions and 5874 deletions

@ -1,5 +1,4 @@
# -*- mode: cmake; indent-tabs-mode: t; -*- # -*- mode: cmake; indent-tabs-mode: t; -*-
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
@ -216,9 +215,6 @@ mark_as_advanced(WITH_CXX_GUARDEDALLOC)
option(WITH_ASSERT_ABORT "Call abort() when raising an assertion through BLI_assert()" OFF) option(WITH_ASSERT_ABORT "Call abort() when raising an assertion through BLI_assert()" OFF)
mark_as_advanced(WITH_ASSERT_ABORT) mark_as_advanced(WITH_ASSERT_ABORT)
option(WITH_PYTHON_UI_INFO "Allow navigating to UI source from the context menu" OFF)
mark_as_advanced(WITH_PYTHON_UI_INFO)
if(APPLE) if(APPLE)
if(NOT CMAKE_OSX_ARCHITECTURES) if(NOT CMAKE_OSX_ARCHITECTURES)
@ -1333,10 +1329,6 @@ if(WITH_ASSERT_ABORT)
add_definitions(-DWITH_ASSERT_ABORT) add_definitions(-DWITH_ASSERT_ABORT)
endif() endif()
if(WITH_PYTHON_UI_INFO)
add_definitions(-DWITH_PYTHON_UI_INFO)
endif()
# message(STATUS "Using CFLAGS: ${CMAKE_C_FLAGS}") # message(STATUS "Using CFLAGS: ${CMAKE_C_FLAGS}")
# message(STATUS "Using CXXFLAGS: ${CMAKE_CXX_FLAGS}") # message(STATUS "Using CXXFLAGS: ${CMAKE_CXX_FLAGS}")

@ -1,6 +1,6 @@
# -*- mode: gnumakefile; tab-width: 8; indent-tabs-mode: t; -*- # -*- mode: gnumakefile; tab-width: 8; indent-tabs-mode: t; -*-
# vim: tabstop=8 # vim: tabstop=8
# $Id$ # $Id: GNUmakefile 41122 2011-10-19 21:55:27Z campbellbarton $
# #
# ##### BEGIN GPL LICENSE BLOCK ##### # ##### BEGIN GPL LICENSE BLOCK #####
# #

@ -1,5 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
# $Id$ # $Id: SConstruct 41169 2011-10-21 04:23:26Z campbellbarton $
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,6 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,6 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,6 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,6 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,6 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,6 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,5 +1,4 @@
# -*- mode: cmake; indent-tabs-mode: t; -*- # -*- mode: cmake; indent-tabs-mode: t; -*-
# $Id$
# foo_bar.spam --> foo_barMySuffix.spam # foo_bar.spam --> foo_barMySuffix.spam

@ -1,6 +1,5 @@
#!/usr/bin/env python #!/usr/bin/env python
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,4 +1,3 @@
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,4 +1,3 @@
$Id$
Blender CMake build system Blender CMake build system
============================ ============================

@ -1,5 +1,3 @@
$Id$
Internals of Blenders SCons scripts Internals of Blenders SCons scripts
=================================== ===================================

@ -1,4 +1,3 @@
$Id$
Blenders SCons build scripts Blenders SCons build scripts
============================ ============================

@ -1,4 +1,3 @@
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,4 +1,3 @@
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -29,7 +29,7 @@ subject to the following restrictions:
#include <cfloat> #include <cfloat>
#include <float.h> #include <float.h>
/* SVN $Revision$ on $Date$ from http://bullet.googlecode.com*/ /* SVN $Revision: 35500 $ on $Date: 2011-03-12 21:34:17 +0100 (Sat, 12 Mar 2011) $ from http://bullet.googlecode.com*/
#define BT_BULLET_VERSION 278 #define BT_BULLET_VERSION 278
inline int btGetVersion() inline int btGetVersion()

@ -1,4 +1,3 @@
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,4 +1,3 @@
# $Id: CMakeLists.txt 14444 2008-04-16 22:40:48Z hos $
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,4 +1,3 @@
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,4 +1,3 @@
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,4 +1,3 @@
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,4 +1,3 @@
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,5 +1,4 @@
/* /*
* $Id$
* *
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *

@ -1,5 +1,4 @@
/* /*
* $Id$
* *
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *

@ -1,4 +1,3 @@
# $Id$
# ***** BEGIN GPL LICENSE BLOCK ***** # ***** BEGIN GPL LICENSE BLOCK *****
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or

@ -1,4 +1,3 @@
# $Id$
# ***** BEGIN LGPL LICENSE BLOCK ***** # ***** BEGIN LGPL LICENSE BLOCK *****
# #
# Copyright 2009 Jrg Hermann Mller # Copyright 2009 Jrg Hermann Mller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

@ -1,6 +1,4 @@
/* /*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK ***** * ***** BEGIN GPL LICENSE BLOCK *****
* *
* Copyright 2009-2011 Jörg Hermann Müller * Copyright 2009-2011 Jörg Hermann Müller

Some files were not shown because too many files have changed in this diff Show More