42Lines / wicket-fullcalendar

Integration of FullCalendar javascript lib with Wicket
Other
24 stars 22 forks source link

wicket-fullcalendar 1.3-SNAPSHOT doesn't work when encoding urls on app with CryptoMapper. #6

Open mr-l-e-t opened 12 years ago

mr-l-e-t commented 12 years ago

Hi there, I have tried the wicket full calendar example using 1.3-SNAPSHOT for wicket 1.5. I tried encoding ULRs using CryptoMapper as suggested on wiki's Request mapping page (https://cwiki.apache.org/WICKET/request-mapping.html) and I'm afraid that full calendar functionality no longer works.

Steps I took: On WicketApplication class for wicket-fullcalendar-examples project, I added the following: @Override public void init() { super.init(); IRequestMapper cryptoMapper = new CryptoMapper(getRootRequestMapper(), this); setRootRequestMapper( cryptoMapper ); }

With the above implementation of the CryptoMapper, wicket full calendar example no longer works. If I remove it, then it works as expected.

Is this a bug with wicket-fullcalendar or am I just implementing url encryption the wrong way?

I do apologise if the error is on my side and I hope I am not wasting your time.

Thanks in advance, Lucas

ivaynberg commented 12 years ago

this is not easily fixed. both wicket's cryptomapper and full calendar will need to be tweaked. for now i would say that cryptomapper is not supported