gluke Mon Nov 15 14:03:19 2004 EDT
Modified files:
/php-src/ext/mnogosearch php_mnogo.c php_mnogo.h
Log:
# Copyright header & version info changed to PHP 5 standard notice
http://cvs.php.net/diff.php/php-src/ext/mnogosearch/php_mnogo.c?r1=1.93&r2=1.94&ty=u
Index: php-src/ext/mnogosearch/php_mnogo.c
diff -u php-src/ext/mnogosearch/php_mnogo.c:1.93
php-src/ext/mnogosearch/php_mnogo.c:1.94
--- php-src/ext/mnogosearch/php_mnogo.c:1.93 Sun Nov 14 14:29:58 2004
+++ php-src/ext/mnogosearch/php_mnogo.c Mon Nov 15 14:03:19 2004
@@ -1,11 +1,11 @@
/* $Source: /repository/php-src/ext/mnogosearch/php_mnogo.c,v $ */
-/* $Id: php_mnogo.c,v 1.93 2004/11/14 19:29:58 gluke Exp $ */
+/* $Id: php_mnogo.c,v 1.94 2004/11/15 19:03:19 gluke Exp $ */
/*
+----------------------------------------------------------------------+
- | PHP Version 4 |
+ | PHP Version 5 |
+----------------------------------------------------------------------+
- | Copyright (c) 1997-2003 The PHP Group |
+ | Copyright (c) 1997-2004 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.0 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
@@ -20,7 +20,7 @@
| and Ramil Kalimullin <[EMAIL PROTECTED]> |
| Further development by Sergey Kartashoff <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
- */
+*/
#ifdef HAVE_CONFIG_H
#include "config.h"
http://cvs.php.net/diff.php/php-src/ext/mnogosearch/php_mnogo.h?r1=1.25&r2=1.26&ty=u
Index: php-src/ext/mnogosearch/php_mnogo.h
diff -u php-src/ext/mnogosearch/php_mnogo.h:1.25
php-src/ext/mnogosearch/php_mnogo.h:1.26
--- php-src/ext/mnogosearch/php_mnogo.h:1.25 Sat May 8 07:50:36 2004
+++ php-src/ext/mnogosearch/php_mnogo.h Mon Nov 15 14:03:19 2004
@@ -1,113 +1,113 @@
-/* $Source: /repository/php-src/ext/mnogosearch/php_mnogo.h,v $ */
-/* $Id: php_mnogo.h,v 1.25 2004/05/08 11:50:36 gluke Exp $ */
-
-/*
- +----------------------------------------------------------------------+
- | PHP Version 4 |
- +----------------------------------------------------------------------+
- | Copyright (c) 1997-2003 The PHP Group |
- +----------------------------------------------------------------------+
- | This source file is subject to version 2.02 of the PHP license, |
- | that is bundled with this package in the file LICENSE, and is |
- | available at through the world-wide-web at |
- | http://www.php.net/license/2_02.txt. |
- | If you did not receive a copy of the PHP license and are unable to |
- | obtain it through the world-wide-web, please send a note to |
- | [EMAIL PROTECTED] so we can mail you a copy immediately. |
- +----------------------------------------------------------------------+
- | Authors:
|
- | Initial version by Alex Barkov <[EMAIL PROTECTED]> |
- | and Ramil Kalimullin <[EMAIL PROTECTED]> |
- | Further development by Sergey Kartashoff <[EMAIL PROTECTED]> |
- +----------------------------------------------------------------------+
- */
-
-#ifndef _PHP_MNOGO_H
-#define _PHP_MNOGO_H
-
-#if HAVE_MNOGOSEARCH
-
-#include <udm_config.h>
-#include <udmsearch.h>
-
-#if UDM_VERSION_ID >= 30203
-#include <udm_crc32.h>
-#include <udm_store.h>
-#endif
-
-extern zend_module_entry mnogosearch_module_entry;
-#define mnogosearch_module_ptr &mnogosearch_module_entry
-
-#ifdef PHP_WIN32
-#define PHP_MNOGO_API __declspec(dllexport)
-#else
-#define PHP_MNOGO_API
-#endif
-
-#ifdef ZTS
-#include "TSRM.h"
-#endif
-
-/* mnoGoSearch functions */
-DLEXPORT PHP_MINIT_FUNCTION(mnogosearch);
-DLEXPORT PHP_RINIT_FUNCTION(mnogosearch);
-DLEXPORT PHP_MSHUTDOWN_FUNCTION(mnogosearch);
-DLEXPORT PHP_MINFO_FUNCTION(mnogosearch);
-
-DLEXPORT PHP_FUNCTION(udm_api_version);
-#if UDM_VERSION_ID >= 30200
-DLEXPORT PHP_FUNCTION(udm_check_charset);
-#if UDM_VERSION_ID >= 30203
-DLEXPORT PHP_FUNCTION(udm_crc32);
-#endif
-#if UDM_VERSION_ID >= 30204
-DLEXPORT PHP_FUNCTION(udm_parse_query_string);
-DLEXPORT PHP_FUNCTION(udm_make_excerpt);
-DLEXPORT PHP_FUNCTION(udm_set_agent_param_ex);
-DLEXPORT PHP_FUNCTION(udm_get_agent_param_ex);
-DLEXPORT PHP_FUNCTION(udm_get_res_field_ex);
-#endif
-#if UDM_VERSION_ID >= 30211
-DLEXPORT PHP_FUNCTION(udm_hash32);
-DLEXPORT PHP_FUNCTION(udm_alloc_agent_array);
-#endif
-#if UDM_VERSION_ID >= 30216
-DLEXPORT PHP_FUNCTION(udm_store_doc_cgi);
-#endif
-#endif
-
-DLEXPORT PHP_FUNCTION(udm_alloc_agent);
-DLEXPORT PHP_FUNCTION(udm_set_agent_param);
-
-DLEXPORT PHP_FUNCTION(udm_load_ispell_data);
-DLEXPORT PHP_FUNCTION(udm_free_ispell_data);
-
-DLEXPORT PHP_FUNCTION(udm_add_search_limit);
-DLEXPORT PHP_FUNCTION(udm_clear_search_limits);
-
-DLEXPORT PHP_FUNCTION(udm_error);
-DLEXPORT PHP_FUNCTION(udm_errno);
-
-DLEXPORT PHP_FUNCTION(udm_find);
-DLEXPORT PHP_FUNCTION(udm_get_res_field);
-DLEXPORT PHP_FUNCTION(udm_get_res_param);
-
-DLEXPORT PHP_FUNCTION(udm_cat_list);
-DLEXPORT PHP_FUNCTION(udm_cat_path);
-
-DLEXPORT PHP_FUNCTION(udm_free_res);
-DLEXPORT PHP_FUNCTION(udm_free_agent);
-
-#if UDM_VERSION_ID > 30110
-DLEXPORT PHP_FUNCTION(udm_get_doc_count);
-#endif
-
-#else
-
-#define mnogosearch_module_ptr NULL
-
-#endif
-
-#define phpext_mnogosearch_ptr mnogosearch_module_ptr
-
-#endif /* _PHP_MNOGO_H */
+/* $Source: /repository/php-src/ext/mnogosearch/php_mnogo.h,v $ */
+/* $Id: php_mnogo.h,v 1.26 2004/11/15 19:03:19 gluke Exp $ */
+
+/*
+ +----------------------------------------------------------------------+
+ | PHP Version 5 |
+ +----------------------------------------------------------------------+
+ | Copyright (c) 1997-2004 The PHP Group |
+ +----------------------------------------------------------------------+
+ | This source file is subject to version 3.0 of the PHP license, |
+ | that is bundled with this package in the file LICENSE, and is |
+ | available through the world-wide-web at the following url: |
+ | http://www.php.net/license/3_0.txt. |
+ | If you did not receive a copy of the PHP license and are unable to |
+ | obtain it through the world-wide-web, please send a note to |
+ | [EMAIL PROTECTED] so we can mail you a copy immediately. |
+ +----------------------------------------------------------------------+
+ | Authors:
|
+ | Initial version by Alex Barkov <[EMAIL PROTECTED]> |
+ | and Ramil Kalimullin <[EMAIL PROTECTED]> |
+ | Further development by Sergey Kartashoff <[EMAIL PROTECTED]> |
+ +----------------------------------------------------------------------+
+*/
+
+#ifndef _PHP_MNOGO_H
+#define _PHP_MNOGO_H
+
+#if HAVE_MNOGOSEARCH
+
+#include <udm_config.h>
+#include <udmsearch.h>
+
+#if UDM_VERSION_ID >= 30203
+#include <udm_crc32.h>
+#include <udm_store.h>
+#endif
+
+extern zend_module_entry mnogosearch_module_entry;
+#define mnogosearch_module_ptr &mnogosearch_module_entry
+
+#ifdef PHP_WIN32
+#define PHP_MNOGO_API __declspec(dllexport)
+#else
+#define PHP_MNOGO_API
+#endif
+
+#ifdef ZTS
+#include "TSRM.h"
+#endif
+
+/* mnoGoSearch functions */
+DLEXPORT PHP_MINIT_FUNCTION(mnogosearch);
+DLEXPORT PHP_RINIT_FUNCTION(mnogosearch);
+DLEXPORT PHP_MSHUTDOWN_FUNCTION(mnogosearch);
+DLEXPORT PHP_MINFO_FUNCTION(mnogosearch);
+
+DLEXPORT PHP_FUNCTION(udm_api_version);
+#if UDM_VERSION_ID >= 30200
+DLEXPORT PHP_FUNCTION(udm_check_charset);
+#if UDM_VERSION_ID >= 30203
+DLEXPORT PHP_FUNCTION(udm_crc32);
+#endif
+#if UDM_VERSION_ID >= 30204
+DLEXPORT PHP_FUNCTION(udm_parse_query_string);
+DLEXPORT PHP_FUNCTION(udm_make_excerpt);
+DLEXPORT PHP_FUNCTION(udm_set_agent_param_ex);
+DLEXPORT PHP_FUNCTION(udm_get_agent_param_ex);
+DLEXPORT PHP_FUNCTION(udm_get_res_field_ex);
+#endif
+#if UDM_VERSION_ID >= 30211
+DLEXPORT PHP_FUNCTION(udm_hash32);
+DLEXPORT PHP_FUNCTION(udm_alloc_agent_array);
+#endif
+#if UDM_VERSION_ID >= 30216
+DLEXPORT PHP_FUNCTION(udm_store_doc_cgi);
+#endif
+#endif
+
+DLEXPORT PHP_FUNCTION(udm_alloc_agent);
+DLEXPORT PHP_FUNCTION(udm_set_agent_param);
+
+DLEXPORT PHP_FUNCTION(udm_load_ispell_data);
+DLEXPORT PHP_FUNCTION(udm_free_ispell_data);
+
+DLEXPORT PHP_FUNCTION(udm_add_search_limit);
+DLEXPORT PHP_FUNCTION(udm_clear_search_limits);
+
+DLEXPORT PHP_FUNCTION(udm_error);
+DLEXPORT PHP_FUNCTION(udm_errno);
+
+DLEXPORT PHP_FUNCTION(udm_find);
+DLEXPORT PHP_FUNCTION(udm_get_res_field);
+DLEXPORT PHP_FUNCTION(udm_get_res_param);
+
+DLEXPORT PHP_FUNCTION(udm_cat_list);
+DLEXPORT PHP_FUNCTION(udm_cat_path);
+
+DLEXPORT PHP_FUNCTION(udm_free_res);
+DLEXPORT PHP_FUNCTION(udm_free_agent);
+
+#if UDM_VERSION_ID > 30110
+DLEXPORT PHP_FUNCTION(udm_get_doc_count);
+#endif
+
+#else
+
+#define mnogosearch_module_ptr NULL
+
+#endif
+
+#define phpext_mnogosearch_ptr mnogosearch_module_ptr
+
+#endif /* _PHP_MNOGO_H */
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php