Re: Google Analytics and Wicket Dynamic Urls

2010-05-23 Thread nino martinez wael
Yeah if they somehow can be related to a person.. So if you are to use such statistics you have to obfuscate data to make certain that it's not possible who (a named person) did what. I guess it's not directly target against the web, but a general law.. But enough of our weird rules :) [1]

Re: Google Analytics and Wicket Dynamic Urls

2010-05-22 Thread nino martinez wael
why not just omit the analytics js on the pages that you do not want track of? 2010/5/22 Martin Makundi martin.maku...@koodaripalvelut.com: Hi! We would like to use google analytics to track how users use our site. This means that the url should contain some information about on which page

Re: Google Analytics and Wicket Dynamic Urls

2010-05-22 Thread Martin Makundi
Hmm... my problem was how to track not how to omit tracking ... ;] ** Martin 2010/5/22 nino martinez wael nino.martinez.w...@gmail.com: why not just omit the analytics js on the pages that you do not want track of? 2010/5/22 Martin Makundi martin.maku...@koodaripalvelut.com: Hi! We would

Re: Google Analytics and Wicket Dynamic Urls

2010-05-22 Thread nino martinez wael
So on your pages that do not contain stateless content just omit the ga js..? Should be simple and work, although depending on your architecture.. 2010/5/22 Martin Makundi martin.maku...@koodaripalvelut.com: Hmm... my problem was how to track not how to omit tracking ... ;] ** Martin

Re: Google Analytics and Wicket Dynamic Urls

2010-05-22 Thread Martin Makundi
No. I do not want to omit. I want to track stateful content. ** Martin 2010/5/22 nino martinez wael nino.martinez.w...@gmail.com: So on your pages that do not contain stateless content just omit the ga js..? Should be simple and work, although depending on your architecture.. 2010/5/22

Re: Google Analytics and Wicket Dynamic Urls

2010-05-22 Thread M. Hammer
I've been in the same situation, and decided against GA and in favour of my own implementation. Main reason is that GA is problematic in the EU due to privacy concerns. Nevertheless, whether you implement your own tracker or use GA, you need to come up with semantics of stateful content.

Re: Google Analytics and Wicket Dynamic Urls

2010-05-22 Thread Rodolfo Hansen
What our team did was write a behavior for tracking wicket component rendering ajax behaviour execution which could be used to track wizard actions... On Sat, May 22, 2010 at 10:33 AM, M. Hammer nab...@hammer-tour.com wrote: I've been in the same situation, and decided against GA and in favour

Re: Google Analytics and Wicket Dynamic Urls

2010-05-22 Thread nino martinez wael
Ahh I understand.. Never crossed my mind, as I think we laws against that in denmark (where I am living).. 2010/5/22 Martin Makundi martin.maku...@koodaripalvelut.com: No. I do not want to omit. I want to track stateful content. ** Martin 2010/5/22 nino martinez wael

Re: Google Analytics and Wicket Dynamic Urls

2010-05-22 Thread Martin Makundi
You have laws against collecting statistics about website usage? ** Martin 2010/5/22 nino martinez wael nino.martinez.w...@gmail.com: Ahh I understand.. Never crossed my mind, as I think we laws against that in denmark (where I am living).. 2010/5/22 Martin Makundi

Re: Google Analytics and Wicket Dynamic Urls

2010-05-22 Thread Don Ferguson
We are using google analytics with wicket on our site (the asynchronous model), and explicitly specify the page URL by passing a parameter to _trackPageView. See http://www.rixty.com. That way we can track a logical view of the site hierarchy, and don't have to worry about the page

Re: Google Analytics and Wicket

2009-04-22 Thread Mariana Bustamante
Hello, sorry I've taken so long to write again. The solution suggested by Janos Cserep using the line target.appendJavaScript(pageTracker._trackPageview(' + panel trackCode + ');); worked! Thanks to all for you ideas :) On Sun, Apr 19, 2009 at 7:42 AM, James Carman

Re: Google Analytics and Wicket

2009-04-18 Thread nino martinez wael
Hmm why are that approach requiring more changes than this other? This just involves that you change extend webpage to mybasepage, and then drop the few lines of js in the markup of the mybasepage... 2009/4/18 Mariana Bustamante marian...@gmail.com: Is there any other method that doesn't mean

Re: Google Analytics and Wicket

2009-04-18 Thread James Carman
I think the idea is that they're not switching pages, but switching panels. They'd like each panel to show up as a unique page with its own id? On Sat, Apr 18, 2009 at 4:14 AM, nino martinez wael nino.martinez.w...@gmail.com wrote: Hmm why are that approach requiring more changes than this

Re: Google Analytics and Wicket

2009-04-17 Thread nino martinez wael
If you use markup inheritance just drop it in the parent page.. And there you go.. :) If not.. Well this is a good reason to start :) Works like a snug for my applications 2009/4/17 Mariana Bustamante marian...@gmail.com: Hello, I'm trying to use Google Analytics with my web application made

Re: Google Analytics and Wicket

2009-04-17 Thread Mariana Bustamante
Is there any other method that doesn't mean many changes in my application?? Everything is already working fine and adding Google Analytics was supposed to be one the final details.. I was thinking of something like adding the javascript manually into my panels, I tried this on the panel to test

Re: Google Analytics and Wicket

2009-04-17 Thread Brill Pappin
I'm not sure its going to work like that because as far as the browser is concerned (where google analytics runs) it's one seamless page. in other words your panels are only separate as a means to easy development and maintenance but not as visible http requests. That would be true of pretty

Re: Google Analytics and Wicket

2009-04-17 Thread Janos Cserep
Hi Mariana, Yes, with __trackPageview you can pretty much achieve what you want to do. In your menu component you probably change the panels by instantiating and replacing a main panel inside your page, right? If yes, do something like this: public void onClick(AjaxRequestTarget target) { //