Re: [MarkLogic Dev General] How to display updated document right after update query

2015-03-27 Thread Dave Cassel
The semicolon works in a main module. If you need to do the same in a library 
module, use xdmp:eval() and do the update in a different transaction. More info 
in the Application Developer's Guide: 
http://docs.marklogic.com/guide/app-dev/transactions#id_24388

--
Dave Cassel
Developer Community Manager
MarkLogic Corporation
MarkLogic World - San Francisco April 13 - 
17


From: Sudheer Yalaverthi 
mailto:sudheer.yalaver...@db.com>>
Reply-To: MarkLogic Developer Discussion 
mailto:general@developer.marklogic.com>>
Date: Friday, March 27, 2015 at 12:02 PM
To: MarkLogic Developer Discussion 
mailto:general@developer.marklogic.com>>
Subject: Re: [MarkLogic Dev General] How to display updated document right 
after update query


Classification: Public
Hi Danny,


You can end the transaction with semi colon. Then in the same x-query, access 
the document and return it.

For ex.

(: This is the first transaction where update happens:)
declare variable $uri as xs:string := "/doc/sample.xml";
let $doc := fn:doc($uri)
return xdmp:node-replace($doc/update-node, element new-node { "new text"})
;

(:This is the second transaction where you can read the changes from first 
transaction :)
(: Variables, imports, namespaces must be defined again here.:)

declare variable $uri as xs:string := "/doc/sample.xml";

fn:doc($uri)




From: 
general-boun...@developer.marklogic.com
 [mailto:general-boun...@developer.marklogic.com] On Behalf Of Danny Sinang
Sent: Friday, March 27, 2015 11:54 AM
To: general
Subject: [MarkLogic Dev General] How to display updated document right after 
update query

I've an update query that replaces a node within a document.

The node replacement works, but the requirement is for the same query to return 
the contents of the updated document.

I know this isn't normally possible since the update query doesn't do a commit 
till after the query is executed.

Anybody know of a workaround for this ?

Regards,
Danny



---
This communication may contain confidential and/or privileged information. If 
you are not the intended recipient (or have received this communication in 
error) please notify the sender immediately and destroy this communication. Any 
unauthorized copying, disclosure or distribution of the material in this 
communication is strictly forbidden.

Deutsche Bank does not render legal or tax advice, and the information 
contained in this communication should not be regarded as such.
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] question about xdmp:encoding-language-detect

2015-03-27 Thread Jakob Fix
Hello Alex, although I'm only a lowly member of this mailing group, I
feel honored that you've singled me out based on my last name and
asking you for help with unsubscribing which I will promptly provide:

At the bottom of this email message you will find a link which I  will
report here:

http://developer.marklogic.com/mailman/listinfo/general

clicking on this link will lead you to a web page where in the bottom
half you will find a section dedicated to unsubscribing from this
list. It should be sufficient to enter your email address and click
"unsubscribe".

Actually I've just done it for you. You should have received a message
with a link that you should click in order to confirm your request to
unsubscribe.

It has been a pleasure helping ...

"Jakob'll Fix it" (tm)


On Fri, Mar 27, 2015 at 5:12 PM,   wrote:
> Hello Jacob Fix,
>
> Can you please remove me from the list? I ask you personally, because I have
> asked generally for over two years, but I am still on it. Your last name is
> "Fix," so maybe you can actually "Fix" it :-)
>
> Thanks,
> --Alex
>
>  Original Message 
> Subject: Re: [MarkLogic Dev General] question about
> xdmp:encoding-language-detect
> From: Jakob Fix 
> Date: Fri, March 27, 2015 12:09 pm
> To: MarkLogic Developer Discussion 
>
> Thanks for your respective answers. My concern is that I've tried two
> other detection services, the obvious one which is Google's
> translation service which detected the language automatically, and
> another one called detectlanguage.com which provides an API which also
> detected correctly the language in the exact same text sample that I
> used with MarkLogic's language detection feature.
> cheers,
> Jakob.
>
>
> On Fri, Mar 27, 2015 at 5:01 PM, Justin Makeig
>  wrote:
>> Jakob,
>> Are there any other markers that are specific to your domain that could
>> help you triangulate? The built-in detection doesn't (and can't) know the
>> context of your business. Some pre- or post-detection analysis might help
>> you to better narrow. For example, is a specific source known to not have
>> Croatian or Serbian content, but might have Latvian? Are there entities
>> (e.g. names, addresses, etc.) that are decent indicators of Latvian? I don't
>> know the specifics of your app or content, but there might be other context
>> that you could pull in to enhance the out-of-the-box identification.
>>
>> Justin
>>
>>
>> --
>> Justin Makeig
>> Director, Product Management
>> MarkLogic
>> justin.mak...@marklogic.com
>> +1 (650) 655-2387
>>
>>> On Mar 27, 2015, at 8:44 AM, Jakob Fix  wrote:
>>>
>>> Thanks Mary for your quick reply. It's an explanation that I
>>> understand, but this doesn't resolve my initial problem.
>>> Any idea how to solve this in the short term and whether there are
>>> improvements in the pipeline? Or that it's not a high priority?
>>>
>>> cheers,
>>> Jakob.
>>>
>>>
>>> On Fri, Mar 27, 2015 at 4:34 PM, Mary Holstege
>>>  wrote:
 On Fri, 27 Mar 2015 08:23:19 -0700, Jakob Fix 
 wrote:

> Hello, I think this message got lost when the mailing list was down in
> February (or nobody has an answer ...)
>
> Thanks,
> Jakob.

 The xdmp:encoding-language-detect uses the ICU libraries to do the
 detection. Serbian and Croatian are very closely related to each other
 and
 have some similar orthography to Latvian (although not a great deal of
 linguistic similarity, it must be said). I think the ICU libraries
 probably lack some of the linguistic sophistication of Google's backend.

 It has nothing to do with the licensing options.

 //Mary

>
> -- Forwarded message --
> From: Jakob Fix 
> Date: Sat, Feb 28, 2015 at 10:59 PM
> Subject: question about xdmp:encoding-language-detect
> To: General Mark Logic Developer Discussion
> 
>
>
> Hello,
>
> using ML7.0-3, the above function, given more than 3500 characters of
> Latvian news story text, returns Croatian twice and Serbian once in
> the top three results:
>
> 
> utf-8
> hr
> 7.081
> 
> 
> utf-8
> hr
> 7.012
> 
> 
> utf-8
> sr
> 6.882
> 
> ...
>
> and no Latvian in sight. Google translate as well as
> detectlanguage.com correctly and with sufficient self-assurance return
> the correct result.
>
> Can someone explain what the reason behind this lack of confidence and
> the wrong detection is? Do you need the right language pack (I'm
> playing around with the developer licence which I thought is
> full-featured)? Is this something that needs training? The doc doesn't
> say so.
>
> Thanks!
>
> cheers,
> Jakob.
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general


 --
 Using Oper

Re: [MarkLogic Dev General] question about xdmp:encoding-language-detect

2015-03-27 Thread alex.karman
Hello Jacob Fix,Can you please remove me from the list? I ask you personally, because I have asked generally for over two years, but I am still on it. Your last name is "Fix," so maybe you can actually "Fix" it :-)Thanks,--Alex


 Original Message 
Subject: Re: [MarkLogic Dev General] question about
xdmp:encoding-language-detect
From: Jakob Fix 
Date: Fri, March 27, 2015 12:09 pm
To: MarkLogic Developer Discussion 

Thanks for your respective answers. My concern is that I've tried two
other detection services, the obvious one which is Google's
translation service which detected the language automatically, and
another one called detectlanguage.com which provides an API which also
detected correctly the language in the exact same text sample that I
used with MarkLogic's language detection feature.
cheers,
Jakob.


On Fri, Mar 27, 2015 at 5:01 PM, Justin Makeig
 wrote:
> Jakob,
> Are there any other markers that are specific to your domain that could help you triangulate? The built-in detection doesn't (and can't) know the context of your business. Some pre- or post-detection analysis might help you to better narrow. For example, is a specific source known to not have Croatian or Serbian content, but might have Latvian? Are there entities (e.g. names, addresses, etc.) that are decent indicators of Latvian? I don't know the specifics of your app or content, but there might be other context that you could pull in to enhance the out-of-the-box identification.
>
> Justin
>
>
> --
> Justin Makeig
> Director, Product Management
> MarkLogic
> justin.mak...@marklogic.com
> +1 (650) 655-2387
>
>> On Mar 27, 2015, at 8:44 AM, Jakob Fix  wrote:
>>
>> Thanks Mary for your quick reply. It's an explanation that I
>> understand, but this doesn't resolve my initial problem.
>> Any idea how to solve this in the short term and whether there are
>> improvements in the pipeline? Or that it's not a high priority?
>>
>> cheers,
>> Jakob.
>>
>>
>> On Fri, Mar 27, 2015 at 4:34 PM, Mary Holstege
>>  wrote:
>>> On Fri, 27 Mar 2015 08:23:19 -0700, Jakob Fix  wrote:
>>>
 Hello, I think this message got lost when the mailing list was down in
 February (or nobody has an answer ...)

 Thanks,
 Jakob.
>>>
>>> The xdmp:encoding-language-detect uses the ICU libraries to do the
>>> detection. Serbian and Croatian are very closely related to each other and
>>> have some similar orthography to Latvian (although not a great deal of
>>> linguistic similarity, it must be said). I think the ICU libraries
>>> probably lack some of the linguistic sophistication of Google's backend.
>>>
>>> It has nothing to do with the licensing options.
>>>
>>> //Mary
>>>

 -- Forwarded message --
 From: Jakob Fix 
 Date: Sat, Feb 28, 2015 at 10:59 PM
 Subject: question about xdmp:encoding-language-detect
 To: General Mark Logic Developer Discussion
 


 Hello,

 using ML7.0-3, the above function, given more than 3500 characters of
 Latvian news story text, returns Croatian twice and Serbian once in
 the top three results:

 
  utf-8
  hr
  7.081
 
 
  utf-8
  hr
  7.012
 
 
  utf-8
  sr
  6.882
 
 ...

 and no Latvian in sight. Google translate as well as
 detectlanguage.com correctly and with sufficient self-assurance return
 the correct result.

 Can someone explain what the reason behind this lack of confidence and
 the wrong detection is? Do you need the right language pack (I'm
 playing around with the developer licence which I thought is
 full-featured)? Is this something that needs training? The doc doesn't
 say so.

 Thanks!

 cheers,
 Jakob.
 ___
 General mailing list
 General@developer.marklogic.com
 http://developer.marklogic.com/mailman/listinfo/general
>>>
>>>
>>> --
>>> Using Opera's revolutionary email client: http://www.opera.com/mail/
>>> ___
>>> General mailing list
>>> General@developer.marklogic.com
>>> http://developer.marklogic.com/mailman/listinfo/general
>> ___
>> General mailing list
>> General@developer.marklogic.com
>> http://developer.marklogic.com/mailman/listinfo/general
>
>
>
>
>
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general
>
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general



___
General

Re: [MarkLogic Dev General] question about xdmp:encoding-language-detect

2015-03-27 Thread Jakob Fix
Thanks for your respective answers. My concern is that I've tried two
other detection services, the obvious one which is Google's
translation service which detected the language automatically, and
another one called detectlanguage.com which provides an API which also
detected correctly the language in the exact same text sample that I
used with MarkLogic's language detection feature.
cheers,
Jakob.


On Fri, Mar 27, 2015 at 5:01 PM, Justin Makeig
 wrote:
> Jakob,
> Are there any other markers that are specific to your domain that could help 
> you triangulate? The built-in detection doesn't (and can't) know the context 
> of your business. Some pre- or post-detection analysis might help you to 
> better narrow. For example, is a specific source known to not have Croatian 
> or Serbian content, but might have Latvian? Are there entities (e.g. names, 
> addresses, etc.) that are decent indicators of Latvian? I don't know the 
> specifics of your app or content, but there might be other context that you 
> could pull in to enhance the out-of-the-box identification.
>
> Justin
>
>
> --
> Justin Makeig
> Director, Product Management
> MarkLogic
> justin.mak...@marklogic.com
> +1 (650) 655-2387
>
>> On Mar 27, 2015, at 8:44 AM, Jakob Fix  wrote:
>>
>> Thanks Mary for your quick reply. It's an explanation that I
>> understand, but this doesn't resolve my initial problem.
>> Any idea how to solve this in the short term and whether there are
>> improvements in the pipeline? Or that it's not a high priority?
>>
>> cheers,
>> Jakob.
>>
>>
>> On Fri, Mar 27, 2015 at 4:34 PM, Mary Holstege
>>  wrote:
>>> On Fri, 27 Mar 2015 08:23:19 -0700, Jakob Fix  wrote:
>>>
 Hello, I think this message got lost when the mailing list was down in
 February (or nobody has an answer ...)

 Thanks,
 Jakob.
>>>
>>> The xdmp:encoding-language-detect uses the ICU libraries to do the
>>> detection. Serbian and Croatian are very closely related to each other and
>>> have some similar orthography to Latvian (although not a great deal of
>>> linguistic similarity, it must be said). I think the ICU libraries
>>> probably lack some of the linguistic sophistication of Google's backend.
>>>
>>> It has nothing to do with the licensing options.
>>>
>>> //Mary
>>>

 -- Forwarded message --
 From: Jakob Fix 
 Date: Sat, Feb 28, 2015 at 10:59 PM
 Subject: question about xdmp:encoding-language-detect
 To: General Mark Logic Developer Discussion
 


 Hello,

 using ML7.0-3, the above function, given more than 3500 characters of
 Latvian news story text, returns Croatian twice and Serbian once in
 the top three results:

 
  utf-8
  hr
  7.081
 
 
  utf-8
  hr
  7.012
 
 
  utf-8
  sr
  6.882
 
 ...

 and no Latvian in sight. Google translate as well as
 detectlanguage.com correctly and with sufficient self-assurance return
 the correct result.

 Can someone explain what the reason behind this lack of confidence and
 the wrong detection is? Do you need the right language pack (I'm
 playing around with the developer licence which I thought is
 full-featured)? Is this something that needs training? The doc doesn't
 say so.

 Thanks!

 cheers,
 Jakob.
 ___
 General mailing list
 General@developer.marklogic.com
 http://developer.marklogic.com/mailman/listinfo/general
>>>
>>>
>>> --
>>> Using Opera's revolutionary email client: http://www.opera.com/mail/
>>> ___
>>> General mailing list
>>> General@developer.marklogic.com
>>> http://developer.marklogic.com/mailman/listinfo/general
>> ___
>> General mailing list
>> General@developer.marklogic.com
>> http://developer.marklogic.com/mailman/listinfo/general
>
>
>
>
>
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general
>
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] How to display updated document right after update query

2015-03-27 Thread Sudheer Yalaverthi
Classification: Public
Hi Danny,


You can end the transaction with semi colon. Then in the same x-query, access 
the document and return it.

For ex.

(: This is the first transaction where update happens:)
declare variable $uri as xs:string := "/doc/sample.xml";
let $doc := fn:doc($uri)
return xdmp:node-replace($doc/update-node, element new-node { "new text"})
;

(:This is the second transaction where you can read the changes from first 
transaction :)
(: Variables, imports, namespaces must be defined again here.:)

declare variable $uri as xs:string := "/doc/sample.xml";

fn:doc($uri)




From: general-boun...@developer.marklogic.com 
[mailto:general-boun...@developer.marklogic.com] On Behalf Of Danny Sinang
Sent: Friday, March 27, 2015 11:54 AM
To: general
Subject: [MarkLogic Dev General] How to display updated document right after 
update query

I've an update query that replaces a node within a document.

The node replacement works, but the requirement is for the same query to return 
the contents of the updated document.

I know this isn't normally possible since the update query doesn't do a commit 
till after the query is executed.

Anybody know of a workaround for this ?

Regards,
Danny



---
This communication may contain confidential and/or privileged information. If 
you are not the intended recipient (or have received this communication in 
error) please notify the sender immediately and destroy this communication. Any 
unauthorized copying, disclosure or distribution of the material in this 
communication is strictly forbidden.

Deutsche Bank does not render legal or tax advice, and the information 
contained in this communication should not be regarded as such.
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] How to display updated document right after update query

2015-03-27 Thread Danny Sinang
One way I've discovered is to call mem:node-replace(), pass it the same
parameters used in my call to xdmp:node-replace(), and spit out the return
value from mem:node-replace() which is what the updated document looks like.

But perhaps there's a better workaround out there.

On Fri, Mar 27, 2015 at 11:53 AM, Danny Sinang  wrote:

> I've an update query that replaces a node within a document.
>
> The node replacement works, but the requirement is for the same query to
> return the contents of the updated document.
>
> I know this isn't normally possible since the update query doesn't do a
> commit till after the query is executed.
>
> Anybody know of a workaround for this ?
>
> Regards,
> Danny
>
>
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] question about xdmp:encoding-language-detect

2015-03-27 Thread Justin Makeig
Jakob,
Are there any other markers that are specific to your domain that could help 
you triangulate? The built-in detection doesn't (and can't) know the context of 
your business. Some pre- or post-detection analysis might help you to better 
narrow. For example, is a specific source known to not have Croatian or Serbian 
content, but might have Latvian? Are there entities (e.g. names, addresses, 
etc.) that are decent indicators of Latvian? I don't know the specifics of your 
app or content, but there might be other context that you could pull in to 
enhance the out-of-the-box identification.

Justin


--
Justin Makeig
Director, Product Management
MarkLogic
justin.mak...@marklogic.com
+1 (650) 655-2387

> On Mar 27, 2015, at 8:44 AM, Jakob Fix  wrote:
> 
> Thanks Mary for your quick reply. It's an explanation that I
> understand, but this doesn't resolve my initial problem.
> Any idea how to solve this in the short term and whether there are
> improvements in the pipeline? Or that it's not a high priority?
> 
> cheers,
> Jakob.
> 
> 
> On Fri, Mar 27, 2015 at 4:34 PM, Mary Holstege
>  wrote:
>> On Fri, 27 Mar 2015 08:23:19 -0700, Jakob Fix  wrote:
>> 
>>> Hello, I think this message got lost when the mailing list was down in
>>> February (or nobody has an answer ...)
>>> 
>>> Thanks,
>>> Jakob.
>> 
>> The xdmp:encoding-language-detect uses the ICU libraries to do the
>> detection. Serbian and Croatian are very closely related to each other and
>> have some similar orthography to Latvian (although not a great deal of
>> linguistic similarity, it must be said). I think the ICU libraries
>> probably lack some of the linguistic sophistication of Google's backend.
>> 
>> It has nothing to do with the licensing options.
>> 
>> //Mary
>> 
>>> 
>>> -- Forwarded message --
>>> From: Jakob Fix 
>>> Date: Sat, Feb 28, 2015 at 10:59 PM
>>> Subject: question about xdmp:encoding-language-detect
>>> To: General Mark Logic Developer Discussion
>>> 
>>> 
>>> 
>>> Hello,
>>> 
>>> using ML7.0-3, the above function, given more than 3500 characters of
>>> Latvian news story text, returns Croatian twice and Serbian once in
>>> the top three results:
>>> 
>>> 
>>>  utf-8
>>>  hr
>>>  7.081
>>> 
>>> 
>>>  utf-8
>>>  hr
>>>  7.012
>>> 
>>> 
>>>  utf-8
>>>  sr
>>>  6.882
>>> 
>>> ...
>>> 
>>> and no Latvian in sight. Google translate as well as
>>> detectlanguage.com correctly and with sufficient self-assurance return
>>> the correct result.
>>> 
>>> Can someone explain what the reason behind this lack of confidence and
>>> the wrong detection is? Do you need the right language pack (I'm
>>> playing around with the developer licence which I thought is
>>> full-featured)? Is this something that needs training? The doc doesn't
>>> say so.
>>> 
>>> Thanks!
>>> 
>>> cheers,
>>> Jakob.
>>> ___
>>> General mailing list
>>> General@developer.marklogic.com
>>> http://developer.marklogic.com/mailman/listinfo/general
>> 
>> 
>> --
>> Using Opera's revolutionary email client: http://www.opera.com/mail/
>> ___
>> General mailing list
>> General@developer.marklogic.com
>> http://developer.marklogic.com/mailman/listinfo/general
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general






smime.p7s
Description: S/MIME cryptographic signature
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Fwd: question about xdmp:encoding-language-detect

2015-03-27 Thread Mary Holstege
On Fri, 27 Mar 2015 08:44:35 -0700, Jakob Fix  wrote:

> Thanks Mary for your quick reply. It's an explanation that I
> understand, but this doesn't resolve my initial problem.
> Any idea how to solve this in the short term and whether there are
> improvements in the pipeline? Or that it's not a high priority?
>
> cheers,
> Jakob.


I'd suggest putting in a support case so it gets on our radar of something  
to look at.

I'm not sure I have a great answer for your immediate problem. Perhaps  
passing more text would help. Or less. I rather doubt it, but worth a shot.

//Mary
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


[MarkLogic Dev General] How to display updated document right after update query

2015-03-27 Thread Danny Sinang
I've an update query that replaces a node within a document.

The node replacement works, but the requirement is for the same query to
return the contents of the updated document.

I know this isn't normally possible since the update query doesn't do a
commit till after the query is executed.

Anybody know of a workaround for this ?

Regards,
Danny
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Fwd: question about xdmp:encoding-language-detect

2015-03-27 Thread Jakob Fix
Thanks Mary for your quick reply. It's an explanation that I
understand, but this doesn't resolve my initial problem.
Any idea how to solve this in the short term and whether there are
improvements in the pipeline? Or that it's not a high priority?

cheers,
Jakob.


On Fri, Mar 27, 2015 at 4:34 PM, Mary Holstege
 wrote:
> On Fri, 27 Mar 2015 08:23:19 -0700, Jakob Fix  wrote:
>
>> Hello, I think this message got lost when the mailing list was down in
>> February (or nobody has an answer ...)
>>
>> Thanks,
>> Jakob.
>
> The xdmp:encoding-language-detect uses the ICU libraries to do the
> detection. Serbian and Croatian are very closely related to each other and
> have some similar orthography to Latvian (although not a great deal of
> linguistic similarity, it must be said). I think the ICU libraries
> probably lack some of the linguistic sophistication of Google's backend.
>
> It has nothing to do with the licensing options.
>
> //Mary
>
>>
>> -- Forwarded message --
>> From: Jakob Fix 
>> Date: Sat, Feb 28, 2015 at 10:59 PM
>> Subject: question about xdmp:encoding-language-detect
>> To: General Mark Logic Developer Discussion
>> 
>>
>>
>> Hello,
>>
>> using ML7.0-3, the above function, given more than 3500 characters of
>> Latvian news story text, returns Croatian twice and Serbian once in
>> the top three results:
>>
>> 
>>   utf-8
>>   hr
>>   7.081
>> 
>> 
>>   utf-8
>>   hr
>>   7.012
>> 
>> 
>>   utf-8
>>   sr
>>   6.882
>> 
>> ...
>>
>> and no Latvian in sight. Google translate as well as
>> detectlanguage.com correctly and with sufficient self-assurance return
>> the correct result.
>>
>> Can someone explain what the reason behind this lack of confidence and
>> the wrong detection is? Do you need the right language pack (I'm
>> playing around with the developer licence which I thought is
>> full-featured)? Is this something that needs training? The doc doesn't
>> say so.
>>
>> Thanks!
>>
>> cheers,
>> Jakob.
>> ___
>> General mailing list
>> General@developer.marklogic.com
>> http://developer.marklogic.com/mailman/listinfo/general
>
>
> --
> Using Opera's revolutionary email client: http://www.opera.com/mail/
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Fwd: question about xdmp:encoding-language-detect

2015-03-27 Thread Mary Holstege
On Fri, 27 Mar 2015 08:23:19 -0700, Jakob Fix  wrote:

> Hello, I think this message got lost when the mailing list was down in
> February (or nobody has an answer ...)
>
> Thanks,
> Jakob.

The xdmp:encoding-language-detect uses the ICU libraries to do the  
detection. Serbian and Croatian are very closely related to each other and  
have some similar orthography to Latvian (although not a great deal of  
linguistic similarity, it must be said). I think the ICU libraries  
probably lack some of the linguistic sophistication of Google's backend.

It has nothing to do with the licensing options.

//Mary

>
> -- Forwarded message --
> From: Jakob Fix 
> Date: Sat, Feb 28, 2015 at 10:59 PM
> Subject: question about xdmp:encoding-language-detect
> To: General Mark Logic Developer Discussion  
> 
>
>
> Hello,
>
> using ML7.0-3, the above function, given more than 3500 characters of
> Latvian news story text, returns Croatian twice and Serbian once in
> the top three results:
>
> 
>   utf-8
>   hr
>   7.081
> 
> 
>   utf-8
>   hr
>   7.012
> 
> 
>   utf-8
>   sr
>   6.882
> 
> ...
>
> and no Latvian in sight. Google translate as well as
> detectlanguage.com correctly and with sufficient self-assurance return
> the correct result.
>
> Can someone explain what the reason behind this lack of confidence and
> the wrong detection is? Do you need the right language pack (I'm
> playing around with the developer licence which I thought is
> full-featured)? Is this something that needs training? The doc doesn't
> say so.
>
> Thanks!
>
> cheers,
> Jakob.
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general


-- 
Using Opera's revolutionary email client: http://www.opera.com/mail/
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


[MarkLogic Dev General] Fwd: question about xdmp:encoding-language-detect

2015-03-27 Thread Jakob Fix
Hello, I think this message got lost when the mailing list was down in
February (or nobody has an answer ...)

Thanks,
Jakob.


-- Forwarded message --
From: Jakob Fix 
Date: Sat, Feb 28, 2015 at 10:59 PM
Subject: question about xdmp:encoding-language-detect
To: General Mark Logic Developer Discussion 


Hello,

using ML7.0-3, the above function, given more than 3500 characters of
Latvian news story text, returns Croatian twice and Serbian once in
the top three results:


  utf-8
  hr
  7.081


  utf-8
  hr
  7.012


  utf-8
  sr
  6.882

...

and no Latvian in sight. Google translate as well as
detectlanguage.com correctly and with sufficient self-assurance return
the correct result.

Can someone explain what the reason behind this lack of confidence and
the wrong detection is? Do you need the right language pack (I'm
playing around with the developer licence which I thought is
full-featured)? Is this something that needs training? The doc doesn't
say so.

Thanks!

cheers,
Jakob.
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Advanced search support for Greek language in Marklogic

2015-03-27 Thread Stephen Buxton

  Basic language support means that text will be tokenized like English - i.e. 
with whitespace and English punctuation delimiters - and every word will stem 
to itself.
  So, for Greek, you should have good "word search", but you won’t get 
additional value from "stemmed search".
  If you need Advanced Language Support for Greek, please log a request through 
MarkLogic support.

Thanks
- Steve B.


Stephen Buxton
Product Manager, Search and Semantics
MarkLogic Corporation
stephen.bux...@marklogic.com
+1 650 655 2317
@StephenBuxton

[Description: reimagine-sig-pc]
This e-mail and any accompanying attachments are confidential. The information 
is intended solely for the use of the individual to whom it is addressed. Any 
review, disclosure, copying, distribution, or use of this e-mail communication 
by others is strictly prohibited. If you are not the intended recipient, please 
notify us immediately by returning this message to the sender and delete all 
copies. Thank you for your cooperation.


From: general-boun...@developer.marklogic.com 
[mailto:general-boun...@developer.marklogic.com] On Behalf Of 
rajamani.marimu...@cognizant.com
Sent: Friday, March 27, 2015 4:27 AM
To: general@developer.marklogic.com
Subject: Re: [MarkLogic Dev General] Advanced search support for Greek language 
in Marklogic

Hi Vimal,

   Even Greek is fall under generic language list, still u can use stemming and 
tokenization in generic way. If u have more specific points for your scenario 
then will get better solution from the forum .

By
Raja >>>


From: general-boun...@developer.marklogic.com 
[mailto:general-boun...@developer.marklogic.com] On Behalf Of vimal c
Sent: Friday, March 27, 2015 4:13 PM
To: MarkLogic Developer Discussion
Subject: Re: [MarkLogic Dev General] Advanced search support for Greek language 
in Marklogic

Hi Rajamani,

Thanks for your reply. Yes, I too have gone through that page. Just wanted to 
know if anyone have come across a situation like me and how they have solved it.

If contacting Marklogic directly is the only option, anyone Please guide me.

Thanks,
Vimal C

On Fri, Mar 27, 2015 at 3:19 PM, 
mailto:rajamani.marimu...@cognizant.com>> 
wrote:
Hi Vimal,

   As of now , they have advanced support for 15 languages which are widely 
used in the world . If u need support for Greek,  they suggested to contact 
directly them.

By
Raja >>>

From: 
general-boun...@developer.marklogic.com
 
[mailto:general-boun...@developer.marklogic.com]
 On Behalf Of vimal c
Sent: Friday, March 27, 2015 3:02 PM
To: General MarkLogic Developer Discussion
Subject: [MarkLogic Dev General] Advanced search support for Greek language in 
Marklogic

Hi Everyone,

From Marklogic documentation on language support, I come to know that Greek 
falls under 'Basic Language support' list.

Can you please let me know whether Marklogic provides advanced search(stemming, 
tokenizing...) support for Greek Language (with/without license)?


Thanks,
Vimal C
This e-mail and any files transmitted with it are for the sole use of the 
intended recipient(s) and may contain confidential and privileged information. 
If you are not the intended recipient(s), please reply to the sender and 
destroy all copies of the original message. Any unauthorized review, use, 
disclosure, dissemination, forwarding, printing or copying of this email, 
and/or any action taken in reliance on the contents of this e-mail is strictly 
prohibited and may be unlawful. Where permitted by applicable law, this e-mail 
and other e-mail communications sent to and from Cognizant e-mail addresses may 
be monitored.

___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general

This e-mail and any files transmitted with it are for the sole use of the 
intended recipient(s) and may contain confidential and privileged information. 
If you are not the intended recipient(s), please reply to the sender and 
destroy all copies of the original message. Any unauthorized review, use, 
disclosure, dissemination, forwarding, printing or copying of this email, 
and/or any action taken in reliance on the contents of this e-mail is strictly 
prohibited and may be unlawful. Where permitted by applicable law, this e-mail 
and other e-mail communications sent to and from Cognizant e-mail addresses may 
be monitored.
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Empty Results

2015-03-27 Thread Indrajeet Verma
Hi Pragya,

If you are using XSLT, please try below code and see if this helps,

 










Thank you!

On Fri, Mar 27, 2015 at 5:43 PM, Dave Cassel 
wrote:

>  Pragya, you can do that using XSL or recursive descent in XQuery
> . The
> typeswitch case would look something like:
>
>  case element() return
>   let $children := $node/node() ! local:change(.)
>   return
> if (fn:exists($children)) then
>   element { fn:node-name($node) } {
> $node/@*,
> $children
>   }
> else ()
> …
>
>  --
>  Dave Cassel
> Developer Community Manager
> MarkLogic Corporation 
> MarkLogic World - San Francisco April 13 - 17
> 
>
>
>   From: , Pragya 
> Reply-To: MarkLogic Developer Discussion 
> Date: Friday, March 27, 2015 at 7:53 AM
> To: MarkLogic Developer Discussion 
> Subject: [MarkLogic Dev General] Empty Results
>
>Hi,
>
>
>  I want to remove the empty result element from the dynamic xml.
>
>
>  For example:
>
> In the below xml, I want to exclude the element(which has no values) The
> element name are not fixed as this xml is dynamically created.
>
>
>  Exclude the below exlemnt
> 
>  
>  
>
>  dynamic.xml:
>  
> 
> Currency
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> Pound sterling
> 
> 
> 
> 
> 
> Pound sterling
> 
> 
> 
>
>
>  Excepted output:
>
>   
>  
>  Currency
>  
>  
>  ​Pound sterling
>  
>  
>  Pound sterling
>  
>  
>  
>
>  Thanks
>  Pragya
>
>
>  "This e-mail and any attachments transmitted with it are for the sole
> use of the intended recipient(s) and may contain confidential , proprietary
> or privileged information. If you are not the intended recipient, please
> contact the sender by reply e-mail and destroy all copies of the original
> message. Any unauthorized review, use, disclosure, dissemination,
> forwarding, printing or copying of this e-mail or any action taken in
> reliance on this e-mail is strictly prohibited and may be unlawful."
>
>
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general
>
>
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Empty Results

2015-03-27 Thread Dave Cassel
Pragya, you can do that using XSL or recursive descent in 
XQuery. The 
typeswitch case would look something like:

case element() return
  let $children := $node/node() ! local:change(.)
  return
if (fn:exists($children)) then
  element { fn:node-name($node) } {
$node/@*,
$children
  }
else ()
…

--
Dave Cassel
Developer Community Manager
MarkLogic Corporation
MarkLogic World - San Francisco April 13 - 
17


From: , Pragya mailto:pkapo...@innodata.com>>
Reply-To: MarkLogic Developer Discussion 
mailto:general@developer.marklogic.com>>
Date: Friday, March 27, 2015 at 7:53 AM
To: MarkLogic Developer Discussion 
mailto:general@developer.marklogic.com>>
Subject: [MarkLogic Dev General] Empty Results


Hi,


I want to remove the empty result element from the dynamic xml.


For example:

In the below xml, I want to exclude the element(which has no values) The 
element name are not fixed as this xml is dynamically created.


Exclude the below exlemnt

   




dynamic.xml:



Currency












Pound sterling





Pound sterling





Excepted output:



Currency


​Pound sterling


Pound sterling




Thanks
Pragya


"This e-mail and any attachments transmitted with it are for the sole use of 
the intended recipient(s) and may contain confidential , proprietary or 
privileged information. If you are not the intended recipient, please contact 
the sender by reply e-mail and destroy all copies of the original message. Any 
unauthorized review, use, disclosure, dissemination, forwarding, printing or 
copying of this e-mail or any action taken in reliance on this e-mail is 
strictly prohibited and may be unlawful."
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


[MarkLogic Dev General] Empty Results

2015-03-27 Thread Kapoor, Pragya
Hi,


I want to remove the empty result element from the dynamic xml.


For example:

In the below xml, I want to exclude the element(which has no values) The 
element name are not fixed as this xml is dynamically created.


Exclude the below exlemnt

   




dynamic.xml:



Currency












Pound sterling





Pound sterling





Excepted output:



Currency


?Pound sterling


Pound sterling




Thanks
Pragya


"This e-mail and any attachments transmitted with it are for the sole use of 
the intended recipient(s) and may contain confidential , proprietary or 
privileged information. If you are not the intended recipient, please contact 
the sender by reply e-mail and destroy all copies of the original message. Any 
unauthorized review, use, disclosure, dissemination, forwarding, printing or 
copying of this e-mail or any action taken in reliance on this e-mail is 
strictly prohibited and may be unlawful."
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] XDMP-LOCKED Roxy Deployment

2015-03-27 Thread Dave Cassel
Quick note from one of the Roxy maintainers -- don't modify default.properties. 
If you need to change a property there, copy it to build.properties or to one 
of the environment properties files. The reason is that when you upgrade Roxy, 
default.properties gets over-written.

--
Dave Cassel
Developer Community Manager
MarkLogic Corporation
MarkLogic World - San Francisco April 13 - 
17


From: Indrajeet Verma 
mailto:indrajeet.ve...@gmail.com>>
Reply-To: MarkLogic Developer Discussion 
mailto:general@developer.marklogic.com>>
Date: Friday, March 27, 2015 at 2:13 AM
To: MarkLogic Developer Discussion 
mailto:general@developer.marklogic.com>>
Subject: Re: [MarkLogic Dev General] XDMP-LOCKED Roxy Deployment

Hi Abhishek,

For me, I created a below role and its working without any problem. Modified 
default.properties/local.properties accordingly. We used to do daily deployment 
and have no issues so far. Can you try it and see if this helps.

local.properties

app-role=XYZ-Role

ML Security

alert-user

Executive compartment,

any-collection
any-uri

xdmp:value
xdmp:with-namespaces
xdmp:invoke
xdmp:invoke-in
xdmp:xslt-invoke


role name (capability)
[Keep]

XYZ-Role (read)

XYZ-Role (insert)

XYZ-Role (update)

XYZ-Role (execute)





On Fri, Mar 27, 2015 at 6:12 AM, 
mailto:abhishek.srivas...@cognizant.com>> 
wrote:
Hi Geert,

Its just xQuery file deployment using Roxy, Following privilege has been give 
to the role deploying xquery files [app-role in Roxy properties file]

Inherited Role:
manage-user, rest-admin

Executive privilege:
unprotected-uri, unprotected-collections, xdmp-invoke, xslt-eval, xdmp-value

Looks like update permission of the xQuery file is causing locking since first 
time insert is working fine - but not sure about that.

Thanks
Abhishek


From: 
general-boun...@developer.marklogic.com
 
[general-boun...@developer.marklogic.com]
 on behalf of Geert Josten 
[geert.jos...@marklogic.com]
Sent: Thursday, March 26, 2015 4:02 AM
To: MarkLogic Developer Discussion
Subject: Re: [MarkLogic Dev General] XDMP-LOCKED Roxy Deployment

Hi Abhishek,

Bootstrap uses admin: and sec: functions. Those require a whole bunch of privs. 
I am kind of guessing that you are referring to deploying modules and content 
though. That should only require the priv to run through xcc, and permission to 
insert in the given uri/collection. The XDMP-LOCKED surprises me a bit, since I 
am unaware of Roxy acquiring locks explicitly itself.

Can you confirm whether it concerned bootstrap of deploy modules, and can you 
also give more details about the no-admin user? Did you assign privs/roles?

Kind regards,
Geert

From: 
"abhishek.srivas...@cognizant.com" 
mailto:abhishek.srivas...@cognizant.com>>
Reply-To: MarkLogic Developer Discussion 
mailto:general@developer.marklogic.com>>
Date: Thursday, March 26, 2015 at 1:14 AM
To: "general@developer.marklogic.com" 
mailto:general@developer.marklogic.com>>
Subject: [MarkLogic Dev General] XDMP-LOCKED Roxy Deployment


Hi All,



I am doing Roxy deployment using no-admin user. First time deployment of XQuery 
files went well but next successive deployment is throwing XDMP-LOCKED Document 
or directory is locked exception.



Not sure If I am missing any special privilege or permission to deployer role.



Thanks

Abhishek

This e-mail and any files transmitted with it are for the sole use of the 
intended recipient(s) and may contain confidential and privileged information. 
If you are not the intended recipient(s), please reply to the sender and 
destroy all copies of the original message. Any unauthorized review, use, 
disclosure, dissemination, forwarding, printing or copying of this email, 
and/or any action taken in reliance on the contents of this e-mail is strictly 
prohibited and may be unlawful. Where permitted by applicable law, this e-mail 
and other e-mail communications sent to and from Cognizant e-mail addresses may 
be monitored.
This e-mail and any files transmitted with it are for the sole use of the 
intended recipient(s) and may contain confidential and privileged information. 
If you are not the intended recipient(s), please reply to the sender and 
destroy all copies of the original message. Any unauthorized review, use, 
disclosure, dissemination, forwarding, printing or copying of this email, 
and/or any action taken in reliance on the contents of this e-mail is strictly 
prohibited and may be unlawful. Where permitted by applicable law, this e-mail 
and other e-mail communications sent to and from Cognizant e-mail addresses may 
be monitored.

___
General mailin

Re: [MarkLogic Dev General] Advanced search support for Greek language in Marklogic

2015-03-27 Thread Rajamani.Marimuthu
Hi Vimal,

   Even Greek is fall under generic language list, still u can use stemming and 
tokenization in generic way. If u have more specific points for your scenario 
then will get better solution from the forum .

By
Raja >>>


From: general-boun...@developer.marklogic.com 
[mailto:general-boun...@developer.marklogic.com] On Behalf Of vimal c
Sent: Friday, March 27, 2015 4:13 PM
To: MarkLogic Developer Discussion
Subject: Re: [MarkLogic Dev General] Advanced search support for Greek language 
in Marklogic

Hi Rajamani,

Thanks for your reply. Yes, I too have gone through that page. Just wanted to 
know if anyone have come across a situation like me and how they have solved it.

If contacting Marklogic directly is the only option, anyone Please guide me.

Thanks,
Vimal C

On Fri, Mar 27, 2015 at 3:19 PM, 
mailto:rajamani.marimu...@cognizant.com>> 
wrote:
Hi Vimal,

   As of now , they have advanced support for 15 languages which are widely 
used in the world . If u need support for Greek,  they suggested to contact 
directly them.

By
Raja >>>

From: 
general-boun...@developer.marklogic.com
 
[mailto:general-boun...@developer.marklogic.com]
 On Behalf Of vimal c
Sent: Friday, March 27, 2015 3:02 PM
To: General MarkLogic Developer Discussion
Subject: [MarkLogic Dev General] Advanced search support for Greek language in 
Marklogic

Hi Everyone,

From Marklogic documentation on language support, I come to know that Greek 
falls under 'Basic Language support' list.

Can you please let me know whether Marklogic provides advanced search(stemming, 
tokenizing...) support for Greek Language (with/without license)?


Thanks,
Vimal C
This e-mail and any files transmitted with it are for the sole use of the 
intended recipient(s) and may contain confidential and privileged information. 
If you are not the intended recipient(s), please reply to the sender and 
destroy all copies of the original message. Any unauthorized review, use, 
disclosure, dissemination, forwarding, printing or copying of this email, 
and/or any action taken in reliance on the contents of this e-mail is strictly 
prohibited and may be unlawful. Where permitted by applicable law, this e-mail 
and other e-mail communications sent to and from Cognizant e-mail addresses may 
be monitored.

___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general

This e-mail and any files transmitted with it are for the sole use of the 
intended recipient(s) and may contain confidential and privileged information. 
If you are not the intended recipient(s), please reply to the sender and 
destroy all copies of the original message. Any unauthorized review, use, 
disclosure, dissemination, forwarding, printing or copying of this email, 
and/or any action taken in reliance on the contents of this e-mail is strictly 
prohibited and may be unlawful. Where permitted by applicable law, this e-mail 
and other e-mail communications sent to and from Cognizant e-mail addresses may 
be monitored.
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Converting MS Office documents

2015-03-27 Thread Pete Aven
That should work.  I just tried on 8.0-1.1 on Windows and got the expected 
results.

If you're using CPF.  Then you want to confirm you have the following pipelines 
enabled:

Status Change Handling
Office OpenXML Extract

For Office 2007 and greater (docs ending with a .docx, .pptx. .xlsx extension) 
the file format is XML, and so you can unzip the contents and work with the 
native OpenXML Format directly once you've extracted the contents using  the 
Office OpenXML Extract pipeline.

Once inserted, the original doc will be saved in MarkLogic as:
/myDoc/UtilizationReport_xlsx  //the original doc

Once this original doc processed by Office OpenXML Extract, you should see the 
extracted parts in MarkLogic as well :
/myDoc/UtilizationReport_xlsx_parts   //with a bunch of .xml here in 
SpreadsheetML format

The cpf state on the .xlsx will be:  http://marklogic.com/states/extracted

If you already have those 2 pipelines enabled, you may want to disable others 
to see if you can get the expected results to insure no pipelines are 
conflicting with each other in their attempt to process the document.

Hope this helps,
Pete



From: general-boun...@developer.marklogic.com 
[mailto:general-boun...@developer.marklogic.com] On Behalf Of Javier Lizarraga
Sent: Thursday, March 26, 2015 7:51 PM
To: General@developer.marklogic.com
Subject: [MarkLogic Dev General] Converting MS Office documents

Hello Developers,

I want to load an MS excel file with filename.xlsx into a MarkLogic database 
(using ML8).  I want to be able to access the contents of the MS excel document.
I enabled the triggers for the database and installed  and enabled the Content 
Processing.  I followed the ML document below:
http://docs.marklogic.com/guide/cpf/default#

Loaded:
declareUpdate();
xdmp.documentLoad("C:\\Users\\jlizarraga\\Documents\\UtilizationReport.xlsx",
{
  "uri" : "/myDoc/UtilizationReport.xlsx",
  "permissions" : xdmp.defaultPermissions()
})

When I load my UtilizationReport.xlsx file I can see the associated properties 
in Query Console:

http://marklogic.com/xdmp/property";>
  http://marklogic.com/cpf";>done
  http://marklogic.com/cpf";>d41d8cd98f00b204e9800998ecf8427e
  http://marklogic.com/cpf";>2015-03-26T16:24:16-07:00
  http://marklogic.com/cpf";>http://marklogic.com/states/convertedhttp://marklogic.com/states/converted%3c/cpf:state>>
  http://marklogic.com/cpf";>/myDoc/UtilizationReport.xlsx


It appears to me that it was successful but I do not see any other associated 
documents besides the UtilizationReport.xlsx file reference.

I was expecting to see:
UtilizationReport.xlsx  (Original Document)
UtilizationReport_xlsx.xml
UtilizationReport_xlsx.xhtml
A Directory called UtilizationReport_xlsx_Parts

I don't see any errors.  Any help would be greatly appreciated.

Thanks,

Javier
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Advanced search support for Greek language in Marklogic

2015-03-27 Thread vimal c
Hi Rajamani,

Thanks for your reply. Yes, I too have gone through that page. Just wanted
to know if anyone have come across a situation like me and how they have
solved it.

If contacting Marklogic directly is the only option, anyone Please guide me.

Thanks,
Vimal C

On Fri, Mar 27, 2015 at 3:19 PM,  wrote:

>  Hi Vimal,
>
>
>
>As of now , they have advanced support for 15 languages which are
> widely used in the world . If u need support for Greek,  they suggested to
> contact directly them.
>
>
>
> By
>
> Raja >>>
>
>
>
> *From:* general-boun...@developer.marklogic.com [mailto:
> general-boun...@developer.marklogic.com] *On Behalf Of *vimal c
> *Sent:* Friday, March 27, 2015 3:02 PM
> *To:* General MarkLogic Developer Discussion
> *Subject:* [MarkLogic Dev General] Advanced search support for Greek
> language in Marklogic
>
>
>
> Hi Everyone,
>
>
>
> From Marklogic documentation on language support, I come to know that
> Greek falls under 'Basic Language support' list.
>
>
>
> Can you please let me know whether Marklogic provides advanced
> search(stemming, tokenizing...) support for Greek Language (with/without
> license)?
>
>
>
>
>
> Thanks,
>
> Vimal C
>   This e-mail and any files transmitted with it are for the sole use of
> the intended recipient(s) and may contain confidential and privileged
> information. If you are not the intended recipient(s), please reply to the
> sender and destroy all copies of the original message. Any unauthorized
> review, use, disclosure, dissemination, forwarding, printing or copying of
> this email, and/or any action taken in reliance on the contents of this
> e-mail is strictly prohibited and may be unlawful. Where permitted by
> applicable law, this e-mail and other e-mail communications sent to and
> from Cognizant e-mail addresses may be monitored.
>
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general
>
>
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Advanced search support for Greek language in Marklogic

2015-03-27 Thread Rajamani.Marimuthu
Hi Vimal,

   As of now , they have advanced support for 15 languages which are widely 
used in the world . If u need support for Greek,  they suggested to contact 
directly them.

By
Raja >>>

From: general-boun...@developer.marklogic.com 
[mailto:general-boun...@developer.marklogic.com] On Behalf Of vimal c
Sent: Friday, March 27, 2015 3:02 PM
To: General MarkLogic Developer Discussion
Subject: [MarkLogic Dev General] Advanced search support for Greek language in 
Marklogic

Hi Everyone,

From Marklogic documentation on language support, I come to know that Greek 
falls under 'Basic Language support' list.

Can you please let me know whether Marklogic provides advanced search(stemming, 
tokenizing...) support for Greek Language (with/without license)?


Thanks,
Vimal C
This e-mail and any files transmitted with it are for the sole use of the 
intended recipient(s) and may contain confidential and privileged information. 
If you are not the intended recipient(s), please reply to the sender and 
destroy all copies of the original message. Any unauthorized review, use, 
disclosure, dissemination, forwarding, printing or copying of this email, 
and/or any action taken in reliance on the contents of this e-mail is strictly 
prohibited and may be unlawful. Where permitted by applicable law, this e-mail 
and other e-mail communications sent to and from Cognizant e-mail addresses may 
be monitored.
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


[MarkLogic Dev General] Advanced search support for Greek language in Marklogic

2015-03-27 Thread vimal c
Hi Everyone,

>From Marklogic documentation on language support, I come to know that Greek
falls under 'Basic Language support' list.

Can you please let me know whether Marklogic provides advanced
search(stemming, tokenizing...) support for Greek Language (with/without
license)?


Thanks,
Vimal C
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general