Skip to content

Commit 8d3f8ca

Browse files
petkcmb69
authored andcommitted
Remove unused Git attributes ident
The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
1 parent dcd6a6f commit 8d3f8ca

File tree

926 files changed

+103
-1704
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

926 files changed

+103
-1704
lines changed

README.SELF-CONTAINED-EXTENSIONS

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
$Id$
2-
=============================================================================
3-
41
HOW TO CREATE A SELF-CONTAINED PHP EXTENSION
52

63
A self-contained extension can be distributed independently of

README.STREAMS

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
An Overview of the PHP Streams abstraction
22
==========================================
3-
$Id$
43

54
WARNING: some prototypes in this file are out of date.
65
The information contained here is being integrated into

TSRM/build.mk

-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
# make -f build.mk
55
#
66
# Written by Sascha Schumann
7-
#
8-
# $Id$
9-
107

118
LT_TARGETS = ltmain.sh ltconfig
129

TSRM/config.w32

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// vim:ft=javascript
2-
// $Id$
32

43
ADD_SOURCES("TSRM", "TSRM.c tsrm_strtok_r.c tsrm_win32.c");
54
ADD_FLAG("CFLAGS_BD_TSRM", "/D ZEND_ENABLE_STATIC_TSRMLS_CACHE=1");

TSRM/configure.ac

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
dnl $Id$
21
dnl
32
dnl Minimalistic configure.ac for TSRM.
43
dnl

TSRM/tsrm_win32.c

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
+----------------------------------------------------------------------+
1717
*/
1818

19-
/* $Id$ */
20-
2119
#include <stdio.h>
2220
#include <fcntl.h>
2321
#include <io.h>

TSRM/tsrm_win32.h

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
+----------------------------------------------------------------------+
1717
*/
1818

19-
/* $Id$ */
20-
2119
#ifndef TSRM_WIN32_H
2220
#define TSRM_WIN32_H
2321

Zend/Zend.m4

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
dnl
2-
dnl $Id$
3-
dnl
42
dnl This file contains Zend specific autoconf functions.
53
dnl
64

Zend/acinclude.m4

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
dnl $Id$
2-
dnl
31
dnl This file contains local autoconf functions.
42

53
AC_DEFUN([LIBZEND_BISON_CHECK],[

Zend/build.mk

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
# make -f build.mk
55
#
66
# Written by Sascha Schumann
7-
#
8-
# $Id$
97

108

119
LT_TARGETS = ltmain.sh ltconfig

Zend/configure.ac

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
dnl $Id$
21
dnl Process this file with autoconf to produce a configure script.
32

43
AC_INIT(zend.c)

Zend/header

-2
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,3 @@
1515
| Authors: |
1616
+----------------------------------------------------------------------+
1717
*/
18-
19-
/* $Id$ */

Zend/tests/zend_operators.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
--TEST--
22
Operator precedence
33
--FILE--
4-
<?php /* $Id$ */
4+
<?php
55

66
var_dump((object)1 instanceof stdClass);
77
var_dump(! (object)1 instanceof Exception);

Zend/zend.c

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#include "zend.h"
2321
#include "zend_extensions.h"
2422
#include "zend_modules.h"

Zend/zend.h

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#ifndef ZEND_H
2321
#define ZEND_H
2422

Zend/zend_API.c

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
+----------------------------------------------------------------------+
2020
*/
2121

22-
/* $Id$ */
23-
2422
#include "zend.h"
2523
#include "zend_execute.h"
2624
#include "zend_API.h"

Zend/zend_API.h

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
+----------------------------------------------------------------------+
2020
*/
2121

22-
/* $Id$ */
23-
2422
#ifndef ZEND_API_H
2523
#define ZEND_API_H
2624

Zend/zend_alloc.c

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
+----------------------------------------------------------------------+
1919
*/
2020

21-
/* $Id$ */
22-
2321
/*
2422
* zend_alloc is designed to be a modern CPU cache friendly memory manager
2523
* for PHP. Most ideas are taken from jemalloc and tcmalloc implementations.

Zend/zend_alloc.h

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
+----------------------------------------------------------------------+
1919
*/
2020

21-
/* $Id$ */
22-
2321
#ifndef ZEND_ALLOC_H
2422
#define ZEND_ALLOC_H
2523

Zend/zend_ast.c

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#include "zend_ast.h"
2321
#include "zend_API.h"
2422
#include "zend_operators.h"

Zend/zend_ast.h

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
+----------------------------------------------------------------------+
1919
*/
2020

21-
/* $Id$ */
22-
2321
#ifndef ZEND_AST_H
2422
#define ZEND_AST_H
2523

Zend/zend_builtin_functions.c

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#include "zend.h"
2321
#include "zend_API.h"
2422
#include "zend_gc.h"

Zend/zend_builtin_functions.h

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#ifndef ZEND_BUILTIN_FUNCTIONS_H
2321
#define ZEND_BUILTIN_FUNCTIONS_H
2422

Zend/zend_closures.c

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
+----------------------------------------------------------------------+
1919
*/
2020

21-
/* $Id$ */
22-
2321
#include "zend.h"
2422
#include "zend_API.h"
2523
#include "zend_closures.h"

Zend/zend_closures.h

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#ifndef ZEND_CLOSURES_H
2321
#define ZEND_CLOSURES_H
2422

Zend/zend_compile.c

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
+----------------------------------------------------------------------+
1919
*/
2020

21-
/* $Id$ */
22-
2321
#include <zend_language_parser.h>
2422
#include "zend.h"
2523
#include "zend_compile.h"

Zend/zend_compile.h

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#ifndef ZEND_COMPILE_H
2321
#define ZEND_COMPILE_H
2422

Zend/zend_config.nw.h

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#ifndef ZEND_CONFIG_NW_H
2321
#define ZEND_CONFIG_NW_H
2422

Zend/zend_config.w32.h

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#ifndef ZEND_CONFIG_W32_H
2321
#define ZEND_CONFIG_W32_H
2422

Zend/zend_constants.c

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#include "zend.h"
2321
#include "zend_constants.h"
2422
#include "zend_exceptions.h"

Zend/zend_constants.h

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#ifndef ZEND_CONSTANTS_H
2321
#define ZEND_CONSTANTS_H
2422

Zend/zend_default_classes.c

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#include "zend.h"
2321
#include "zend_API.h"
2422
#include "zend_builtin_functions.h"

Zend/zend_errors.h

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#ifndef ZEND_ERRORS_H
2321
#define ZEND_ERRORS_H
2422

Zend/zend_exceptions.c

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
+----------------------------------------------------------------------+
2020
*/
2121

22-
/* $Id$ */
23-
2422
#include "zend.h"
2523
#include "zend_API.h"
2624
#include "zend_builtin_functions.h"

Zend/zend_exceptions.h

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
+----------------------------------------------------------------------+
2020
*/
2121

22-
/* $Id$ */
23-
2422
#ifndef ZEND_EXCEPTIONS_H
2523
#define ZEND_EXCEPTIONS_H
2624

Zend/zend_execute.c

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
+----------------------------------------------------------------------+
1919
*/
2020

21-
/* $Id$ */
22-
2321
#define ZEND_INTENSIVE_DEBUGGING 0
2422

2523
#include <stdio.h>

Zend/zend_execute.h

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
+----------------------------------------------------------------------+
1919
*/
2020

21-
/* $Id$ */
22-
2321
#ifndef ZEND_EXECUTE_H
2422
#define ZEND_EXECUTE_H
2523

Zend/zend_execute_API.c

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
+----------------------------------------------------------------------+
1919
*/
2020

21-
/* $Id$ */
22-
2321
#include <stdio.h>
2422
#include <signal.h>
2523

Zend/zend_extensions.c

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#include "zend_extensions.h"
2321

2422
ZEND_API zend_llist zend_extensions;

Zend/zend_extensions.h

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#ifndef ZEND_EXTENSIONS_H
2321
#define ZEND_EXTENSIONS_H
2422

Zend/zend_float.c

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
+----------------------------------------------------------------------+
1717
*/
1818

19-
/* $Id$ */
20-
2119
#include "zend.h"
2220
#include "zend_compile.h"
2321
#include "zend_float.h"

Zend/zend_float.h

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
+----------------------------------------------------------------------+
1717
*/
1818

19-
/* $Id$ */
20-
2119
#ifndef ZEND_FLOAT_H
2220
#define ZEND_FLOAT_H
2321

Zend/zend_gc.c

-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
22-
2320
/**
2421
* zend_gc_collect_cycles
2522
* ======================

Zend/zend_gc.h

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#ifndef ZEND_GC_H
2321
#define ZEND_GC_H
2422

Zend/zend_generators.c

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#include "zend.h"
2321
#include "zend_API.h"
2422
#include "zend_interfaces.h"

Zend/zend_generators.h

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
/* $Id$ */
21-
2220
#ifndef ZEND_GENERATORS_H
2321
#define ZEND_GENERATORS_H
2422

0 commit comments

Comments
 (0)