[jira] [Updated] (CONNECTORS-347) MySQL HopCount test sometimes fails

2012-04-19 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-347?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-347:
---

Affects Version/s: ManifoldCF 0.6
Fix Version/s: (was: ManifoldCF next)
   ManifoldCF 0.6

 MySQL HopCount test sometimes fails
 ---

 Key: CONNECTORS-347
 URL: https://issues.apache.org/jira/browse/CONNECTORS-347
 Project: ManifoldCF
  Issue Type: Bug
  Components: Framework core
Affects Versions: ManifoldCF 0.5, ManifoldCF 0.6
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.6


 The HopcountMySQLIT test sometimes fails complaining that it is expecting to 
 see 6 documents but only sees 4.
 {code}
 [junit] org.apache.manifoldcf.core.interfaces.ManifoldCFException: Wrong 
 number of documents processed - expected 6, saw 4
 [junit] at 
 org.apache.manifoldcf.filesystem_tests.HopcountMySQLIT.hopcountCheck(HopcountMySQLIT.java:152)
 {code}
 This does not happen on every run.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-435) Replace incorrect Messages.getString() calls in the main UI with correct ones.

2012-04-17 Thread Updated

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-435?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erlend Garåsen updated CONNECTORS-435:
--

Resolution: Fixed
Status: Resolved  (was: Patch Available)

r1327112.

 Replace incorrect Messages.getString() calls in the main UI with correct ones.
 --

 Key: CONNECTORS-435
 URL: https://issues.apache.org/jira/browse/CONNECTORS-435
 Project: ManifoldCF
  Issue Type: Task
  Components: Framework core
Affects Versions: ManifoldCF 0.4
Reporter: Erlend Garåsen
Assignee: Erlend Garåsen
 Fix For: ManifoldCF 0.6

 Attachments: CONNECTORS-435.patch


 The Messages.getString() calls in the main UI are incorrect much of the time. 
 They should usually be replaced by one of:
 {code}
 Messages.getBodyJavascriptString()
 Messages.getAttributeJavascriptString()
 Messages.getBodyString()
 Messages.getAttributeString()
 {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-460) ManifoldCF authority service doesn't handle multi-domain environments

2012-04-11 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-460?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-460:
---

Affects Version/s: ManifoldCF 0.6
   ManifoldCF 0.5
   ManifoldCF 0.1
   ManifoldCF 0.2
   ManifoldCF 0.3
   ManifoldCF 0.4
Fix Version/s: ManifoldCF 0.6
 Assignee: Karl Wright

 ManifoldCF authority service doesn't handle multi-domain environments
 -

 Key: CONNECTORS-460
 URL: https://issues.apache.org/jira/browse/CONNECTORS-460
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Active Directory authority, Authority Service
Affects Versions: ManifoldCF 0.1, ManifoldCF 0.2, ManifoldCF 0.3, 
 ManifoldCF 0.4, ManifoldCF 0.5, ManifoldCF 0.6
 Environment: Two Active Directory domains: {{internal.com}} and 
 {{external.com}}
 I'm indexing a Sharepoint site, where that site has permissions set 
 from_both_domains
Reporter: Colin Anderson
Assignee: Karl Wright
  Labels: active-directory, authorization, security
 Fix For: ManifoldCF 0.6


 The ManifoldCF authority service doesn't handle multi-domain environments.
 The authority service returns a list of SIDs for the specified user, from all 
 available ManifoldCF authorities, for example:
 {{TOKEN:InternalAD:S-1-5-21-1234567890-1234567890-1234567890-1234}}
 Note that the SID is prefixed with the name of the ManifoldCF authority.
 Here is my setup:
 Output connector: Solr
 Authority connector1: Active Directory ({{internal.com}} domain), named 
 {{InternalAD}}
 Authority connector2: Active Directory ({{external.com}} domain), named 
 {{ExternalAD}}
 Repository connector: Sharepoint
 If I set the Sharepoint repository connector to use the authority 'None 
 (Global Authority)', then {{allow_token_document}} will contain SIDs that are 
 _not_ prefixed with any authority name, for example:
 {{S-1-5-21-1234567890-1234567890-1234567890-1234}}
 It is therefore not possible to get any search results, because the authority 
 service tokens will not match the stored tokens (because they _are_ prefixed 
 with authority names).
 If I set the Sharepoint repository connector to use one of the AD authorities 
 'InternalAD', then {{allow_token_document}} will contain SIDs that are 
 prefixed with 'InternalAD', for example:
 {{TOKEN:InternalAD:S-1-5-21-1234567890-1234567890-1234567890-1234}}
 However, the prefix is _always_ 'InternalAD', even if the user/group actually 
 belongs to the {{external.com}} domain. Therefore it is not possible for 
 users in the {{external.com}} domain to get any search results, because the 
 authority service tokens will not match the stored tokens.
 In essence, there seems to be a mismatch between the tokens that the 
 authority service outputs, and those that repository connectors output.
 Perhaps one solution would be to use the authority 'None (Global Authority)', 
 and modify the authority service to take an extra query parameter that 
 prevents it from prefixing SIDs with the authority name.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-459) Move to JDK1.6

2012-04-10 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-459?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-459:
---

Description: 
It turns out that there are a number of dependency upgrades we can't do until 
we move completely to jdk1.6, such as going to jetty 7, tomcat 7 components, 
axis 2.x, etc.  In addition, certain connectors already require jdk1.6 (the 
alfresco connector, for instance).  Other dependencies must be built by us in 
order to get a jdk1.5-compatible version.

Since jdk1.6 has been end-of-life'd, it may be the time to make this move.


  was:
It turns out that there are a number of dependency upgrades we can't do until 
we move completely to jdk1.6, such as going to jetty 7, axis 2.x, etc.  In 
addition, certain connectors already require jdk1.6 (the alfresco connector, 
for instance).  Other dependencies must be built by us in order to get a 
jdk1.5-compatible version.

Since jdk1.6 has been end-of-life'd, it may be the time to make this move.



 Move to JDK1.6
 --

 Key: CONNECTORS-459
 URL: https://issues.apache.org/jira/browse/CONNECTORS-459
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Build
Affects Versions: ManifoldCF 0.6
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.6


 It turns out that there are a number of dependency upgrades we can't do until 
 we move completely to jdk1.6, such as going to jetty 7, tomcat 7 components, 
 axis 2.x, etc.  In addition, certain connectors already require jdk1.6 (the 
 alfresco connector, for instance).  Other dependencies must be built by us in 
 order to get a jdk1.5-compatible version.
 Since jdk1.6 has been end-of-life'd, it may be the time to make this move.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-449) UI tests broken due to buggy browser simulator

2012-04-04 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-449?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-449:
---

Affects Version/s: (was: ManifoldCF 0.5)
   ManifoldCF 0.6
Fix Version/s: (was: ManifoldCF 0.5)
   ManifoldCF 0.6

 UI tests broken due to buggy browser simulator
 --

 Key: CONNECTORS-449
 URL: https://issues.apache.org/jira/browse/CONNECTORS-449
 Project: ManifoldCF
  Issue Type: Bug
  Components: Tests
Affects Versions: ManifoldCF 0.6
Reporter: Karl Wright
Assignee: Karl Wright
Priority: Blocker
 Fix For: ManifoldCF 0.6


 The UI tests aren't working due to a regression in the browser simulator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-449) UI tests broken due to buggy browser simulator

2012-04-04 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-449?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-449:
---

Priority: Major  (was: Blocker)

 UI tests broken due to buggy browser simulator
 --

 Key: CONNECTORS-449
 URL: https://issues.apache.org/jira/browse/CONNECTORS-449
 Project: ManifoldCF
  Issue Type: Bug
  Components: Tests
Affects Versions: ManifoldCF 0.6
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.6


 The UI tests aren't working due to a regression in the browser simulator.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-430) An error should be returned if invalid seeds are typed into the seeds list for the web connector

2012-04-04 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-430?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-430:
---

Resolution: Fixed
Status: Resolved  (was: Patch Available)

 An error should be returned if invalid seeds are typed into the seeds list 
 for the web connector
 

 Key: CONNECTORS-430
 URL: https://issues.apache.org/jira/browse/CONNECTORS-430
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Web connector
Affects Versions: ManifoldCF 0.1, ManifoldCF 0.2, ManifoldCF 0.3, 
 ManifoldCF 0.4, ManifoldCF 0.5
Reporter: Erlend Garåsen
Assignee: Erlend Garåsen
Priority: Minor
 Fix For: ManifoldCF 0.6

 Attachments: CONNECTORS-430.patch, CONNECTORS-430.patch


 If you create a job for the web connector and enter an invalid URL into the 
 seeds list, any value is accepted. An error message should be returned to the 
 user in order to prevent invalid seeds.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-442) Binary distributions should not include build.xml, pom.xml or common-build.xml

2012-04-03 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-442?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-442:
---

Fix Version/s: (was: ManifoldCF 0.6)
   ManifoldCF 0.5

 Binary distributions should not include build.xml, pom.xml or common-build.xml
 --

 Key: CONNECTORS-442
 URL: https://issues.apache.org/jira/browse/CONNECTORS-442
 Project: ManifoldCF
  Issue Type: Bug
  Components: Build
Affects Versions: ManifoldCF 0.5, ManifoldCF 0.6
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5


 Since sources are not included, pom.xml, build.xml, and common-build.xml are 
 useless and confusing in the binary packages.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-430) An error should be returned if invalid seeds are typed into the seeds list for the web connector

2012-03-27 Thread Updated

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-430?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erlend Garåsen updated CONNECTORS-430:
--

Attachment: CONNECTORS-430.patch

 An error should be returned if invalid seeds are typed into the seeds list 
 for the web connector
 

 Key: CONNECTORS-430
 URL: https://issues.apache.org/jira/browse/CONNECTORS-430
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Web connector
Affects Versions: ManifoldCF 0.1, ManifoldCF 0.2, ManifoldCF 0.3, 
 ManifoldCF 0.4, ManifoldCF 0.5
Reporter: Erlend Garåsen
Assignee: Erlend Garåsen
Priority: Minor
 Fix For: ManifoldCF 0.6

 Attachments: CONNECTORS-430.patch, CONNECTORS-430.patch


 If you create a job for the web connector and enter an invalid URL into the 
 seeds list, any value is accepted. An error message should be returned to the 
 user in order to prevent invalid seeds.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-430) An error should be returned if invalid seeds are typed into the seeds list for the web connector

2012-03-27 Thread Updated

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-430?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erlend Garåsen updated CONNECTORS-430:
--

Attachment: (was: CONNECTORS-430.patch)

 An error should be returned if invalid seeds are typed into the seeds list 
 for the web connector
 

 Key: CONNECTORS-430
 URL: https://issues.apache.org/jira/browse/CONNECTORS-430
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Web connector
Affects Versions: ManifoldCF 0.1, ManifoldCF 0.2, ManifoldCF 0.3, 
 ManifoldCF 0.4, ManifoldCF 0.5
Reporter: Erlend Garåsen
Assignee: Erlend Garåsen
Priority: Minor
 Fix For: ManifoldCF 0.6

 Attachments: CONNECTORS-430.patch


 If you create a job for the web connector and enter an invalid URL into the 
 seeds list, any value is accepted. An error message should be returned to the 
 user in order to prevent invalid seeds.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-430) An error should be returned if invalid seeds are typed into the seeds list for the web connector

2012-03-27 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-430?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-430:
---

Attachment: CONNECTORS-430.patch

 An error should be returned if invalid seeds are typed into the seeds list 
 for the web connector
 

 Key: CONNECTORS-430
 URL: https://issues.apache.org/jira/browse/CONNECTORS-430
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Web connector
Affects Versions: ManifoldCF 0.1, ManifoldCF 0.2, ManifoldCF 0.3, 
 ManifoldCF 0.4, ManifoldCF 0.5
Reporter: Erlend Garåsen
Assignee: Erlend Garåsen
Priority: Minor
 Fix For: ManifoldCF 0.6

 Attachments: CONNECTORS-430.patch, CONNECTORS-430.patch


 If you create a job for the web connector and enter an invalid URL into the 
 seeds list, any value is accepted. An error message should be returned to the 
 user in order to prevent invalid seeds.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-430) An error should be returned if invalid seeds are typed into the seeds list for the web connector

2012-03-22 Thread Updated

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-430?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erlend Garåsen updated CONNECTORS-430:
--

Attachment: CONNECTORS-430.patch

Adds an error message with a list of invalid URLs in the seeds list, based on 
JavaScript.

 An error should be returned if invalid seeds are typed into the seeds list 
 for the web connector
 

 Key: CONNECTORS-430
 URL: https://issues.apache.org/jira/browse/CONNECTORS-430
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Web connector
Affects Versions: ManifoldCF 0.1, ManifoldCF 0.2, ManifoldCF 0.3, 
 ManifoldCF 0.4, ManifoldCF 0.5
Reporter: Erlend Garåsen
Assignee: Erlend Garåsen
Priority: Minor
 Fix For: ManifoldCF 0.6

 Attachments: CONNECTORS-430.patch


 If you create a job for the web connector and enter an invalid URL into the 
 seeds list, any value is accepted. An error message should be returned to the 
 user in order to prevent invalid seeds.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-430) An error should be returned if invalid seeds are typed into the seeds list for the web connector

2012-03-22 Thread Updated

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-430?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Erlend Garåsen updated CONNECTORS-430:
--

Status: Patch Available  (was: Open)

I have created a patch which adds URL validation to the seeds list. The regular 
expression for URL validation is not perfect, but IP addresses and localhosts 
are accepted in addition to domains. If it looks ok, I can committ my changes 
with Japaneese translation of the error message as well.

 An error should be returned if invalid seeds are typed into the seeds list 
 for the web connector
 

 Key: CONNECTORS-430
 URL: https://issues.apache.org/jira/browse/CONNECTORS-430
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Web connector
Affects Versions: ManifoldCF 0.4, ManifoldCF 0.3, ManifoldCF 0.2, 
 ManifoldCF 0.1, ManifoldCF 0.5
Reporter: Erlend Garåsen
Assignee: Erlend Garåsen
Priority: Minor
 Fix For: ManifoldCF 0.6

 Attachments: CONNECTORS-430.patch


 If you create a job for the web connector and enter an invalid URL into the 
 seeds list, any value is accepted. An error message should be returned to the 
 user in order to prevent invalid seeds.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-404) Japanese how to build and deploy page out of date

2012-03-20 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-404?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-404:
---

Fix Version/s: (was: ManifoldCF 0.5)
   ManifoldCF next

 Japanese how to build and deploy page out of date
 ---

 Key: CONNECTORS-404
 URL: https://issues.apache.org/jira/browse/CONNECTORS-404
 Project: ManifoldCF
  Issue Type: Bug
  Components: Documentation
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Hitoshi Ozawa
 Fix For: ManifoldCF next


 Recent changes to the build target are not reflected in the Japanese version 
 of how to build and deploy.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-394) Alt tags in crawler UI navigation are not internationalized

2012-03-20 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-394?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-394:
---

Fix Version/s: (was: ManifoldCF 0.5)
   ManifoldCF next

 Alt tags in crawler UI navigation are not internationalized
 ---

 Key: CONNECTORS-394
 URL: https://issues.apache.org/jira/browse/CONNECTORS-394
 Project: ManifoldCF
  Issue Type: Bug
  Components: Framework crawler agent
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Hitoshi Ozawa
Priority: Minor
 Fix For: ManifoldCF next


 The alt tags for all the navigation links in the crawler UI navigation pane 
 are not internationalized.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-425) Elastic Search documentation missing images

2012-03-19 Thread Piergiorgio Lucidi (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-425?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Piergiorgio Lucidi updated CONNECTORS-425:
--

Affects Version/s: (was: ManifoldCF 0.5)
Fix Version/s: (was: ManifoldCF next)
   ManifoldCF 0.5

 Elastic Search documentation missing images
 ---

 Key: CONNECTORS-425
 URL: https://issues.apache.org/jira/browse/CONNECTORS-425
 Project: ManifoldCF
  Issue Type: Bug
  Components: Documentation
Reporter: Karl Wright
Assignee: Piergiorgio Lucidi
 Fix For: ManifoldCF 0.5


 The ElasticSearch documentation refers to images that never actually were 
 committed.  Looking back at the ticket, they were never included in any 
 uploaded patch either.  These are:
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-connection-parameters.PNG. (No 
 context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-user.PNG. (No context info 
 available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-job-parameters.PNG. (No context 
 info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-history-report.PNG. (No context 
 info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-connection-parameters.PNG. (No 
 context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-user.PNG. (No context info 
 available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-job-parameters.PNG. (No context 
 info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-history-report.PNG. (No context 
 info available)
  [exec] X [0] 
 ja_JP/images/ja_JP/elasticsearch-connection-parameters_ja_JP.PNG  BROKEN: No 
 pipeline matched request: ja_
 JP/images/ja_JP/elasticsearch-connection-parameters_ja_JP.PNG
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-connection-parameters_ja_JP.PNG. 
 (No context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-user_ja_JP.PNG. (No context info 
 available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-job-parameters_ja_JP.PNG. (No 
 context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-history-report_ja_JP.PNG. (No 
 context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-connection-parameters_ja_JP.PNG. 
 (No context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-user_ja_JP.PNG. (No context info 
 available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-job-parameters_ja_JP.PNG. (No 
 context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-history-report_ja_JP.PNG. (No 
 context info available)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-425) Elastic Search documentation missing images

2012-03-19 Thread Piergiorgio Lucidi (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-425?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Piergiorgio Lucidi updated CONNECTORS-425:
--

Remaining Estimate: 4h
 Original Estimate: 4h

 Elastic Search documentation missing images
 ---

 Key: CONNECTORS-425
 URL: https://issues.apache.org/jira/browse/CONNECTORS-425
 Project: ManifoldCF
  Issue Type: Bug
  Components: Documentation
Reporter: Karl Wright
Assignee: Piergiorgio Lucidi
 Fix For: ManifoldCF 0.5

   Original Estimate: 4h
  Remaining Estimate: 4h

 The ElasticSearch documentation refers to images that never actually were 
 committed.  Looking back at the ticket, they were never included in any 
 uploaded patch either.  These are:
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-connection-parameters.PNG. (No 
 context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-user.PNG. (No context info 
 available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-job-parameters.PNG. (No context 
 info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-history-report.PNG. (No context 
 info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-connection-parameters.PNG. (No 
 context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-user.PNG. (No context info 
 available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-job-parameters.PNG. (No context 
 info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://en_US/images/en_US/elasticsearch-history-report.PNG. (No context 
 info available)
  [exec] X [0] 
 ja_JP/images/ja_JP/elasticsearch-connection-parameters_ja_JP.PNG  BROKEN: No 
 pipeline matched request: ja_
 JP/images/ja_JP/elasticsearch-connection-parameters_ja_JP.PNG
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-connection-parameters_ja_JP.PNG. 
 (No context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-user_ja_JP.PNG. (No context info 
 available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-job-parameters_ja_JP.PNG. (No 
 context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-history-report_ja_JP.PNG. (No 
 context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-connection-parameters_ja_JP.PNG. 
 (No context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-user_ja_JP.PNG. (No context info 
 available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-job-parameters_ja_JP.PNG. (No 
 context info available)
  [exec] ERROR - Image not found. URI: 
 cocoon://ja_JP/images/ja_JP/elasticsearch-history-report_ja_JP.PNG. (No 
 context info available)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-428) Include license label for IPA fonts

2012-03-19 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-428?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-428:
---

Description: 
The IPA fonts are to be considered Category-B licensed, according to LEGAL-123, 
so we will need to add mention of them in the licensing materials.

See http://www.apache.org/legal/resolved.html#category-b


  was:
The IPA fonts are to be considered Category-B licensed, so we will need to add 
mention of them in the licensing materials.

See http://www.apache.org/legal/resolved.html#category-b



 Include license label for IPA fonts
 ---

 Key: CONNECTORS-428
 URL: https://issues.apache.org/jira/browse/CONNECTORS-428
 Project: ManifoldCF
  Issue Type: Task
  Components: Documentation
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
Priority: Blocker
 Fix For: ManifoldCF 0.5


 The IPA fonts are to be considered Category-B licensed, according to 
 LEGAL-123, so we will need to add mention of them in the licensing materials.
 See http://www.apache.org/legal/resolved.html#category-b

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-423) Elastic Search connector should handle document metadata

2012-03-15 Thread Piergiorgio Lucidi (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-423?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Piergiorgio Lucidi updated CONNECTORS-423:
--

Remaining Estimate: 72h
 Original Estimate: 72h

 Elastic Search connector should handle document metadata
 

 Key: CONNECTORS-423
 URL: https://issues.apache.org/jira/browse/CONNECTORS-423
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Elastic Search connector
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Piergiorgio Lucidi
 Fix For: ManifoldCF 0.5

   Original Estimate: 72h
  Remaining Estimate: 72h

 The Elastic Search connector does not currently handle metadata, but it 
 should.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-424) Add RepositoryDocument.getFileName

2012-03-14 Thread Shinichiro Abe (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-424?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Shinichiro Abe updated CONNECTORS-424:
--

Attachment: CONNECTORS-424.patch

I want to include this patch to MCF 0.5.

 Add RepositoryDocument.getFileName
 --

 Key: CONNECTORS-424
 URL: https://issues.apache.org/jira/browse/CONNECTORS-424
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Framework agents process
Affects Versions: ManifoldCF 0.5
Reporter: Shinichiro Abe
Priority: Minor
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-424.patch


 When posting files to Solr via file system connector or share drive 
 connector, the stream_name of metadata is hard-coded docname. I want to set 
 the stream_name a right file name, it is useful for searching documents by 
 file name.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-426) Alfresco test exception

2012-03-14 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-426?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-426:
---

Summary: Alfresco test exception  (was: Alfresco test failure)

 Alfresco test exception
 ---

 Key: CONNECTORS-426
 URL: https://issues.apache.org/jira/browse/CONNECTORS-426
 Project: ManifoldCF
  Issue Type: Bug
  Components: Alfresco connector
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Priority: Minor
 Fix For: ManifoldCF 0.5


 The Alfresco tests spit out this exception, which looks like it is the result 
 of a bug in the test itself:
 {code}
 [junit] 2012-03-14 
 14:36:08.423:WARN::/alfresco/download/direct/workspace/Sp
 acesStore/c262b38f-1e7d-4319-bb39-f0128188b9c8/testdata1.txt
 [junit] java.lang.UnsupportedOperationException: Entity deletion by key 
 is n
 ot supported
 [junit] at 
 org.alfresco.repo.cache.lookup.EntityLookupCache$EntityLookup
 CallbackDAOAdaptor.deleteByKey(EntityLookupCache.java:202)
 [junit] at 
 org.alfresco.repo.cache.lookup.EntityLookupCache.deleteByKey(
 EntityLookupCache.java:639)
 [junit] at 
 org.alfresco.repo.domain.node.AbstractNodeDAOImpl.addNodeAspe
 cts(AbstractNodeDAOImpl.java:1987)
 [junit] at 
 org.alfresco.repo.node.db.DbNodeServiceImpl.addAspectsAndProp
 erties(DbNodeServiceImpl.java:526)
 [junit] at 
 org.alfresco.repo.node.db.DbNodeServiceImpl.addAspectsAndProp
 erties(DbNodeServiceImpl.java:439)
 [junit] at 
 org.alfresco.repo.node.db.DbNodeServiceImpl.addAspect(DbNodeS
 erviceImpl.java:736)
 [junit] at sun.reflect.GeneratedMethodAccessor273.invoke(Unknown 
 Source)
 [junit] at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMet
 hodAccessorImpl.java:25)
 [junit] at java.lang.reflect.Method.invoke(Method.java:592)
 [junit] at 
 org.springframework.aop.support.AopUtils.invokeJoinpointUsing
 Reflection(AopUtils.java:307)
 [junit] at 
 org.springframework.aop.framework.ReflectiveMethodInvocation.
 invokeJoinpoint(ReflectiveMethodInvocation.java:183)
 [junit] at 
 org.springframework.aop.framework.ReflectiveMethodInvocation.
 proceed(ReflectiveMethodInvocation.java:150)
 [junit] at 
 org.alfresco.repo.tenant.MultiTNodeServiceInterceptor.invoke(
 MultiTNodeServiceInterceptor.java:104)
 [junit] at 
 org.springframework.aop.framework.ReflectiveMethodInvocation.
 proceed(ReflectiveMethodInvocation.java:172)
 [junit] at 
 org.springframework.aop.framework.JdkDynamicAopProxy.invoke(J
 dkDynamicAopProxy.java:202)
 [junit] at $Proxy10.addAspect(Unknown Source)
 [junit] at sun.reflect.GeneratedMethodAccessor273.invoke(Unknown 
 Source)
 [junit] at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMet
 hodAccessorImpl.java:25)
 [junit] at java.lang.reflect.Method.invoke(Method.java:592)
 [junit] at 
 org.alfresco.repo.service.StoreRedirectorProxyFactory$Redirec
 torInvocationHandler.invoke(StoreRedirectorProxyFactory.java:215)
 [junit] at $Proxy11.addAspect(Unknown Source)
 [junit] at sun.reflect.GeneratedMethodAccessor273.invoke(Unknown 
 Source)
 [junit] at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMet
 hodAccessorImpl.java:25)
 [junit] at java.lang.reflect.Method.invoke(Method.java:592)
 [junit] at 
 org.springframework.aop.support.AopUtils.invokeJoinpointUsing
 Reflection(AopUtils.java:307)
 [junit] at 
 org.springframework.aop.framework.ReflectiveMethodInvocation.
 invokeJoinpoint(ReflectiveMethodInvocation.java:183)
 [junit] at 
 org.springframework.aop.framework.ReflectiveMethodInvocation.
 proceed(ReflectiveMethodInvocation.java:150)
 [junit] at 
 org.alfresco.repo.node.MLPropertyInterceptor.invoke(MLPropert
 yInterceptor.java:303)
 [junit] at 
 org.springframework.aop.framework.ReflectiveMethodInvocation.
 proceed(ReflectiveMethodInvocation.java:172)
 [junit] at 
 org.alfresco.repo.node.MLPropertyInterceptor.invoke(MLPropert
 yInterceptor.java:303)
 [junit] at 
 org.springframework.aop.framework.ReflectiveMethodInvocation.
 proceed(ReflectiveMethodInvocation.java:172)
 [junit] at 
 org.alfresco.repo.node.NodeRefPropertyMethodInterceptor.invok
 e(NodeRefPropertyMethodInterceptor.java:135)
 [junit] at 
 org.springframework.aop.framework.ReflectiveMethodInvocation.
 proceed(ReflectiveMethodInvocation.java:172)
 [junit] at 
 org.alfresco.repo.node.NodeRefPropertyMethodInterceptor.invok
 e(NodeRefPropertyMethodInterceptor.java:135)
 [junit] at 
 org.springframework.aop.framework.ReflectiveMethodInvocation.
 proceed(ReflectiveMethodInvocation.java:172)
 [junit

[jira] [Updated] (CONNECTORS-347) MySQL HopCount test sometimes fails

2012-03-13 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-347?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-347:
---

Fix Version/s: (was: ManifoldCF 0.5)
   ManifoldCF next

 MySQL HopCount test sometimes fails
 ---

 Key: CONNECTORS-347
 URL: https://issues.apache.org/jira/browse/CONNECTORS-347
 Project: ManifoldCF
  Issue Type: Bug
  Components: Framework core
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF next


 The HopcountMySQLIT test sometimes fails complaining that it is expecting to 
 see 6 documents but only sees 4.
 {code}
 [junit] org.apache.manifoldcf.core.interfaces.ManifoldCFException: Wrong 
 number of documents processed - expected 6, saw 4
 [junit] at 
 org.apache.manifoldcf.filesystem_tests.HopcountMySQLIT.hopcountCheck(HopcountMySQLIT.java:152)
 {code}
 This does not happen on every run.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-345) Jetty Configuration Support

2012-03-13 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-345?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-345:
---

Fix Version/s: (was: ManifoldCF 0.5)
   ManifoldCF next

 Jetty Configuration Support
 ---

 Key: CONNECTORS-345
 URL: https://issues.apache.org/jira/browse/CONNECTORS-345
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Framework core
Affects Versions: ManifoldCF 0.4
 Environment: Jetty Configuration
Reporter: Michael J. Kelleher
Assignee: Karl Wright
 Fix For: ManifoldCF next


 Can the single process example be extended to support Jetty configuration?
 1) jetty.xml
 2) webdefault.xml
 3) OPTIONS= along with their corresponding XML config files, most 
 importantly the JMX option, Server,ajp,setuid would be nice to have

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-309) On Canonicalization Tab , Allow regex transforms to modify the URL's for a crawl

2012-03-13 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-309?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-309:
---

Fix Version/s: (was: ManifoldCF 0.5)
   ManifoldCF next

 On Canonicalization Tab , Allow regex transforms to modify the URL's for a 
 crawl
 

 Key: CONNECTORS-309
 URL: https://issues.apache.org/jira/browse/CONNECTORS-309
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Web connector
Affects Versions: ManifoldCF 0.4
Reporter: Michael J. Kelleher
Assignee: Karl Wright
Priority: Minor
 Fix For: ManifoldCF next


 There was not a Component for a Job.  Canonicalization is part of the Job 
 definition.
 I would like the ability to use a regex to transform a URL (not necessarily 
 including the hostname and port).  Specifically what I would like to use this 
 for is to remove certain URL request parameters from the URL.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-317) minor GUI improvement for jcifs connector

2012-03-13 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-317?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-317:
---

Fix Version/s: (was: ManifoldCF 0.5)
   ManifoldCF next

 minor GUI improvement for jcifs connector
 -

 Key: CONNECTORS-317
 URL: https://issues.apache.org/jira/browse/CONNECTORS-317
 Project: ManifoldCF
  Issue Type: Improvement
  Components: JCIFS connector
Affects Versions: ManifoldCF 0.5
Reporter: Martin Goldhahn
Assignee: Karl Wright
Priority: Trivial
 Fix For: ManifoldCF next

 Attachments: SharedDriveConnector.java.patch, style.css.patch


 The table on Paths tab (in edit job for jcifs connector) looks strange.
 The Add and Delete button should be aligned, i.e. in the first column. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-423) Elastic Search connector should handle document metadata

2012-03-13 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-423?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-423:
---

Component/s: Elastic Search connector

 Elastic Search connector should handle document metadata
 

 Key: CONNECTORS-423
 URL: https://issues.apache.org/jira/browse/CONNECTORS-423
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Elastic Search connector
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
 Fix For: ManifoldCF 0.5


 The Elastic Search connector does not currently handle metadata, but it 
 should.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-288) An ElasticSearch connector would be helpful

2012-03-12 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-288:
---

   Resolution: Fixed
Fix Version/s: (was: ManifoldCF next)
   ManifoldCF 0.5
   Status: Resolved  (was: Patch Available)

r1299942


 An ElasticSearch connector would be helpful
 ---

 Key: CONNECTORS-288
 URL: https://issues.apache.org/jira/browse/CONNECTORS-288
 Project: ManifoldCF
  Issue Type: New Feature
Affects Versions: ManifoldCF 0.5
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
  Labels: elasticsearch
 Fix For: ManifoldCF 0.5

 Attachments: manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifold-elasticsearch-patch, 
 manifold-elasticsearch-velocity-patch, manifoldcf-elasticsearch-project-patct

   Original Estimate: 120h
  Remaining Estimate: 120h

 An ElasticSearch connector could be very useful to spread the use of 
 ManifoldCF

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-414) Incorrect path in executecommand.sh, start-webapps.sh and start-database.sh

2012-02-23 Thread Shinichiro Abe (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-414?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Shinichiro Abe updated CONNECTORS-414:
--

Attachment: CONNECTORS-414.patch

I'll commit this patch immediately.

 Incorrect path in executecommand.sh, start-webapps.sh and start-database.sh
 ---

 Key: CONNECTORS-414
 URL: https://issues.apache.org/jira/browse/CONNECTORS-414
 Project: ManifoldCF
  Issue Type: Bug
  Components: Examples
Affects Versions: ManifoldCF 0.5
Reporter: Shinichiro Abe
Assignee: Shinichiro Abe
Priority: Minor
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-414.patch


 Currently the scripts above include an incorrect path.
 I couldn't run each script at multiprocess-examples.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-412) Velocity params in Open Search Server Connector

2012-02-19 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-412?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-412:
---

Resolution: Fixed
Status: Resolved  (was: Patch Available)

 Velocity params in Open Search Server Connector
 ---

 Key: CONNECTORS-412
 URL: https://issues.apache.org/jira/browse/CONNECTORS-412
 Project: ManifoldCF
  Issue Type: Improvement
  Components: OpenSearchServer connector
Affects Versions: ManifoldCF 0.5
 Environment: velocity
Reporter: Luca Stancapiano
Assignee: Karl Wright
  Labels: opensearchserver, velocity
 Fix For: ManifoldCF 0.5

 Attachments: manifold-opensearchserver-velocity-patch, 
 manifold-opensearchserver-velocity-patch


 I see opensearchserver is the last connector that uses the custom script in 
 the html pages instead of velocity. I updated it with velocity as for the 
 other projects.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-413) OpenSearchServer connector hidden tabs use wrong variable variant so escaping is not right

2012-02-19 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-413?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-413:
---

  Component/s: OpenSearchServer connector
Affects Version/s: ManifoldCF 0.5

 OpenSearchServer connector hidden tabs use wrong variable variant so escaping 
 is not right
 --

 Key: CONNECTORS-413
 URL: https://issues.apache.org/jira/browse/CONNECTORS-413
 Project: ManifoldCF
  Issue Type: Bug
  Components: OpenSearchServer connector
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5


 The hidden tabs for the OpenSearchServer connector use the _B variant of 
 Velocity variables in some places when they should be using the _A variant.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-288) An ElasticSearch connector would be helpful

2012-02-19 Thread Luca Stancapiano (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Luca Stancapiano updated CONNECTORS-288:


Attachment: manifold-elasticsearch-velocity-patch

This patch resolves:

1 - a bug in the editConfiguration. There was a malformed field 
$SERVERLOCATION:A

2 - aligning with https://issues.apache.org/jira/browse/CONNECTORS-413

 An ElasticSearch connector would be helpful
 ---

 Key: CONNECTORS-288
 URL: https://issues.apache.org/jira/browse/CONNECTORS-288
 Project: ManifoldCF
  Issue Type: New Feature
Affects Versions: ManifoldCF 0.5
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
  Labels: elasticsearch
 Fix For: ManifoldCF next

 Attachments: manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifold-elasticsearch-patch, 
 manifold-elasticsearch-velocity-patch, manifoldcf-elasticsearch-project-patct

   Original Estimate: 120h
  Remaining Estimate: 120h

 An ElasticSearch connector could be very useful to spread the use of 
 ManifoldCF

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-412) Velocity params in Open Search Server Connector

2012-02-18 Thread Luca Stancapiano (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-412?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Luca Stancapiano updated CONNECTORS-412:


Description: I see opensearchserver is the last connector that uses the 
custom script in the html pages instead of velocity. I updated it with velocity 
as for the other projects.  (was: I see opensearchserver is the last connector 
that uses the custom script in the html pages. I updated it with velocity as 
for the other project.)

 Velocity params in Open Search Server Connector
 ---

 Key: CONNECTORS-412
 URL: https://issues.apache.org/jira/browse/CONNECTORS-412
 Project: ManifoldCF
  Issue Type: Improvement
  Components: OpenSearchServer connector
Affects Versions: ManifoldCF 0.5
 Environment: velocity
Reporter: Luca Stancapiano
  Labels: opensearchserver, velocity
 Fix For: ManifoldCF 0.5

 Attachments: manifold-opensearchserver-velocity-patch


 I see opensearchserver is the last connector that uses the custom script in 
 the html pages instead of velocity. I updated it with velocity as for the 
 other projects.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-412) Velocity params in Open Search Server Connector

2012-02-18 Thread Luca Stancapiano (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-412?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Luca Stancapiano updated CONNECTORS-412:


Attachment: manifold-opensearchserver-velocity-patch

 Velocity params in Open Search Server Connector
 ---

 Key: CONNECTORS-412
 URL: https://issues.apache.org/jira/browse/CONNECTORS-412
 Project: ManifoldCF
  Issue Type: Improvement
  Components: OpenSearchServer connector
Affects Versions: ManifoldCF 0.5
 Environment: velocity
Reporter: Luca Stancapiano
  Labels: opensearchserver, velocity
 Fix For: ManifoldCF 0.5

 Attachments: manifold-opensearchserver-velocity-patch


 I see opensearchserver is the last connector that uses the custom script in 
 the html pages. I updated it with velocity as for the other project.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-288) An ElasticSearch connector would be helpful

2012-02-16 Thread Luca Stancapiano (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Luca Stancapiano updated CONNECTORS-288:


Attachment: manifold-elasticsearch-patch

This new patch resolves the parameters using  velocity. Now the format of 
parameters is for example: $SERVERLOCATION_A instead of ${SERVERLOCATION:A}

 An ElasticSearch connector would be helpful
 ---

 Key: CONNECTORS-288
 URL: https://issues.apache.org/jira/browse/CONNECTORS-288
 Project: ManifoldCF
  Issue Type: New Feature
Affects Versions: ManifoldCF 0.5
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
  Labels: elasticsearch
 Fix For: ManifoldCF next

 Attachments: manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifold-elasticsearch-patch, 
 manifoldcf-elasticsearch-project-patct

   Original Estimate: 120h
  Remaining Estimate: 120h

 An ElasticSearch connector could be very useful to spread the use of 
 ManifoldCF

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-409) mcf-ui-core.jar doesn't exist in dist/example/lib

2012-02-14 Thread Shinichiro Abe (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-409?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Shinichiro Abe updated CONNECTORS-409:
--

Attachment: CONNECTORS-409.patch

I'll commit this patch if there is nothing wrong.

 mcf-ui-core.jar doesn't exist in dist/example/lib
 -

 Key: CONNECTORS-409
 URL: https://issues.apache.org/jira/browse/CONNECTORS-409
 Project: ManifoldCF
  Issue Type: Bug
  Components: Build
Affects Versions: ManifoldCF 0.5
Reporter: Shinichiro Abe
Assignee: Shinichiro Abe
Priority: Minor
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-409.patch


 Currently mcf-ui-core.jar isn't copied into dist/example/lib.
 So I couldn't register info by using crawler-ui at all.
 I fix framework/build.xml.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-406) Some ManifoldCF code doesn't use the MultiThreadedHttpConnectionManager

2012-02-13 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-406?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-406:
---

Fix Version/s: ManifoldCF 0.5
  Summary: Some ManifoldCF code doesn't use the 
MultiThreadedHttpConnectionManager  (was: Some projects don't use the 
MultiThreadedHttpConnectionManager)

 Some ManifoldCF code doesn't use the MultiThreadedHttpConnectionManager
 ---

 Key: CONNECTORS-406
 URL: https://issues.apache.org/jira/browse/CONNECTORS-406
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Framework agents process, OpenSearchServer connector, 
 Scripting client
Affects Versions: ManifoldCF 0.5
Reporter: Luca Stancapiano
 Fix For: ManifoldCF 0.5


 I signal three projects not using the http multithread manager:
 mcf-opensearch-connector
 pull-agent (tests)
 scripting-engine

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-288) An ElasticSearch connector would be helpful

2012-02-12 Thread Luca Stancapiano (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Luca Stancapiano updated CONNECTORS-288:


Attachment: manifold-elasticsearch-patch

about tests I think it's a good start point.

In this new patch I release two new update:

1 - Indent

2 - enable the HTTP connection pooling

 An ElasticSearch connector would be helpful
 ---

 Key: CONNECTORS-288
 URL: https://issues.apache.org/jira/browse/CONNECTORS-288
 Project: ManifoldCF
  Issue Type: New Feature
Affects Versions: ManifoldCF 0.5
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
  Labels: elasticsearch
 Fix For: ManifoldCF next

 Attachments: manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifoldcf-elasticsearch-project-patct

   Original Estimate: 120h
  Remaining Estimate: 120h

 An ElasticSearch connector could be very useful to spread the use of 
 ManifoldCF

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-288) An ElasticSearch connector would be helpful

2012-02-12 Thread Luca Stancapiano (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Luca Stancapiano updated CONNECTORS-288:


Attachment: manifold-elasticsearch-patch

yes, you say right.. now I updated and I add a better indentation too

 An ElasticSearch connector would be helpful
 ---

 Key: CONNECTORS-288
 URL: https://issues.apache.org/jira/browse/CONNECTORS-288
 Project: ManifoldCF
  Issue Type: New Feature
Affects Versions: ManifoldCF 0.5
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
  Labels: elasticsearch
 Fix For: ManifoldCF next

 Attachments: manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifold-elasticsearch-patch, 
 manifoldcf-elasticsearch-project-patct

   Original Estimate: 120h
  Remaining Estimate: 120h

 An ElasticSearch connector could be very useful to spread the use of 
 ManifoldCF

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-288) An ElasticSearch connector would be helpful

2012-02-11 Thread Luca Stancapiano (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Luca Stancapiano updated CONNECTORS-288:


Attachment: manifold-elasticsearch-patch

Ok... in this new patch I completed the support for insert, update and deleting 
of the indexes.

Remains:

1 - indent
2 - add the velocity parameters
3 - enable the HTTP connection pooling
4 - integration tests



 An ElasticSearch connector would be helpful
 ---

 Key: CONNECTORS-288
 URL: https://issues.apache.org/jira/browse/CONNECTORS-288
 Project: ManifoldCF
  Issue Type: New Feature
Affects Versions: ManifoldCF 0.5
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
  Labels: elasticsearch
 Fix For: ManifoldCF next

 Attachments: manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifold-elasticsearch-patch, 
 manifoldcf-elasticsearch-project-patct

   Original Estimate: 120h
  Remaining Estimate: 120h

 An ElasticSearch connector could be very useful to spread the use of 
 ManifoldCF

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-288) An ElasticSearch connector would be helpful

2012-02-09 Thread Luca Stancapiano (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Luca Stancapiano updated CONNECTORS-288:


Attachment: manifold-elasticsearch-patch

In this new patch:

1 - I added a new configuration type: indexType. It is mandatory for operations 
of update. Here an example of update through http:

curl -XPUT http://localhost:9200/${indexName}/${indexType}/_update -d {}

2 - I parse the output message. Here two examples of output messages in 
elasticSearch:

Succesfull:

{ok:true,_index:index,_type:aa,_id:_update,_version:1}

I take the field: ok. If true the operation is succesfull

Error:

{error:ElasticSearchParseException[Failed to derive xcontent from (offset=0, 
length=0): []],status:500}

If there is not the ok field, I take the error field and I print the value 
as message error

 An ElasticSearch connector would be helpful
 ---

 Key: CONNECTORS-288
 URL: https://issues.apache.org/jira/browse/CONNECTORS-288
 Project: ManifoldCF
  Issue Type: New Feature
Affects Versions: ManifoldCF 0.5
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
  Labels: elasticsearch
 Fix For: ManifoldCF next

 Attachments: manifold-elasticsearch-patch, 
 manifold-elasticsearch-patch, manifoldcf-elasticsearch-project-patct

   Original Estimate: 120h
  Remaining Estimate: 120h

 An ElasticSearch connector could be very useful to spread the use of 
 ManifoldCF

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-401) Update the website with some material about the project

2012-02-08 Thread Piergiorgio Lucidi (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-401?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Piergiorgio Lucidi updated CONNECTORS-401:
--

Description: 
We have to update the website to add the following sections:
* more details about each specific release in the news section
* add a Books and Presentations page in the About section to add links for 
slides, books and podcasts

  was:
We have to update the website to add the following sections:
* more details about each specific release in the 
* add a Books and Presentations page in the About section to add links for 
slides, books and podcasts


 Update the website with some material about the project
 ---

 Key: CONNECTORS-401
 URL: https://issues.apache.org/jira/browse/CONNECTORS-401
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Site
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
   Original Estimate: 1h
  Remaining Estimate: 1h

 We have to update the website to add the following sections:
 * more details about each specific release in the news section
 * add a Books and Presentations page in the About section to add links for 
 slides, books and podcasts

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-288) An ElasticSearch connector would be helpful

2012-02-08 Thread Luca Stancapiano (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Luca Stancapiano updated CONNECTORS-288:


Attachment: manifold-elasticsearch-patch

Here a new patch with the updates:

1 - resolved the error conflicting with opensearchserver in the ant file

2 - tested the optimize and refresh actions

3 - created a message to send through the indexing operation compatible with 
json

to resolve:

1 - indent

2 - add the velocity parameters

3 - Actually I get a 500 error when I try to index binary values

 An ElasticSearch connector would be helpful
 ---

 Key: CONNECTORS-288
 URL: https://issues.apache.org/jira/browse/CONNECTORS-288
 Project: ManifoldCF
  Issue Type: New Feature
Affects Versions: ManifoldCF 0.5
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
  Labels: elasticsearch
 Fix For: ManifoldCF next

 Attachments: manifold-elasticsearch-patch, 
 manifoldcf-elasticsearch-project-patct

   Original Estimate: 120h
  Remaining Estimate: 120h

 An ElasticSearch connector could be very useful to spread the use of 
 ManifoldCF

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-288) An ElasticSearch connector would be helpful

2012-02-05 Thread Luca Stancapiano (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Luca Stancapiano updated CONNECTORS-288:


   Labels: elasticsearch  (was: )
Affects Version/s: ManifoldCF 0.5
   Status: Patch Available  (was: Open)

 An ElasticSearch connector would be helpful
 ---

 Key: CONNECTORS-288
 URL: https://issues.apache.org/jira/browse/CONNECTORS-288
 Project: ManifoldCF
  Issue Type: New Feature
Affects Versions: ManifoldCF 0.5
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
  Labels: elasticsearch
 Fix For: ManifoldCF next

   Original Estimate: 120h
  Remaining Estimate: 120h

 An ElasticSearch connector could be very useful to spread the use of 
 ManifoldCF

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-288) An ElasticSearch connector would be helpful

2012-02-05 Thread Luca Stancapiano (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Luca Stancapiano updated CONNECTORS-288:


Attachment: manifoldcf-elasticsearch-project-patct

 An ElasticSearch connector would be helpful
 ---

 Key: CONNECTORS-288
 URL: https://issues.apache.org/jira/browse/CONNECTORS-288
 Project: ManifoldCF
  Issue Type: New Feature
Affects Versions: ManifoldCF 0.5
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
  Labels: elasticsearch
 Fix For: ManifoldCF next

 Attachments: manifoldcf-elasticsearch-project-patct

   Original Estimate: 120h
  Remaining Estimate: 120h

 An ElasticSearch connector could be very useful to spread the use of 
 ManifoldCF

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-398) Alfresco Connector UI Japanese translation would be helpful

2012-02-03 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-398?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-398:
-

Attachment: CONNECTORS-398.patch

I've translated the messages but didn't change the codes. I'm not sure how the 
program is switching between languages.

 Alfresco Connector UI Japanese translation would be helpful
 ---

 Key: CONNECTORS-398
 URL: https://issues.apache.org/jira/browse/CONNECTORS-398
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Alfresco connector
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-398.patch

   Original Estimate: 4h
  Remaining Estimate: 4h

 A Japanese translation of the Alfresco Connector could be very useful.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-396) CMIS Connector UI Japanese translation

2012-02-03 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-396?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-396:
-

Attachment: CONNECTORS-396.patch

 CMIS Connector UI Japanese translation
 --

 Key: CONNECTORS-396
 URL: https://issues.apache.org/jira/browse/CONNECTORS-396
 Project: ManifoldCF
  Issue Type: Improvement
  Components: CMIS connector
Affects Versions: ManifoldCF 0.3
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-396.patch

   Original Estimate: 1h
  Remaining Estimate: 1h

 I updated the Japanese templates with the latest changes and we need to 
 translate some terms in the Japanese language.
 Maybe Hitoshi could help us here ;)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-392) Japanese top page and concepts pages are not fully translated

2012-01-24 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-392?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-392:
-

Attachment: CONNECTORS-392.patch

 Japanese top page and concepts pages are not fully translated
 -

 Key: CONNECTORS-392
 URL: https://issues.apache.org/jira/browse/CONNECTORS-392
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Documentation
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-392.patch


 There are some untranslated sentences in Japanese top page and concepts pages.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-385) Manifold CF site japanese is corrupted

2012-01-18 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-385?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-385:
-

Attachment: end-user-documentation_ja_JP.html

 Manifold CF site japanese is corrupted
 --

 Key: CONNECTORS-385
 URL: https://issues.apache.org/jira/browse/CONNECTORS-385
 Project: ManifoldCF
  Issue Type: Bug
  Components: Documentation
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5

 Attachments: end-user-documentation_ja_JP.html


 The Japanese part of the site is corrupted when published.  It seems that 
 Forrest corrupts certain utf-8 characters. I've checked the latest Forrest 
 and it doesn't help, so I've created FOR-1231 to track this.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-382) JDBC connector should have Japanese messages

2012-01-15 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-382?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-382:
-

Attachment: CONNECTORS-382.patch

 JDBC connector should have Japanese messages
 

 Key: CONNECTORS-382
 URL: https://issues.apache.org/jira/browse/CONNECTORS-382
 Project: ManifoldCF
  Issue Type: Improvement
  Components: JDBC connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-382.patch


 JDBC connector's message properties file should have Japanese translations.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-383) JCIF connector should have Japanese messages

2012-01-15 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-383?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-383:
-

Attachment: CONNECTORS-383.patch

 JCIF connector should have Japanese messages
 

 Key: CONNECTORS-383
 URL: https://issues.apache.org/jira/browse/CONNECTORS-383
 Project: ManifoldCF
  Issue Type: Improvement
  Components: JCIFS connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-383.patch


 Messages in JCIF connector should have Japanese translations.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-382) JDBC connector should have Japanese messages

2012-01-15 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-382?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-382:
-

Attachment: CONNECTORS-382.patch

Please ignore the previous attachment.

 JDBC connector should have Japanese messages
 

 Key: CONNECTORS-382
 URL: https://issues.apache.org/jira/browse/CONNECTORS-382
 Project: ManifoldCF
  Issue Type: Improvement
  Components: JDBC connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-382.patch, CONNECTORS-382.patch


 JDBC connector's message properties file should have Japanese translations.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-379) Merido connector needs to be internationalized

2012-01-12 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-379?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-379:
-

Attachment: CONNECTORS-379.patch

 Merido connector needs to be internationalized
 --

 Key: CONNECTORS-379
 URL: https://issues.apache.org/jira/browse/CONNECTORS-379
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Meridio connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-379.patch


 Messages in Merido connector needs to be externalized to properties file.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-373) Solr connector Japanese message properties file is not fully translated

2012-01-11 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-373?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-373:
-

Attachment: CONNECTORS-373.patch

 Solr connector Japanese message properties file is not fully translated
 ---

 Key: CONNECTORS-373
 URL: https://issues.apache.org/jira/browse/CONNECTORS-373
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Solr-4.x-component
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-373.patch


 Solr connector's japanese message properties file should be fully translated.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-374) SharePoint connector's Japanese messages are not fully translated

2012-01-11 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-374?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-374:
-

Attachment: CONNECTORS-374.patch

 SharePoint connector's Japanese messages are not fully translated
 -

 Key: CONNECTORS-374
 URL: https://issues.apache.org/jira/browse/CONNECTORS-374
 Project: ManifoldCF
  Issue Type: Improvement
  Components: SharePoint connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-374.patch


 SharePoint connector's Japanese message properties file should be fully 
 translated.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-376) Meridio connector's Japanese messages are not fully translated

2012-01-11 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-376?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-376:
-

Attachment: CONNECTORS-376.patch

 Meridio connector's Japanese messages are not fully translated
 --

 Key: CONNECTORS-376
 URL: https://issues.apache.org/jira/browse/CONNECTORS-376
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Meridio connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-376.patch


 Should translate Meridio connector's Japanese message properties

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-373) Solr connector Japanese message properties file is not fully translated

2012-01-11 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-373?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-373:
---

Component/s: (was: Solr-4.x-component)
 Lucene/SOLR connector

 Solr connector Japanese message properties file is not fully translated
 ---

 Key: CONNECTORS-373
 URL: https://issues.apache.org/jira/browse/CONNECTORS-373
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Lucene/SOLR connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Assignee: Karl Wright
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-373.patch


 Solr connector's japanese message properties file should be fully translated.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-371) LiveLink connector should have Japanese message properties file

2012-01-10 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-371?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-371:
---

Component/s: (was: Lucene/SOLR connector)
 LiveLink connector
   Assignee: Karl Wright

 LiveLink connector should have Japanese message properties file
 ---

 Key: CONNECTORS-371
 URL: https://issues.apache.org/jira/browse/CONNECTORS-371
 Project: ManifoldCF
  Issue Type: Improvement
  Components: LiveLink connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Assignee: Karl Wright
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-371.patch


 LiveLink connector's Japanese message properties file is not fully translated.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-357) Messages in Documentum connector should be fully I18N

2012-01-09 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-357?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-357:
-

Attachment: CONNECTORS-357.patch

Extracted all messages out to properties file and added Japanese messages.

 Messages in Documentum connector should be fully I18N
 -

 Key: CONNECTORS-357
 URL: https://issues.apache.org/jira/browse/CONNECTORS-357
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Documentum connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-357.patch


 All messages in Documentum connector should be extracted out to properties 
 file and Japanese messages should be added.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-358) All messages in Filenet connector should be extracted out to properties file and Japanese messages added

2012-01-09 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-358?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-358:
-

Attachment: CONNECTORS-358.patch

Extracted all messages and added Japanese messages.

 All messages in Filenet connector should be extracted out to properties file 
 and Japanese messages added
 

 Key: CONNECTORS-358
 URL: https://issues.apache.org/jira/browse/CONNECTORS-358
 Project: ManifoldCF
  Issue Type: Improvement
  Components: FileNet connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-358.patch


 All messages in Filenet connector should be extracted out to properties file 
 and Japanese messages added to fully support I18N and Japanese L10N.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-359) All messages in Filesystem connector should be extracted out to properties file

2012-01-09 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-359?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-359:
-

Attachment: CONNECTORS-359.patch

Extracted out all messages and added Japanese messages.

 All messages in Filesystem connector should be extracted out to properties 
 file
 ---

 Key: CONNECTORS-359
 URL: https://issues.apache.org/jira/browse/CONNECTORS-359
 Project: ManifoldCF
  Issue Type: Improvement
  Components: File system connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-359.patch


 To fully support I18N, all messages should be extracted out to properties 
 file.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-360) GTS connector should be I18N

2012-01-09 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-360?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-360:
-

Attachment: CONNECTORS-360.patch

Extracted out all messages and added missing Japanese messages.

 GTS connector should be I18N
 

 Key: CONNECTORS-360
 URL: https://issues.apache.org/jira/browse/CONNECTORS-360
 Project: ManifoldCF
  Issue Type: Improvement
  Components: GTS connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-360.patch


 Should extract out all messages in GTS connector to support I18N and Japanese 
 messages should be added.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-362) JDBC connector should be fully I18N

2012-01-09 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-362?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-362:
-

Attachment: CONNECTORS-362.patch

Extracted out all messages to properties file. Did not finish creating all 
Japanese messages.


 JDBC connector should be fully I18N
 ---

 Key: CONNECTORS-362
 URL: https://issues.apache.org/jira/browse/CONNECTORS-362
 Project: ManifoldCF
  Issue Type: Improvement
  Components: JDBC connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-362.patch


 Should extract out all messages to properties file.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-364) RSS Connector should be fully I18N

2012-01-09 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-364?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-364:
-

Attachment: CONNECTORS-364.patch

Extracted out all messages to properties file. Still need to finish Japanese 
messages properties file.

 RSS Connector should be fully I18N
 --

 Key: CONNECTORS-364
 URL: https://issues.apache.org/jira/browse/CONNECTORS-364
 Project: ManifoldCF
  Issue Type: Improvement
  Components: RSS connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-364.patch


 All messages in RSS connector should be extracted out to properties file.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-366) Solr connector should be fully I18N

2012-01-09 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-366?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-366:
-

Attachment: CONNECTORS-366.patch

Extracted out all messages to properties file. Still need to finish Japanese 
messages properties file.

 Solr connector should be fully I18N
 ---

 Key: CONNECTORS-366
 URL: https://issues.apache.org/jira/browse/CONNECTORS-366
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Solr-4.x-component
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-366.patch


 Should extract out all messages to properties file.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-367) WebCrawler connector should be fully I18N

2012-01-09 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-367?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-367:
-

Attachment: CONNECTORS-367.patch

Extracted out all messages to properties file. Still need to finish Japanese 
messages properties file.

 WebCrawler connector should be fully I18N
 -

 Key: CONNECTORS-367
 URL: https://issues.apache.org/jira/browse/CONNECTORS-367
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Web connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-367.patch


 Should extract all messages to properties file.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-368) Wiki connector should be fully I18N

2012-01-09 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-368?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-368:
-

Attachment: CONNECTORS-368.patch

Extracted out all messages to properties file. Did not finish Japanese messages 
properties.

 Wiki connector should be fully I18N
 ---

 Key: CONNECTORS-368
 URL: https://issues.apache.org/jira/browse/CONNECTORS-368
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Wiki connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-368.patch


 All messages should be extracted to properties file.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-366) Solr connector should be fully I18N

2012-01-09 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-366?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-366:
---

Component/s: (was: Solr-4.x-component)
 Lucene/SOLR connector

 Solr connector should be fully I18N
 ---

 Key: CONNECTORS-366
 URL: https://issues.apache.org/jira/browse/CONNECTORS-366
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Lucene/SOLR connector
Affects Versions: ManifoldCF 0.5
Reporter: Hitoshi Ozawa
Assignee: Karl Wright
Priority: Minor
  Labels: I18N
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-366.patch


 Should extract out all messages to properties file.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-336) If there's a Japanese localization, we should also have some Japanese documentation

2012-01-06 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-336:
-

Attachment: CONNECTORS-336-20120106.patch

Please try this patch.

 If there's a Japanese localization, we should also have some Japanese 
 documentation
 ---

 Key: CONNECTORS-336
 URL: https://issues.apache.org/jira/browse/CONNECTORS-336
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Documentation
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-336-20120106.patch, 
 CONNECTORS-336_20120104A.patch, CONNECTORS-336_20120104B.patch, 
 CONNECTORS-336_20120105.patch, ja_JP_A.zip, ja_JP_B.zip, ja_JP_C.zip


 We should provide some Japanese documentation if we have a Japanese 
 localization.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-336) If there's a Japanese localization, we should also have some Japanese documentation

2012-01-05 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-336:
-

Attachment: ja_JP_C.zip

Please delete ad_configure-cd.PNG and jcifs-status.PNG.

 If there's a Japanese localization, we should also have some Japanese 
 documentation
 ---

 Key: CONNECTORS-336
 URL: https://issues.apache.org/jira/browse/CONNECTORS-336
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Documentation
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-336_20120104A.patch, 
 CONNECTORS-336_20120104B.patch, ja_JP_A.zip, ja_JP_B.zip, ja_JP_C.zip


 We should provide some Japanese documentation if we have a Japanese 
 localization.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-336) If there's a Japanese localization, we should also have some Japanese documentation

2012-01-04 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-336:
-

Attachment: CONNECTORS-336_20120104A.patch

How do I upload PNG files?

 If there's a Japanese localization, we should also have some Japanese 
 documentation
 ---

 Key: CONNECTORS-336
 URL: https://issues.apache.org/jira/browse/CONNECTORS-336
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Documentation
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-336_20120104A.patch


 We should provide some Japanese documentation if we have a Japanese 
 localization.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-336) If there's a Japanese localization, we should also have some Japanese documentation

2012-01-04 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-336:
-

Attachment: CONNECTORS-336_20120104B.patch

Need to update the screen properties files to match the content of 
end-user-documentation_ja_JP.xml

 If there's a Japanese localization, we should also have some Japanese 
 documentation
 ---

 Key: CONNECTORS-336
 URL: https://issues.apache.org/jira/browse/CONNECTORS-336
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Documentation
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-336_20120104A.patch, 
 CONNECTORS-336_20120104B.patch


 We should provide some Japanese documentation if we have a Japanese 
 localization.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-336) If there's a Japanese localization, we should also have some Japanese documentation

2012-01-04 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-336:
-

Attachment: ja_JP_A.zip

Please put these files in ja_JP sub-directory.

Japanese screenshots.

 If there's a Japanese localization, we should also have some Japanese 
 documentation
 ---

 Key: CONNECTORS-336
 URL: https://issues.apache.org/jira/browse/CONNECTORS-336
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Documentation
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-336_20120104A.patch, 
 CONNECTORS-336_20120104B.patch, ja_JP_A.zip


 We should provide some Japanese documentation if we have a Japanese 
 localization.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-336) If there's a Japanese localization, we should also have some Japanese documentation

2012-01-04 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-336:
-

Attachment: ja_JP_B.zip

Please put these files in ja_JP sub-directory.

Not yet Japanese screenshots - use to make forrest show images in generated 
pages.


 If there's a Japanese localization, we should also have some Japanese 
 documentation
 ---

 Key: CONNECTORS-336
 URL: https://issues.apache.org/jira/browse/CONNECTORS-336
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Documentation
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-336_20120104A.patch, 
 CONNECTORS-336_20120104B.patch, ja_JP_A.zip, ja_JP_B.zip


 We should provide some Japanese documentation if we have a Japanese 
 localization.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-258) pom.xml refers to jars not available in public repositories

2012-01-03 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-258?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-258:
---

Fix Version/s: (was: ManifoldCF next)
   ManifoldCF 0.3
 Assignee: Karl Wright

 pom.xml refers to jars not available in public repositories
 ---

 Key: CONNECTORS-258
 URL: https://issues.apache.org/jira/browse/CONNECTORS-258
 Project: ManifoldCF
  Issue Type: Bug
  Components: Build
Affects Versions: ManifoldCF 0.4
 Environment: all supported platforms
Reporter: Alex Ott
Assignee: Karl Wright
Priority: Minor
  Labels: maven
 Fix For: ManifoldCF 0.3

 Attachments: mvn-bootstrap.sh


 Maven's pom.xmls refers to jars that aren't available in public repositories, 
 as maven central, apache repository, etc. This includes:
  - com.bitmechanic:jdbcpool
  - org.hsqldb:hsqldb:jar:2.2.5.6-9-2011 (at maven central only version 2.2.4 
 is available right now)
 I think, that ManifoldCF should adopt the same approach as other Apache 
 projects, like Tika, when all needed jars first promoted to public 
 repositories, and only after that, they are used as dependency...

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-318) Make it easier to trace XML parsing errors

2012-01-03 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-318?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-318:
---

Affects Version/s: ManifoldCF 0.5
Fix Version/s: ManifoldCF 0.5
 Assignee: Karl Wright

Although it's far better to have the Solr connector handle its own diagnostics, 
this patch may still be helpful upon occasion, so I recommend committing it.


 Make it easier to trace XML parsing errors
 --

 Key: CONNECTORS-318
 URL: https://issues.apache.org/jira/browse/CONNECTORS-318
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Framework core
Affects Versions: ManifoldCF 0.5
Reporter: Martin Goldhahn
Assignee: Karl Wright
Priority: Minor
 Fix For: ManifoldCF 0.5

 Attachments: XMLDoc.java.patch


 I had a hard time tracking an erroneous response from Solr. All I got was 
 something like this:
 {{[Fatal Error] :112:120: The element type HR must be terminated by the 
 matching end-tag /HR.}}
 There was no indication what the error was an what component issued the error.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-309) On Canonicalization Tab , Allow regex transforms to modify the URL's for a crawl

2012-01-03 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-309?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-309:
---

Fix Version/s: (was: ManifoldCF next)
   ManifoldCF 0.5
 Assignee: Karl Wright

As stated this looks straightforward and will probably fit in the 0.5 timeframe.

 On Canonicalization Tab , Allow regex transforms to modify the URL's for a 
 crawl
 

 Key: CONNECTORS-309
 URL: https://issues.apache.org/jira/browse/CONNECTORS-309
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Web connector
Affects Versions: ManifoldCF 0.4
Reporter: Michael J. Kelleher
Assignee: Karl Wright
Priority: Minor
 Fix For: ManifoldCF 0.5


 There was not a Component for a Job.  Canonicalization is part of the Job 
 definition.
 I would like the ability to use a regex to transform a URL (not necessarily 
 including the hostname and port).  Specifically what I would like to use this 
 for is to remove certain URL request parameters from the URL.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-351) Alfresco Connector documentation must be updated

2012-01-03 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-351?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-351:
---

Affects Version/s: ManifoldCF 0.5
Fix Version/s: ManifoldCF 0.5

 Alfresco Connector documentation must be updated
 

 Key: CONNECTORS-351
 URL: https://issues.apache.org/jira/browse/CONNECTORS-351
 Project: ManifoldCF
  Issue Type: Bug
  Components: Documentation
Affects Versions: ManifoldCF 0.5
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
 Fix For: ManifoldCF 0.5

   Original Estimate: 2h
  Remaining Estimate: 2h

 The Alfresco connector documentation must be updated with the new tenant 
 domain parameter (text and screenshots).

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-345) Jetty Configuration Support

2012-01-03 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-345?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-345:
---

Fix Version/s: ManifoldCF 0.5
 Assignee: Karl Wright

 Jetty Configuration Support
 ---

 Key: CONNECTORS-345
 URL: https://issues.apache.org/jira/browse/CONNECTORS-345
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Framework core
Affects Versions: ManifoldCF 0.4
 Environment: Jetty Configuration
Reporter: Michael J. Kelleher
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5


 Can the single process example be extended to support Jetty configuration?
 1) jetty.xml
 2) webdefault.xml
 3) OPTIONS= along with their corresponding XML config files, most 
 importantly the JMX option, Server,ajp,setuid would be nice to have

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-344) OpenSearchServer connector needs hiddens to work in multi-tab environment

2012-01-01 Thread Emmanuel Keller (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Emmanuel Keller updated CONNECTORS-344:
---

Attachment: mcf-344-2.patch

Hello Karl,

Sorry, I forgot to add the new files (svn add). Here is the patch with the 
missing files.

P.S.: Best wishes for 2012!

 OpenSearchServer connector needs hiddens to work in multi-tab environment
 -

 Key: CONNECTORS-344
 URL: https://issues.apache.org/jira/browse/CONNECTORS-344
 Project: ManifoldCF
  Issue Type: Bug
  Components: OpenSearchServer connector
Affects Versions: ManifoldCF 0.4, ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5

 Attachments: mcf-344-2.patch, mcf-344.patch


 The OpenSearchServer connector UI loses your data when you click on different 
 tabs in either the output connector configuration page or job page.  It needs 
 support for hidden data in order to not do this.  See other connector 
 implementations, notably the CMIS connector (which is similar 
 architecturally) in order to do this right.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-344) OpenSearchServer connector needs hiddens to work in multi-tab environment

2012-01-01 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-344:
---

Resolution: Fixed
Status: Resolved  (was: Patch Available)

 OpenSearchServer connector needs hiddens to work in multi-tab environment
 -

 Key: CONNECTORS-344
 URL: https://issues.apache.org/jira/browse/CONNECTORS-344
 Project: ManifoldCF
  Issue Type: Bug
  Components: OpenSearchServer connector
Affects Versions: ManifoldCF 0.4, ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5

 Attachments: mcf-344-2.patch, mcf-344.patch


 The OpenSearchServer connector UI loses your data when you click on different 
 tabs in either the output connector configuration page or job page.  It needs 
 support for hidden data in order to not do this.  See other connector 
 implementations, notably the CMIS connector (which is similar 
 architecturally) in order to do this right.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-349) Content binary is not correctly read

2012-01-01 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-349?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-349:
---

Fix Version/s: (was: ManifoldCF 0.5)
   ManifoldCF 0.4

r1226302 for release branch

 Content binary is not correctly read
 

 Key: CONNECTORS-349
 URL: https://issues.apache.org/jira/browse/CONNECTORS-349
 Project: ManifoldCF
  Issue Type: Bug
  Components: Alfresco connector
Affects Versions: ManifoldCF 0.4
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
 Fix For: ManifoldCF 0.4

   Original Estimate: 4h
  Remaining Estimate: 4h

 In the Alfresco Connector there is a wrong prefix to find the content 
 property for a node.
 Now I solved this bug, but I have to solve all the conflicts related to the 
 latest changes in the code.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-348) Alfresco Connector has unresolvable dependencies in POM

2011-12-30 Thread Martin Goldhahn (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Goldhahn updated CONNECTORS-348:
---

Attachment: alfresco-dependencies-connector.patch

 Alfresco Connector has unresolvable dependencies in POM
 ---

 Key: CONNECTORS-348
 URL: https://issues.apache.org/jira/browse/CONNECTORS-348
 Project: ManifoldCF
  Issue Type: Bug
  Components: Alfresco connector
Reporter: Martin Goldhahn
Priority: Minor
 Attachments: alfresco-dependencies-connector.patch


 The Alfresco connector's POM has dependencies for org.opensaml:opensaml:1.0.1 
 and xml-security:xmlsec:1.4.1
 These artifacts are not in the Maven Central Repository nor the Alfresco 
 public repository (alfresco-public from the POM).
 The versions org.opensaml:opensaml:1.1 and xml-security:xmlsec:1.4.2 are 
 available. 
 Can't we sue these versions instead. I don't have an Alfresco installation at 
 hand. unfortunately I cannot test if it works. It compiles without problems 
 though.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-344) OpenSearchServer connector needs hiddens to work in multi-tab environment

2011-12-30 Thread Emmanuel Keller (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Emmanuel Keller updated CONNECTORS-344:
---

Attachment: mcf-344.patch

 OpenSearchServer connector needs hiddens to work in multi-tab environment
 -

 Key: CONNECTORS-344
 URL: https://issues.apache.org/jira/browse/CONNECTORS-344
 Project: ManifoldCF
  Issue Type: Bug
  Components: OpenSearchServer connector
Affects Versions: ManifoldCF 0.4, ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5

 Attachments: mcf-344.patch


 The OpenSearchServer connector UI loses your data when you click on different 
 tabs in either the output connector configuration page or job page.  It needs 
 support for hidden data in order to not do this.  See other connector 
 implementations, notably the CMIS connector (which is similar 
 architecturally) in order to do this right.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-341) override config for test cases

2011-12-29 Thread Martin Goldhahn (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-341?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Goldhahn updated CONNECTORS-341:
---

Attachment: (was: CONNECTORS-341.patch)

 override config for test cases
 --

 Key: CONNECTORS-341
 URL: https://issues.apache.org/jira/browse/CONNECTORS-341
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Tests
Reporter: Martin Goldhahn
 Attachments: CONNECTORS-341.patch


 It is hard to write a test case for a repository connector using the existing 
 *.Base classes that uses a different config file.
 The config files are actually written in 
 org.apache.manifoldcf.core.tests.Base.localSetup().
 The localSetup method is called by all sub-classes in their overridden 
 localSetup function. each sub-class adds something specific for the test 
 case. If I wanted to put something different in the config files I had to 
 override localSetup() and copy all content of the superclasses' localSetup to 
 it. This can be avoided by moving the code that writes the config file in the 
 initialize() method. It makes also more sense in that the creation of the 
 config files and the provision of their content are now in the same function.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-346) Testing hierarchy needs work

2011-12-29 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-346?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-346:
---

Fix Version/s: ManifoldCF 0.5
 Assignee: Karl Wright

 Testing hierarchy needs work
 

 Key: CONNECTORS-346
 URL: https://issues.apache.org/jira/browse/CONNECTORS-346
 Project: ManifoldCF
  Issue Type: Task
  Components: Tests
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5


 The testing hierarchy is in need of some work.  Specifically:
 - Load tests should be pulled back into the tests directory, if possible, 
 and given a suffix (LT?) which allows Maven to skip them by default.  This 
 will simplify the ant build.xml too.
 - Final ant targets (test-dr, load-dr, UI, etc.) need to be regularized.  
 They all should begin with test, for one thing.  I don't yet have a 
 proposal though.
 - There's a lot of code duplication in the hierarchy and across the different 
 database base classes.  For example, methods that talk with the API appear in 
 the base class for each database, and could be shared if there was such a 
 thing as multiple inheritance.  Since there isn't we could instead pull these 
 into their own support class, like HTMLTester does for the UI stuff.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-341) override config for test cases

2011-12-29 Thread Martin Goldhahn (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-341?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Goldhahn updated CONNECTORS-341:
---

Attachment: CONNECTORS-341.patch

 override config for test cases
 --

 Key: CONNECTORS-341
 URL: https://issues.apache.org/jira/browse/CONNECTORS-341
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Tests
Reporter: Martin Goldhahn
 Attachments: CONNECTORS-341.patch


 It is hard to write a test case for a repository connector using the existing 
 *.Base classes that uses a different config file.
 The config files are actually written in 
 org.apache.manifoldcf.core.tests.Base.localSetup().
 The localSetup method is called by all sub-classes in their overridden 
 localSetup function. each sub-class adds something specific for the test 
 case. If I wanted to put something different in the config files I had to 
 override localSetup() and copy all content of the superclasses' localSetup to 
 it. This can be avoided by moving the code that writes the config file in the 
 initialize() method. It makes also more sense in that the creation of the 
 config files and the provision of their content are now in the same function.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-338) Localization data in the wrong place

2011-12-28 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-338?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-338:
---

Affects Version/s: ManifoldCF 0.5
Fix Version/s: ManifoldCF 0.5

 Localization data in the wrong place
 

 Key: CONNECTORS-338
 URL: https://issues.apache.org/jira/browse/CONNECTORS-338
 Project: ManifoldCF
  Issue Type: Bug
  Components: Framework core
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
Priority: Minor
 Fix For: ManifoldCF 0.5


 The localization data for the Crawler UI is currently put in the core jar.  
 It should really be moved to the ui-core jar.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-314) Combined MySQL and i18n/Japanese contribution

2011-12-27 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-314?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-314:
---

Resolution: Fixed
Status: Resolved  (was: Patch Available)

The work in this ticket has been completely replaced by tickets CONNECTORS-334, 
CONNECTORS-335, and CONNECTORS-336.


 Combined MySQL and i18n/Japanese contribution
 -

 Key: CONNECTORS-314
 URL: https://issues.apache.org/jira/browse/CONNECTORS-314
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Framework agents process, Framework core, Framework 
 crawler agent
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
  Labels: I18N, mysql
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-314-20111225.patch, 
 CONNECTORS-314-doc20111220.patch, CONNECTORS-314.patch, CONNECTORS-314.patch, 
 connectors.patch, framework.patch


 Hitoshi Ozawa wishes to contribute i18n support, a Japanese localization, and 
 MySQL database support, all in one patch.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-314) Combined MySQL and i18n/Japanese contribution

2011-12-25 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-314?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-314:
-

Attachment: CONNECTORS-314-20111225.patch

Moved en and ja language properties files to each connector.

 Combined MySQL and i18n/Japanese contribution
 -

 Key: CONNECTORS-314
 URL: https://issues.apache.org/jira/browse/CONNECTORS-314
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Framework agents process, Framework core, Framework 
 crawler agent
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
  Labels: I18N, mysql
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-314-20111225.patch, 
 CONNECTORS-314-doc20111220.patch, CONNECTORS-314.patch, CONNECTORS-314.patch, 
 connectors.patch, framework.patch


 Hitoshi Ozawa wishes to contribute i18n support, a Japanese localization, and 
 MySQL database support, all in one patch.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-333) Solr 3.x and 4.x plugins should use best practices in setting up http connections

2011-12-20 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-333?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-333:
---

Priority: Critical  (was: Major)

 Solr 3.x and 4.x plugins should use best practices in setting up http 
 connections
 -

 Key: CONNECTORS-333
 URL: https://issues.apache.org/jira/browse/CONNECTORS-333
 Project: ManifoldCF
  Issue Type: Bug
  Components: Solr-3.x-component, Solr-4.x-component
Affects Versions: ManifoldCF 0.4
Reporter: Karl Wright
Assignee: Karl Wright
Priority: Critical
 Fix For: ManifoldCF 0.4


 The Solr components need to use keep-alive in order to not accumulate handles 
 in CLOSE_WAIT.  

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-333) Solr 3.x and 4.x plugins should use best practices in setting up http connections

2011-12-20 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-333?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-333:
---

Fix Version/s: (was: ManifoldCF 0.4)
   ManifoldCF 0.5

 Solr 3.x and 4.x plugins should use best practices in setting up http 
 connections
 -

 Key: CONNECTORS-333
 URL: https://issues.apache.org/jira/browse/CONNECTORS-333
 Project: ManifoldCF
  Issue Type: Bug
  Components: Solr-3.x-component, Solr-4.x-component
Affects Versions: ManifoldCF 0.4
Reporter: Karl Wright
Assignee: Karl Wright
Priority: Critical
 Fix For: ManifoldCF 0.5


 The Solr components need to use keep-alive in order to not accumulate handles 
 in CLOSE_WAIT.  

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-331) How-to-build-and-deploy page is missing section for Alfresco connector

2011-12-18 Thread Piergiorgio Lucidi (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-331?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Piergiorgio Lucidi updated CONNECTORS-331:
--

Remaining Estimate: 1h
 Original Estimate: 1h

 How-to-build-and-deploy page is missing section for Alfresco connector
 --

 Key: CONNECTORS-331
 URL: https://issues.apache.org/jira/browse/CONNECTORS-331
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Documentation
Affects Versions: ManifoldCF 0.4
Reporter: Karl Wright
Assignee: Piergiorgio Lucidi
Priority: Critical
 Fix For: ManifoldCF 0.4

   Original Estimate: 1h
  Remaining Estimate: 1h

 We need a section in how-to-build-and-deploy that covers the Alfresco 
 connector.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-314) Combined MySQL and i18n/Japanese contribution

2011-12-18 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-314?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-314:
-

Attachment: connectors.patch
framework.patch

I've used the 2011/11/29 svn but created a patch with the 
apache-manifoldcf-0.3-incubating

I've also modified SQL statements to work with mysql overwriting the postgresql 
sql statements. Would need to move these to each database's classes. This is 
just an initial modification and probably would require changes to tune for 
performance.

Cheers,

 Combined MySQL and i18n/Japanese contribution
 -

 Key: CONNECTORS-314
 URL: https://issues.apache.org/jira/browse/CONNECTORS-314
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Framework agents process, Framework core, Framework 
 crawler agent
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
  Labels: I18N, mysql
 Fix For: ManifoldCF 0.5

 Attachments: connectors.patch, framework.patch


 Hitoshi Ozawa wishes to contribute i18n support, a Japanese localization, and 
 MySQL database support, all in one patch.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-314) Combined MySQL and i18n/Japanese contribution

2011-12-18 Thread Hitoshi Ozawa (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-314?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Hitoshi Ozawa updated CONNECTORS-314:
-

Attachment: CONNECTORS-314.patch

forgot svn add in the previous patch. Sorry.

 Combined MySQL and i18n/Japanese contribution
 -

 Key: CONNECTORS-314
 URL: https://issues.apache.org/jira/browse/CONNECTORS-314
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Framework agents process, Framework core, Framework 
 crawler agent
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
  Labels: I18N, mysql
 Fix For: ManifoldCF 0.5

 Attachments: CONNECTORS-314.patch, CONNECTORS-314.patch, 
 connectors.patch, framework.patch


 Hitoshi Ozawa wishes to contribute i18n support, a Japanese localization, and 
 MySQL database support, all in one patch.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-325) Adeguate the content identifier with the Alfresco node reference

2011-12-16 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-325?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-325:
---

Fix Version/s: (was: ManifoldCF 0.5)
   ManifoldCF 0.4

 Adeguate the content identifier with the Alfresco node reference
 

 Key: CONNECTORS-325
 URL: https://issues.apache.org/jira/browse/CONNECTORS-325
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Alfresco connector
Affects Versions: ManifoldCF 0.4
Reporter: Piergiorgio Lucidi
Assignee: Piergiorgio Lucidi
Priority: Minor
 Fix For: ManifoldCF 0.4

   Original Estimate: 2h
  Remaining Estimate: 2h

 The Alfresco connector support only the UUID to identify contents in 
 ManifoldCF, but Alfresco uses a different ID for contents.
 The Node Reference is the unique identifier for nodes in Alfresco and I think 
 that we have to conform this ID in the connector too.
 A node reference has the following structure:
 {code}
 STORE PROTOCOL://STORE IDENTIFIER/UUID
 {code}
 The store protocol with the store id build a store reference that could be 
 considered in the same way we have workspaces in the JCR standard.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-319) AgentRun command needs a shutdown hook

2011-12-16 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-319?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-319:
---

Fix Version/s: (was: ManifoldCF next)
   ManifoldCF 0.5

 AgentRun command needs a shutdown hook
 --

 Key: CONNECTORS-319
 URL: https://issues.apache.org/jira/browse/CONNECTORS-319
 Project: ManifoldCF
  Issue Type: Bug
  Components: Framework agents process
Affects Versions: ManifoldCF 0.4
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5


 The AgentRun command does not clean up its agent running lock on ^C.  This 
 means you always have to do a lock clean if you ^C the agents process in a 
 multi-process environment.  I believe that everything else that needs a 
 shutdown hook has one.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-314) Combined MySQL and i18n/Japanese contribution

2011-12-16 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-314?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-314:
---

Affects Version/s: (was: ManifoldCF next)
   ManifoldCF 0.5
Fix Version/s: (was: ManifoldCF next)
   ManifoldCF 0.5

 Combined MySQL and i18n/Japanese contribution
 -

 Key: CONNECTORS-314
 URL: https://issues.apache.org/jira/browse/CONNECTORS-314
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Framework agents process, Framework core, Framework 
 crawler agent
Affects Versions: ManifoldCF 0.5
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.5


 Hitoshi Ozawa wishes to contribute i18n support, a Japanese localization, and 
 MySQL database support, all in one patch.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-319) AgentRun command needs a shutdown hook

2011-12-16 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-319?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-319:
---

Fix Version/s: (was: ManifoldCF 0.5)
   ManifoldCF 0.4

I was wrong about being wrong.  The shutdown actually occurs just as I 
initially thought, so I am moving this back to ManifoldCF 0.4.


 AgentRun command needs a shutdown hook
 --

 Key: CONNECTORS-319
 URL: https://issues.apache.org/jira/browse/CONNECTORS-319
 Project: ManifoldCF
  Issue Type: Bug
  Components: Framework agents process
Affects Versions: ManifoldCF 0.4
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF 0.4


 The AgentRun command does not clean up its agent running lock on ^C.  This 
 means you always have to do a lock clean if you ^C the agents process in a 
 multi-process environment.  I believe that everything else that needs a 
 shutdown hook has one.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-317) minor GUI improvement for jcifs connector

2011-12-15 Thread Martin Goldhahn (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-317?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Goldhahn updated CONNECTORS-317:
---

Attachment: style.css.patch

Hi Karl,
I had hoped someone more competent in web design could provide the styling :-)
But using a different style for the operation button seemed the right thing to 
do.
Anyway, the patch introduces the operation style class (which is only used by 
the ScharedDriveConnector at the moment).
I also removed the width attribute from the value style. The value style is 
used a couple of other places as well. But removing this doesn't screw up those 
pages.

 minor GUI improvement for jcifs connector
 -

 Key: CONNECTORS-317
 URL: https://issues.apache.org/jira/browse/CONNECTORS-317
 Project: ManifoldCF
  Issue Type: Improvement
  Components: JCIFS connector
Reporter: Martin Goldhahn
Priority: Trivial
 Attachments: SharedDriveConnector.java.patch, style.css.patch


 The table on Paths tab (in edit job for jcifs connector) looks strange.
 The Add and Delete button should be aligned, i.e. in the first column. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] [Updated] (CONNECTORS-319) AgentRun command needs a shutdown hook

2011-12-15 Thread Karl Wright (Updated) (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-319?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-319:
---

Priority: Major  (was: Critical)

 AgentRun command needs a shutdown hook
 --

 Key: CONNECTORS-319
 URL: https://issues.apache.org/jira/browse/CONNECTORS-319
 Project: ManifoldCF
  Issue Type: Bug
  Components: Framework agents process
Affects Versions: ManifoldCF 0.4
Reporter: Karl Wright
Assignee: Karl Wright
 Fix For: ManifoldCF next


 The AgentRun command does not clean up its agent running lock on ^C.  This 
 means you always have to do a lock clean if you ^C the agents process in a 
 multi-process environment.  I believe that everything else that needs a 
 shutdown hook has one.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




  1   2   >