From dev-return-2512-apmail-couchdb-dev-archive=couchdb.apache.org@couchdb.apache.org Wed Feb 11 11:03:22 2009 Return-Path: Delivered-To: apmail-couchdb-dev-archive@www.apache.org Received: (qmail 88044 invoked from network); 11 Feb 2009 11:03:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Feb 2009 11:03:22 -0000 Received: (qmail 26112 invoked by uid 500); 11 Feb 2009 11:03:21 -0000 Delivered-To: apmail-couchdb-dev-archive@couchdb.apache.org Received: (qmail 26069 invoked by uid 500); 11 Feb 2009 11:03:20 -0000 Mailing-List: contact dev-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list dev@couchdb.apache.org Received: (qmail 26057 invoked by uid 99); 11 Feb 2009 11:03:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 03:03:20 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Feb 2009 11:03:20 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id AF11E234C48B for ; Wed, 11 Feb 2009 03:02:59 -0800 (PST) Message-ID: <537149190.1234350179701.JavaMail.jira@brutus> Date: Wed, 11 Feb 2009 03:02:59 -0800 (PST) From: "Kim Shrier (JIRA)" To: dev@couchdb.apache.org Subject: [jira] Updated: (COUCHDB-245) Couch uses the erlang stdlib module regexp, which is deprecated and set to be removed. It should use the module re instead. In-Reply-To: <611341680.1234325460277.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/COUCHDB-245?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Kim Shrier updated COUCHDB-245: ------------------------------- Attachment: couch_re_patch This file contains a patch to replace the use of the regexp module with the re module. It modifies files couch_config.erl, couch_config_writer.erl, couch_log.erl, couch_httpd.erl, couch_httpd_db.erl, and couch_server.erl > Couch uses the erlang stdlib module regexp, which is deprecated and set to be removed. It should use the module re instead. > --------------------------------------------------------------------------------------------------------------------------- > > Key: COUCHDB-245 > URL: https://issues.apache.org/jira/browse/COUCHDB-245 > Project: CouchDB > Issue Type: Bug > Components: Infrastructure > Affects Versions: 0.7.2, 0.8, 0.8.1, 0.9 > Environment: regexp is set to be removed from stdlib when R15 is released. > Reporter: alisdair sullivan > Attachments: couch_re_patch > > Original Estimate: 2h > Remaining Estimate: 2h > > Couch uses the erlang stdlib module regexp, which is deprecated and set to be removed. It should use the module re instead. re is not a drop in replacement for regexp, it operates on and returns binary strings instead of native strings. > Affects files couch_config.erl, couch_config_writer.erl, couch_httpd.erl, couch_httpd_server.erl, couch_log.erl and couch_server.erl. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.