Return-Path: X-Original-To: apmail-manifoldcf-dev-archive@www.apache.org Delivered-To: apmail-manifoldcf-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4C65B11C8E for ; Wed, 17 Sep 2014 12:33:34 +0000 (UTC) Received: (qmail 96534 invoked by uid 500); 17 Sep 2014 12:33:34 -0000 Delivered-To: apmail-manifoldcf-dev-archive@manifoldcf.apache.org Received: (qmail 96482 invoked by uid 500); 17 Sep 2014 12:33:34 -0000 Mailing-List: contact dev-help@manifoldcf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@manifoldcf.apache.org Delivered-To: mailing list dev@manifoldcf.apache.org Received: (qmail 96470 invoked by uid 99); 17 Sep 2014 12:33:34 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Sep 2014 12:33:34 +0000 Date: Wed, 17 Sep 2014 12:33:34 +0000 (UTC) From: "Karl Wright (JIRA)" To: dev@manifoldcf.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Assigned] (CONNECTORS-956) Field names are URL encoded MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CONNECTORS-956?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Wright reassigned CONNECTORS-956: -------------------------------------- Assignee: Karl Wright > Field names are URL encoded > --------------------------- > > Key: CONNECTORS-956 > URL: https://issues.apache.org/jira/browse/CONNECTORS-956 > Project: ManifoldCF > Issue Type: Improvement > Components: Lucene/SOLR connector > Affects Versions: ManifoldCF 1.6.1 > Reporter: Piergiorgio Lucidi > Assignee: Karl Wright > Original Estimate: 24h > Remaining Estimate: 24h > > The field names provided by some repositories such as Alfresco are based on an URI similar to: > {code} > {http://www.alfresco.org/model/system}store_identifier > {code} > But in Solr we found the following field name: > {code} > http_3a_2f_2fwww_alfresco_org_2fmodel_2fsystem_2f1_0_7dstore_identifier > {code} > The code involved in the Solr connector is the following: > {code} > protected static String preEncode(String fieldName) > { > return URLEncoder.encode(fieldName); > } > {code} > Probably we should try to solve it removing the preEncode invocation. -- This message was sent by Atlassian JIRA (v6.3.4#6332)