oracle-commerce

Web scraping Oracle (ATG) Commerce

回眸只為那壹抹淺笑 提交于 2020-01-06 21:45:44
问题 I am new to web scraping, and I use the following tool and method to scrap: I use R (with packages Curl, XML, etc) to read the web pages (with a url link), and htmlTreeParse function to parse the html page. Then in order to know get the data I want, I first use the developer tool i Chrome to insepct the code. When I know in which node the data are, I use xpathApply to get them. Usually, it works well. But I had an issue with this site: http://www.sephora.fr/Parfum/Parfum-Femme/C309/2 When you

Extend Endeca's diacritic folding mapping

孤者浪人 提交于 2019-12-24 07:05:11
问题 We have an index with mixed Greek, English data for an ATG-Endeca application. Indexed Greek data have words with accents. If the search terms are without accents they don't match to any data (or they match due to autoccorection that happens for the character without the accent to the character withthe accent and this is not desired functionality). Dgidx flag --diacritic folding configuration doesn't include mapping for Greek caracters (https://docs.oracle.com/cd/E29584_01/webhelp/mdex

How to generate a dynamic URL using <dsp:a> in Oracle Commerce(ATG)

大憨熊 提交于 2019-12-03 10:12:43
问题 I'm trying to display list of products in a jsp using ProductLookup droplet as shown below. I'm also trying to give a hyperlink to navigate to product details page of the individual product. <dsp:droplet name="/atg/commerce/catalog/ProductLookup"> <dsp:param param="element.id" name="id"/> <dsp:oparam name="output"><br/> <dsp:a href="display_product.jsp?itemId=${id}"> Product display Name: <b><dsp:valueof param="element.displayName"/></b><br/> Product description Name: <dsp:valueof param=