Commit: 08633167457d7b3ca2f6d7562e84a9fa538af06e Author: Campbell Barton Date: Wed Sep 30 12:04:09 2020 +1000 Branches: master https://developer.blender.org/rB08633167457d7b3ca2f6d7562e84a9fa538af06e
Cleanup: use angle-brackets for email addresses This is already the most widely used convention. Use this so `make check_spelling_c` will ignore all email addresses. =================================================================== M intern/numaapi/include/numaapi.h M intern/numaapi/source/build_config.h M intern/numaapi/source/numaapi.c M intern/numaapi/source/numaapi_linux.c M intern/numaapi/source/numaapi_stub.c M intern/numaapi/source/numaapi_win32.c M source/blender/blenkernel/intern/seqeffects.c M source/blender/blenlib/intern/list_sort_impl.h M source/blender/compositor/operations/COM_AntiAliasOperation.cpp M source/blender/draw/intern/shaders/common_smaa_lib.glsl M source/blender/draw/intern/smaa_textures.h M source/blender/imbuf/intern/cineon/logmemfile.c M source/blender/imbuf/intern/cineon/logmemfile.h =================================================================== diff --git a/intern/numaapi/include/numaapi.h b/intern/numaapi/include/numaapi.h index bddb51448f8..ce7139a9cfb 100644 --- a/intern/numaapi/include/numaapi.h +++ b/intern/numaapi/include/numaapi.h @@ -18,7 +18,7 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. // -// Author: Sergey Sharybin ([email protected]) +// Author: Sergey Sharybin <[email protected]> #ifndef __LIBNUMAAPI_H__ #define __LIBNUMAAPI_H__ diff --git a/intern/numaapi/source/build_config.h b/intern/numaapi/source/build_config.h index 8e351f1c718..fdd6ff704c3 100644 --- a/intern/numaapi/source/build_config.h +++ b/intern/numaapi/source/build_config.h @@ -18,7 +18,7 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. // -// Author: Sergey Sharybin ([email protected]) +// Author: Sergey Sharybin <[email protected]> #ifndef __BUILD_CONFIG_H__ #define __BUILD_CONFIG_H__ diff --git a/intern/numaapi/source/numaapi.c b/intern/numaapi/source/numaapi.c index 11b14d03451..c482fc556bb 100644 --- a/intern/numaapi/source/numaapi.c +++ b/intern/numaapi/source/numaapi.c @@ -18,7 +18,7 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. // -// Author: Sergey Sharybin ([email protected]) +// Author: Sergey Sharybin <[email protected]> #include "numaapi.h" diff --git a/intern/numaapi/source/numaapi_linux.c b/intern/numaapi/source/numaapi_linux.c index 9750f1c17df..853aeeb34ba 100644 --- a/intern/numaapi/source/numaapi_linux.c +++ b/intern/numaapi/source/numaapi_linux.c @@ -18,7 +18,7 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. // -// Author: Sergey Sharybin ([email protected]) +// Author: Sergey Sharybin <[email protected]> #include "build_config.h" diff --git a/intern/numaapi/source/numaapi_stub.c b/intern/numaapi/source/numaapi_stub.c index 6ac41136c8f..a364eb9135a 100644 --- a/intern/numaapi/source/numaapi_stub.c +++ b/intern/numaapi/source/numaapi_stub.c @@ -18,7 +18,7 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. // -// Author: Sergey Sharybin ([email protected]) +// Author: Sergey Sharybin <[email protected]> #include "numaapi.h" diff --git a/intern/numaapi/source/numaapi_win32.c b/intern/numaapi/source/numaapi_win32.c index f205968b6b4..93064ff48b7 100644 --- a/intern/numaapi/source/numaapi_win32.c +++ b/intern/numaapi/source/numaapi_win32.c @@ -18,7 +18,7 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. // -// Author: Sergey Sharybin ([email protected]) +// Author: Sergey Sharybin <[email protected]> #include "build_config.h" diff --git a/source/blender/blenkernel/intern/seqeffects.c b/source/blender/blenkernel/intern/seqeffects.c index aba9b255f40..6bf4b44ab8e 100644 --- a/source/blender/blenkernel/intern/seqeffects.c +++ b/source/blender/blenkernel/intern/seqeffects.c @@ -2531,7 +2531,7 @@ static void RVBlurBitmap2_float(float *map, int width, int height, float blur, i /* Apparently we're calculating a bell curve based on the standard deviation (or radius) * This code is based on an example posted to comp.graphics.algorithms by - * Blancmange ([email protected]) + * Blancmange <[email protected]> */ k = -1.0f / (2.0f * (float)M_PI * blur * blur); diff --git a/source/blender/blenlib/intern/list_sort_impl.h b/source/blender/blenlib/intern/list_sort_impl.h index 458ace3a712..46738803ee8 100644 --- a/source/blender/blenlib/intern/list_sort_impl.h +++ b/source/blender/blenlib/intern/list_sort_impl.h @@ -111,7 +111,7 @@ typedef int (*CompareFn)( * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * Author: - * Raja R Harinath ([email protected]) + * Raja R Harinath <[email protected]> */ /** diff --git a/source/blender/compositor/operations/COM_AntiAliasOperation.cpp b/source/blender/compositor/operations/COM_AntiAliasOperation.cpp index 2c762323104..3d5e53feb39 100644 --- a/source/blender/compositor/operations/COM_AntiAliasOperation.cpp +++ b/source/blender/compositor/operations/COM_AntiAliasOperation.cpp @@ -26,7 +26,7 @@ /* An implementation of the Scale3X edge-extrapolation algorithm. * - * Code from GIMP plugin, based on code from Adam D. Moss ([email protected]) + * Code from GIMP plugin, based on code from Adam D. Moss <[email protected]> * licensed by the MIT license. */ static int extrapolate9(float *E0, diff --git a/source/blender/draw/intern/shaders/common_smaa_lib.glsl b/source/blender/draw/intern/shaders/common_smaa_lib.glsl index a3f592ba5dd..bd6e8436022 100644 --- a/source/blender/draw/intern/shaders/common_smaa_lib.glsl +++ b/source/blender/draw/intern/shaders/common_smaa_lib.glsl @@ -1,9 +1,9 @@ /** - * Copyright (C) 2013 Jorge Jimenez ([email protected]) - * Copyright (C) 2013 Jose I. Echevarria ([email protected]) - * Copyright (C) 2013 Belen Masia ([email protected]) - * Copyright (C) 2013 Fernando Navarro ([email protected]) - * Copyright (C) 2013 Diego Gutierrez ([email protected]) + * Copyright (C) 2013 Jorge Jimenez <[email protected]> + * Copyright (C) 2013 Jose I. Echevarria <[email protected]> + * Copyright (C) 2013 Belen Masia <[email protected]> + * Copyright (C) 2013 Fernando Navarro <[email protected]> + * Copyright (C) 2013 Diego Gutierrez <[email protected]> * * Permission is hereby granted, free of charge, to any person obtaining a copy * this software and associated documentation files (the "Software"), to deal in diff --git a/source/blender/draw/intern/smaa_textures.h b/source/blender/draw/intern/smaa_textures.h index fcf0ced1eed..8f150c6cd7d 100644 --- a/source/blender/draw/intern/smaa_textures.h +++ b/source/blender/draw/intern/smaa_textures.h @@ -1,9 +1,9 @@ /** - * Copyright (C) 2013 Jorge Jimenez ([email protected]) - * Copyright (C) 2013 Jose I. Echevarria ([email protected]) - * Copyright (C) 2013 Belen Masia ([email protected]) - * Copyright (C) 2013 Fernando Navarro ([email protected]) - * Copyright (C) 2013 Diego Gutierrez ([email protected]) + * Copyright (C) 2013 Jorge Jimenez <[email protected]> + * Copyright (C) 2013 Jose I. Echevarria <[email protected]> + * Copyright (C) 2013 Belen Masia <[email protected]> + * Copyright (C) 2013 Fernando Navarro <[email protected]> + * Copyright (C) 2013 Diego Gutierrez <[email protected]> * * Permission is hereby granted, free of charge, to any person obtaining a copy * this software and associated documentation files (the "Software"), to deal in diff --git a/source/blender/imbuf/intern/cineon/logmemfile.c b/source/blender/imbuf/intern/cineon/logmemfile.c index aca84df91ca..b01710ba962 100644 --- a/source/blender/imbuf/intern/cineon/logmemfile.c +++ b/source/blender/imbuf/intern/cineon/logmemfile.c @@ -13,7 +13,7 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - * Copyright 2006 Joseph Eagar ([email protected]) + * Copyright 2006 Joseph Eagar <[email protected]> */ /** \file diff --git a/source/blender/imbuf/intern/cineon/logmemfile.h b/source/blender/imbuf/intern/cineon/logmemfile.h index fd67011ef30..db4cfc5785b 100644 --- a/source/blender/imbuf/intern/cineon/logmemfile.h +++ b/source/blender/imbuf/intern/cineon/logmemfile.h @@ -13,7 +13,7 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - * Copyright 2006 Joseph Eagar ([email protected]) + * Copyright 2006 Joseph Eagar <[email protected]> */ /** \file _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
