summaryrefslogtreecommitdiff
path: root/ext/dom
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-07-03 02:52:16 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2018-07-25 00:53:25 +0200
commit8d3f8ca12a0b00f2a74a27424790222536235502 (patch)
treef35ddbdb8b5bc9259712d0275cb461ab7de9b7b9 /ext/dom
parentdcd6a6ff367a91f8c03303a4dc2e3c8b17d692ed (diff)
downloadphp-git-8d3f8ca12a0b00f2a74a27424790222536235502.tar.gz
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.
Diffstat (limited to 'ext/dom')
-rw-r--r--ext/dom/attr.c2
-rw-r--r--ext/dom/cdatasection.c2
-rw-r--r--ext/dom/characterdata.c2
-rw-r--r--ext/dom/comment.c2
-rw-r--r--ext/dom/config.m44
-rw-r--r--ext/dom/config.w321
-rw-r--r--ext/dom/document.c2
-rw-r--r--ext/dom/documentfragment.c2
-rw-r--r--ext/dom/documenttype.c2
-rw-r--r--ext/dom/dom_ce.h1
-rw-r--r--ext/dom/dom_fe.h1
-rw-r--r--ext/dom/dom_iterators.c2
-rw-r--r--ext/dom/dom_properties.h1
-rw-r--r--ext/dom/domconfiguration.c2
-rw-r--r--ext/dom/domerror.c2
-rw-r--r--ext/dom/domerrorhandler.c2
-rw-r--r--ext/dom/domexception.c2
-rw-r--r--ext/dom/domimplementation.c2
-rw-r--r--ext/dom/domimplementationlist.c2
-rw-r--r--ext/dom/domimplementationsource.c2
-rw-r--r--ext/dom/domlocator.c2
-rw-r--r--ext/dom/domstringlist.c2
-rw-r--r--ext/dom/element.c2
-rw-r--r--ext/dom/entity.c2
-rw-r--r--ext/dom/entityreference.c2
-rw-r--r--ext/dom/namednodemap.c2
-rw-r--r--ext/dom/namelist.c2
-rw-r--r--ext/dom/node.c2
-rw-r--r--ext/dom/nodelist.c2
-rw-r--r--ext/dom/notation.c2
-rw-r--r--ext/dom/php_dom.c2
-rw-r--r--ext/dom/php_dom.h2
-rw-r--r--ext/dom/processinginstruction.c2
-rw-r--r--ext/dom/string_extend.c2
-rw-r--r--ext/dom/text.c2
-rw-r--r--ext/dom/typeinfo.c2
-rw-r--r--ext/dom/userdatahandler.c2
-rw-r--r--ext/dom/xml_common.h2
-rw-r--r--ext/dom/xpath.c2
39 files changed, 1 insertions, 75 deletions
diff --git a/ext/dom/attr.c b/ext/dom/attr.c
index 1737a6018c..dfe9218b4f 100644
--- a/ext/dom/attr.c
+++ b/ext/dom/attr.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/cdatasection.c b/ext/dom/cdatasection.c
index a7b0d7a2f0..9e7c6c6ee1 100644
--- a/ext/dom/cdatasection.c
+++ b/ext/dom/cdatasection.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/characterdata.c b/ext/dom/characterdata.c
index 3af8968dfc..8965202c15 100644
--- a/ext/dom/characterdata.c
+++ b/ext/dom/characterdata.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/comment.c b/ext/dom/comment.c
index a807e5f67e..924d713b97 100644
--- a/ext/dom/comment.c
+++ b/ext/dom/comment.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/config.m4 b/ext/dom/config.m4
index 5ea62ad24c..3e28cb3570 100644
--- a/ext/dom/config.m4
+++ b/ext/dom/config.m4
@@ -1,6 +1,4 @@
-dnl
-dnl $Id$
-dnl
+dnl config.m4 for extension dom
PHP_ARG_ENABLE(dom, whether to enable DOM support,
[ --disable-dom Disable DOM support], yes)
diff --git a/ext/dom/config.w32 b/ext/dom/config.w32
index 14a6c4676b..1ac3c614a5 100644
--- a/ext/dom/config.w32
+++ b/ext/dom/config.w32
@@ -1,4 +1,3 @@
-// $Id$
// vim:ft=javascript
ARG_WITH("dom", "DOM support", "yes");
diff --git a/ext/dom/document.c b/ext/dom/document.c
index b97ed59cec..6bbc0500b9 100644
--- a/ext/dom/document.c
+++ b/ext/dom/document.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/documentfragment.c b/ext/dom/documentfragment.c
index 0f9c711e2d..0c289565a2 100644
--- a/ext/dom/documentfragment.c
+++ b/ext/dom/documentfragment.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/documenttype.c b/ext/dom/documenttype.c
index a93679f236..26bbd762d7 100644
--- a/ext/dom/documenttype.c
+++ b/ext/dom/documenttype.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/dom_ce.h b/ext/dom/dom_ce.h
index ab1f045117..282b4e5ae7 100644
--- a/ext/dom/dom_ce.h
+++ b/ext/dom/dom_ce.h
@@ -17,7 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
#ifndef DOM_CE_H
#define DOM_CE_H
diff --git a/ext/dom/dom_fe.h b/ext/dom/dom_fe.h
index c7bb9fecb0..63e7994a4d 100644
--- a/ext/dom/dom_fe.h
+++ b/ext/dom/dom_fe.h
@@ -17,7 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
#ifndef DOM_FE_H
#define DOM_FE_H
diff --git a/ext/dom/dom_iterators.c b/ext/dom/dom_iterators.c
index 4b94483886..d1488ded6b 100644
--- a/ext/dom/dom_iterators.c
+++ b/ext/dom/dom_iterators.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/dom_properties.h b/ext/dom/dom_properties.h
index e0c5dc648c..caf52f80e8 100644
--- a/ext/dom/dom_properties.h
+++ b/ext/dom/dom_properties.h
@@ -17,7 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
#ifndef DOM_PROPERTIES_H
#define DOM_PROPERTIES_H
diff --git a/ext/dom/domconfiguration.c b/ext/dom/domconfiguration.c
index f781c86a87..aec50632e3 100644
--- a/ext/dom/domconfiguration.c
+++ b/ext/dom/domconfiguration.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/domerror.c b/ext/dom/domerror.c
index 50c2e4be7c..d822915e65 100644
--- a/ext/dom/domerror.c
+++ b/ext/dom/domerror.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/domerrorhandler.c b/ext/dom/domerrorhandler.c
index 8be39474f4..cbdf770a68 100644
--- a/ext/dom/domerrorhandler.c
+++ b/ext/dom/domerrorhandler.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/domexception.c b/ext/dom/domexception.c
index f19810710e..4676c39f39 100644
--- a/ext/dom/domexception.c
+++ b/ext/dom/domexception.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/domimplementation.c b/ext/dom/domimplementation.c
index d3bed97033..c6629c85e9 100644
--- a/ext/dom/domimplementation.c
+++ b/ext/dom/domimplementation.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/domimplementationlist.c b/ext/dom/domimplementationlist.c
index 2f45e183ba..aa9a07286f 100644
--- a/ext/dom/domimplementationlist.c
+++ b/ext/dom/domimplementationlist.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/domimplementationsource.c b/ext/dom/domimplementationsource.c
index 2d7b01eb62..27889c921e 100644
--- a/ext/dom/domimplementationsource.c
+++ b/ext/dom/domimplementationsource.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/domlocator.c b/ext/dom/domlocator.c
index 90e80847e1..e85d67f2ab 100644
--- a/ext/dom/domlocator.c
+++ b/ext/dom/domlocator.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/domstringlist.c b/ext/dom/domstringlist.c
index 7ab683f466..7293dd3176 100644
--- a/ext/dom/domstringlist.c
+++ b/ext/dom/domstringlist.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/element.c b/ext/dom/element.c
index 0a3de89121..19ecfed7d9 100644
--- a/ext/dom/element.c
+++ b/ext/dom/element.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/entity.c b/ext/dom/entity.c
index 8edcef0333..4caf4abeab 100644
--- a/ext/dom/entity.c
+++ b/ext/dom/entity.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/entityreference.c b/ext/dom/entityreference.c
index 9d9b1eed79..80f3daa223 100644
--- a/ext/dom/entityreference.c
+++ b/ext/dom/entityreference.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/namednodemap.c b/ext/dom/namednodemap.c
index a0a2c653c2..19a15730a9 100644
--- a/ext/dom/namednodemap.c
+++ b/ext/dom/namednodemap.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/namelist.c b/ext/dom/namelist.c
index 0489c0445f..4ef9062eb8 100644
--- a/ext/dom/namelist.c
+++ b/ext/dom/namelist.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/node.c b/ext/dom/node.c
index 19993d0ec9..0183174148 100644
--- a/ext/dom/node.c
+++ b/ext/dom/node.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/nodelist.c b/ext/dom/nodelist.c
index 1230975af7..6cb15150c8 100644
--- a/ext/dom/nodelist.c
+++ b/ext/dom/nodelist.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/notation.c b/ext/dom/notation.c
index dde7e641d9..7c65e43911 100644
--- a/ext/dom/notation.c
+++ b/ext/dom/notation.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/php_dom.c b/ext/dom/php_dom.c
index 1377c18a12..72ae3c3ffe 100644
--- a/ext/dom/php_dom.c
+++ b/ext/dom/php_dom.c
@@ -18,8 +18,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/php_dom.h b/ext/dom/php_dom.h
index 4bebf2fef3..41a2bf71ce 100644
--- a/ext/dom/php_dom.h
+++ b/ext/dom/php_dom.h
@@ -18,8 +18,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifndef PHP_DOM_H
#define PHP_DOM_H
diff --git a/ext/dom/processinginstruction.c b/ext/dom/processinginstruction.c
index f1566fc1bc..999ac61fb9 100644
--- a/ext/dom/processinginstruction.c
+++ b/ext/dom/processinginstruction.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/string_extend.c b/ext/dom/string_extend.c
index bf5a04d3dd..81d3a96c11 100644
--- a/ext/dom/string_extend.c
+++ b/ext/dom/string_extend.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/text.c b/ext/dom/text.c
index 57688e8bce..6e2773356f 100644
--- a/ext/dom/text.c
+++ b/ext/dom/text.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/typeinfo.c b/ext/dom/typeinfo.c
index bf902abb87..977d6d8547 100644
--- a/ext/dom/typeinfo.c
+++ b/ext/dom/typeinfo.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/userdatahandler.c b/ext/dom/userdatahandler.c
index b83b275fb2..d9702ab941 100644
--- a/ext/dom/userdatahandler.c
+++ b/ext/dom/userdatahandler.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/ext/dom/xml_common.h b/ext/dom/xml_common.h
index a3ecd3e496..35536a2bf5 100644
--- a/ext/dom/xml_common.h
+++ b/ext/dom/xml_common.h
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifndef PHP_XML_COMMON_H
#define PHP_XML_COMMON_H
diff --git a/ext/dom/xpath.c b/ext/dom/xpath.c
index d6c410b17d..513fad585b 100644
--- a/ext/dom/xpath.c
+++ b/ext/dom/xpath.c
@@ -17,8 +17,6 @@
+----------------------------------------------------------------------+
*/
-/* $Id$ */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif