ERXFlickrBatchNavigation

2014-10-24 Thread Gino Pacitti
I have a page that generates a numbered navigation scheme using ERXFlickrBatchNavigation that allows the displaygroups objects to be navigated through… which is great. But for SEO I need to generate a ” /> and ” />” /> for pages being navigated.. Any quick ideas on how to genera

Re: ERXFlickrBatchNavigation & Robots

2012-07-12 Thread Kevin Hinkson
On 11 Jul 2012, at 06:59, Matteo Centro wrote: > From the top of my head: maybe putting some rel="nofollow" on the links? Thanks. I'll give that a try. — K.R.H. ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailin

Re: ERXFlickrBatchNavigation & Robots

2012-07-11 Thread Matteo Centro
>From the top of my head: maybe putting some rel="nofollow" on the links? Matteo On Sat, Jun 30, 2012 at 5:26 PM, Kevin Hinkson wrote: > Hi, > Does anyone else see exceptions occurring when robots crawl the navigation > links produced by ERXFlickrNavigation? These are session based links and I

ERXFlickrBatchNavigation & Robots

2012-06-30 Thread Kevin Hinkson
Hi, Does anyone else see exceptions occurring when robots crawl the navigation links produced by ERXFlickrNavigation? These are session based links and I was looking for a simple way to avoid bots crawling these temporary links over and over? (I do however want the content on each page to be cra

Re: DisplayGroup/ERXFlickrBatchNavigation question - Wonder bug? - SOLVED

2009-12-29 Thread David Avendasora
http://issues.objectstyle.org/jira/browse/WONDER-439 It's a direct copy of the method used by Postgress and FrontBase's plugins. I've tested it with our stuff and it seems to work perfectly. Dave On Dec 29, 2009, at 2:19 PM, Andrew R. Kinnie wrote: > Thanks to Dave Avendasora, we have apparen

Re: DisplayGroup/ERXFlickrBatchNavigation question - Wonder bug? - SOLVED

2009-12-29 Thread Andrew R. Kinnie
Thanks to Dave Avendasora, we have apparently fixed the issue by patching the Oracle plugin to properly handle distinct and sorting in ERXBatchingDisplayGroups. He will file a jira with his patch. Andrew On Dec 28, 2009, at 3:06 PM, Chuck Hill wrote: > And the qualifiers are what controls wh

ERXBatchingDisplayGroup/Distinct/Sorting bug? (was: RE: DisplayGroup/ERXFlickrBatchNavigation question)

2009-12-29 Thread Andrew R. Kinnie
OK, we have narrowed this down dramatically. We have a batching display group of objects from and Oracle DB. We are grabbing objects from two separate paths, and therefore are using distinct (setUsesDistinct(true);). We are sorting the objects based on firstname then lastname (we have also tri

Re: DisplayGroup/ERXFlickrBatchNavigation question - Wonder bug?

2009-12-28 Thread Chuck Hill
And the qualifiers are what controls what SQL is generated. It could also be the way the DG is combining the qualifiers internally. Maybe try creating the OR externally and just setting one combined qualifier on the DG. If that does not work, consider dropping the ERXKey stuff and build

Re: DisplayGroup/ERXFlickrBatchNavigation question - Wonder bug?

2009-12-28 Thread Andrew R. Kinnie
Also, the reason I point out the distinct/sorting issue is that the generated SQL uses an order by in the outer select, and if you add distinct in the inner select, it's not including the attributes required by the order by, but only the id attribute. Thus, Oracle raises an error, because the d

Re: DisplayGroup/ERXFlickrBatchNavigation question - Wonder bug?

2009-12-28 Thread Andrew R. Kinnie
OK, I have tried to generalize it, without changing anything significant. Basically, the legacy architecture has a Student entity/table, a Person entity/table (which represents Adults only, NOT students), a StudentPerson entity/table which is essentially a join containing extra info not currentl

Re: DisplayGroup/ERXFlickrBatchNavigation question - Wonder bug?

2009-12-28 Thread Chuck Hill
On Dec 28, 2009, at 9:06 AM, Andrew R. Kinnie wrote: As a followup, I get the correct number of rows if I comment out any code which sorts the displayGroup using attributes other than the id column of the entity populating the displayGroup. Without sorting, and with setUsesDistinct(true);

RE: DisplayGroup/ERXFlickrBatchNavigation question - Wonder bug?

2009-12-28 Thread Andrew R. Kinnie
As a followup, I get the correct number of rows if I comment out any code which sorts the displayGroup using attributes other than the id column of the entity populating the displayGroup. Without sorting, and with setUsesDistinct(true); I get 23 rows. Navigation works. If I then try to sort

RE: DisplayGroup/ERXFlickrBatchNavigation question

2009-12-28 Thread Andrew R. Kinnie
I forgot to mention . . . The rows populated the displayGroup are from two possible paths, so there are 55 total rows matching, of which 23 are distinct. So we have a batching displayGroup with batches of 20, and the navigation displays 3 pages for 55 matches, but the repetition which is populat

DisplayGroup/ERXFlickrBatchNavigation question

2009-12-28 Thread Andrew R. Kinnie
Greetings, Hope everyone is having happy holidays to the extent that's relevant. I am having a strange issue with a subclass of ERXBatchingDisplayGroup. I am creating s search component to filter the results of the displayGroup. I have created a qualifier, which appears correct. The SQL gene