Re: Dynamic OptionModel Implementation: How To?

2013-02-09 Thread sommeralex
i think i could solve what i wanted to do. generating dynamically the t:selects with their appropriate selectModels. TML ${baseFeature.key} JAVA @Property private final ValueEncoder encoder = new ValueEncoder() { @Override public String toClien

Re: Dynamic OptionModel Implementation: How To?

2013-02-09 Thread sommeralex
Hello again, I am still trying to implement my dynamic selectModel. What i did so far is: TML JAVA list: standardFeatureSelectModels is //this method gets the groups features and generates for them the selectModels public List getStandardProfileFeatureSelectModelsForGroup(Group group){

Re: Dynamic OptionModel Implementation: How To?

2013-02-08 Thread sommeralex
thx Am 08.02.2013 um 18:05 schrieb "Thiago H de Paula Figueiredo [via Tapestry]" : > On Fri, 08 Feb 2013 14:19:06 -0200, sommeralex > <[hidden email]> wrote: > > > Thank you again for your answer. I guess my confusion with tapestry is > > that it doe

Re: Dynamic OptionModel Implementation: How To?

2013-02-08 Thread sommeralex
also thanx! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Dynamic-OptionModel-Implementation-How-To-tp5719875p5719886.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubsc

Re: Dynamic OptionModel Implementation: How To?

2013-02-08 Thread sommeralex
Hi Thiago, Thanx for the detailed answers! And sorry for being not clear. Sure, value, option and selectModel are different, i just mixed them into "one thing" in my questions. For getting the list-items to select, i need a selectModel. This selectModel consists of optionModels, the optionModel

Dynamic OptionModel Implementation: How To?

2013-02-08 Thread sommeralex
Hello! I have objects (Messages) and each message may have some "attributes" associated with. Each attribute is part of one attribute family. Example: Attribute-Family Age has the attributes young, adult, old. Attribute-Family Relation has the attributes single, couple, family. Both the Att

Re: Keeping the session alive pattern?

2013-02-06 Thread sommeralex
thx! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Keeping-the-session-alive-pattern-tp5719771p5719812.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: u

Re: Keeping the session alive pattern?

2013-02-05 Thread sommeralex
/code.google.com/p/flowlogix/wiki/TLAJAXAnnotation > http://code.google.com/p/flowlogix/wiki/TLSessionMonitor > > > On Feb 5, 2013, at 6:28 AM, sommeralex <[hidden > email]<http://user/SendEmail.jtp?type=node&node=5719786&i=0>> > wrote: > > > Hello! > >

Re: Tapestry Slider Component

2013-02-05 Thread sommeralex
thank you -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Slider-Component-tp5719736p5719773.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user

Re: Tapestry Slider Component

2013-02-05 Thread sommeralex
thank you! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Slider-Component-tp5719736p5719772.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: use

Keeping the session alive pattern?

2013-02-05 Thread sommeralex
Hello! Is there a good "best practise" in tapestry/ (or webframeworks at all) for keeping a session for a page alive OR handling session timeouts? Is keeping a session alive an anti-pattern? I have two pages where some errors occur, if the user wants to do something but the session is over. Both

getting the actual tapestry locale

2013-02-05 Thread sommeralex
Hi! I need to get the (supported) tapestry locale of my page in my page java class. So first, i have set the locales in my AppModule: configuration.add("tapestry.supported-locales", "en, de"); then, i give the user the opportunity to switch void onActionFromDe(){ persistentLocale.set(Locale.GER

Re: Tapestry Slider Component

2013-02-05 Thread sommeralex
Hi Rnicholus, Thx for the answer / the point is, tapestry uses prototype, and i cant find much tapestry docs about how to handle different js implementations like jQuery, while prototype is in the "background" of Tapestry. In my opinion, it is a tapestry question. -- View this message in cont

Tapestry Slider Component

2013-02-02 Thread sommeralex
Hello! I have a standard tapestry page working with javascript/google maps and have implemented my own slider component with prototype. the problem> this component does not work as expected on iPhones/ipads. Hence, it does not work on IE 7 at all. How can i enable query mobile on my page? If i en

Re: wired error / firewall depending? / javascript float number error

2013-01-31 Thread sommeralex
thank you i was blind for that difference. My page supports english and german. in german, the seperator is , and in english . the textbox is defined as @Persist @Property private Double latitude; @Persist @Property private Double longitude; which causes the problem if the page is german a

wired error / firewall depending? / javascript float number error

2013-01-30 Thread sommeralex
Hi! I know that this error is not a (or at least it think it is not) a tapestry related error. But it is an error which i cannot "categorize" and for that reason i also dont know, where to ask.. so maybe someone knows the answer or can direct me to the right "forum". My private project is a loca

Re: zone update ajaxResponseRenderer.addRender vs zone.getBody

2013-01-29 Thread sommeralex
gt; So your zone eventually will be: > > > > > > > > ...body... > > > > > > > > Personally, I'd wait for someone to confirm that :D > > > > On Tue, Jan 29, 2013 at 10:08 PM, sommeralex <[hidden > > email]<h

zone update ajaxResponseRenderer.addRender vs zone.getBody

2013-01-29 Thread sommeralex
Hi, Whats is the difference between ajaxResponseRenderer.addRender("myZone", myZone); and return myZone.getBody(); ? thx -- View this message in context: http://tapestry.1045711.n5.nabble.com/zone-update-ajaxResponseRenderer-addRender-vs-zone-getBody-tp5719659.html Sent from the Tapestry

Re: parameter in tml page?

2013-01-29 Thread sommeralex
Hi Thiago! The point is, i want to change my tml pages as quick and easy as possible. I have a method, which is giving me, what i need. getObject(String key). If TML would support parameters for functions, i could easily write ${getObject(x)} ${getObject(y)} and so on. Otherwise, i have

Re: parameter in tml page?

2013-01-27 Thread sommeralex
i dont wont a page property, i want to define the parameter dynamically in the TML page itself. but it seems that this is not possible. -- View this message in context: http://tapestry.1045711.n5.nabble.com/parameter-in-tml-page-tp5719561p5719574.html Sent from the Tapestry - User mailing

Re: Tapestry 5 book is here

2013-01-27 Thread sommeralex
thx. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-book-is-here-tp5719513p5719560.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsub

Page Inheritance

2013-01-17 Thread sommeralex
Hi! I have two questions concerning page inheritance: 1. What is the best way to implement page inheritance? (Since page variables may be protected too as a new feature.. this questions popped up..) Should (abstract) page classes reside in the same folders as the page itself or somewhere else?

zoneManager keeps being null

2013-01-11 Thread sommeralex
Hello, , I have a wired problem. My ZoneManager keeps being null: JS: function updatePage(response){ alert ("id: " + zoneId); alert (urlSetMsgPositionAndSize); var zoneManager = Tapestry.findZoneManagerForZone(zoneId); alert ("zone " + zoneManager);

page navigation

2012-12-26 Thread sommeralex
shouldnt it be a normal function of a tapestry page to know its predecessor? they only thing i found to get the previous page is by passing the predecessor into the context. http://jumpstart.doublenegative.com.au/jumpstart/examples/navigation/returntopage1/abc -- View this message in context

Re: Deleting persitent Object within Page

2012-12-26 Thread sommeralex
the point is, that if i am showing the messages in a list, the user is able to delete them from this list. void onActionFromDelete(long messageId){ Message msg = messageService.getMessage(messageId); messageService.deleteMessage(msg); } delete but if one messa

Deleting persitent Object within Page

2012-12-26 Thread sommeralex
Hello! My page is showing a message object, which should also be able being deleted by user (within that page) Object onActionFromDelete(){ messageService.deleteMessage(message); message = null; msgContainer.addMessa

Re: t:grid: action on select row

2012-12-26 Thread sommeralex
thx! -- View this message in context: http://tapestry.1045711.n5.nabble.com/t-grid-action-on-select-row-tp5718970p5718986.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-u

Re: tapestry form validation: email bug?

2012-12-25 Thread sommeralex
ok thx -- View this message in context: http://tapestry.1045711.n5.nabble.com/tapestry-form-validation-email-bug-tp5718950p5718973.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail

t:grid: action on select row

2012-12-25 Thread sommeralex
Hello! i would like to implement a pageLink for the whole row instead for each cell in the row. What i know so far is that i can overwrite the cell with ${curGroup.name} but then, the user has to select this item. instead, if he is jus

Re: tapestry form validation: email bug?

2012-12-25 Thread sommeralex
No, it should not but does! Am 25.12.2012 um 09:43 schrieb "Muhammad Gelbana [via Tapestry]" : > Are you saying it should accept "alexander.sommer@gmail" without the ".com" > part ? > > On Mon, Dec 24, 2012 at 3:02 PM, sommeralex <[hidden

tapestry form validation: email bug?

2012-12-24 Thread sommeralex
email with alexander.sommer@gmail ist accepted (instead of alexander.som...@gmail.com) ? -- View this message in context: http://tapestry.1045711.n5.nabble.com/tapestry-form-validation-email-bug-tp5718950.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Tapestry Release Notes: How to read it?

2012-11-06 Thread sommeralex
Hi Thiago! Thank you for answering also "general" questions ;-) ad Q3: it was not clear if a bug listed under "bugs" is fixed or not. Therefore, it was also not clear if a bug e.g in release 2.4 is LISTED is then fixed in release 2.5. If the release page would name the bug header as "fixed bugs

Tapestry Release Notes: How to read it?

2012-11-06 Thread sommeralex
How should one read the release notes? e.g http://tapestry.apache.org/release-notes-535.html Q1: Does BUG mean, that the listed bugs were found in 5.3.5 Q2: If Q1 is yes, it is expected that this list could increase. So I should have a look on it. Q3: Are the listed bugs in a previous release

Re: @Inject Service in another Service: Service is null

2012-11-02 Thread sommeralex
thanx for the suggestions. but i already have / at least what I know / "merged" tapestry with spring. I have another service, named messageService, and this messageService is injecting severa

Re: @Inject Service in another Service: Service is null

2012-11-02 Thread sommeralex
service A instance is injected from everywhere i am using it.. in this case, InitDB is injecting @GroupService groupService. And within groupService, i am injecting FeatureService / which is null. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Inject-Service-in-anothe

@Inject Service in another Service: Service is null

2012-11-02 Thread sommeralex
Hello! I am using a Service A, which is using the services from another service B, but the Service B is null if i am calling a method from my Service B within the class of Service A. public class ServiceA { @Inject ServiceB serviceB; public void someMethod(){ serviceB.doSomething(); } }

Re: Dynamic Assets

2012-10-28 Thread sommeralex
works now with @Inject private AssetSource assetSource; assetSource.getExpandedAsset("context:/img/icon/star/starScore00.png").toClientURL(); thx -- View this message in context: http://tapestry.1045711.n5.nabble.com/Dynamic-Assets-tp5717354p5717361.html Sent from the Tapest

Re: Dynamic Assets

2012-10-28 Thread sommeralex
apidocs/org/apache/tapestry5/services/AssetSource.html > > Cheers, > Dragan Sahpaski > > > On Sun, Oct 28, 2012 at 8:55 PM, sommeralex <[hidden > email]<http://user/SendEmail.jtp?type=node&node=5717359&i=0>> > wrote: > > > Hello, > > > &g

Dynamic Assets

2012-10-28 Thread sommeralex
Hello, Which is the best way for using dynamic assets? In one of my classes, i have too much asset declarations now.. @Inject @Path("context:/img/icon/star/starScore20.png") private Asset star20Asset; What i would prefer is a method which directly is generating the as

Hibernate & springframework.security question

2012-10-24 Thread sommeralex
Hi! I know that this is more a hibernate than a tapestry question, but i am not sure if my question is really more hibernate specific, or a standard problem. If i am logged in as User user with session x, but some values of my user get changed from the outside of a session y my User user in my s

updating a zone from javascript

2012-09-21 Thread sommeralex
Hello! I have a javascript function, function onGetLatLng(gLatLng){ if(gLatLng == null) { alert("Sorry, we couldn't find this address."); return false; } new Ajax.Request(urlGetGroupsOnLocation, { onSuccess: updatePage,

Re: loading .js and in a specific order

2012-09-15 Thread sommeralex
thank you!!! is working. package com.airwriting.frontend.components; import org.apache.tapestry5.Asset; import org.apache.tapestry5.MarkupWriter; import org.apache.tapestry5.annotations.Import; import org.apache.tapestry5.annotations.Path; import org.apache.tapestry5.annotations.Property; import

Re: loading .js and in a specific order

2012-09-15 Thread sommeralex
thx.. but seems complicated, because my asset also is taking parameters:

Re: loading .js and in a specific order

2012-09-15 Thread sommeralex
2012/9/15 Dusko Jovanovski [via Tapestry] < ml-node+s1045711n5716312...@n5.nabble.com> > You can use the @Import annotation on render methods. Try this: > @Import(library = {"context:js/OverlappingMarkerSpiderfier.js"}) > void afterRender(){} > > On Sat, Sep 15

loading .js and in a specific order

2012-09-15 Thread sommeralex
Hi! I need to ensure that google maps api 3 is loaded before OverlappingMarkerSpiderfier ( OverlappingMarkerSpiderfier is a js lib helping to solve the multiple marker problem with same locations) The OverlappingMarkerSpiderfier.js is in my ressources folder, and normally i would just inject it

Re: refreshing zone without highlighting it

2012-09-12 Thread sommeralex
thx 2012/9/12 Dragan Sahpaski [via Tapestry] < ml-node+s1045711n5716224...@n5.nabble.com> > Here you go: > > http://tapestry.apache.org/ajax-and-zones.html#AjaxandZones-ZoneEffectFunctions > > Cheers, > Dragan Sahpaski > > > On Wed, Sep 12, 2012 at 10:27 AM, s

refreshing zone without highlighting it

2012-09-12 Thread sommeralex
hi! does anybody know how i can use the periodic zone updater that way that the zone is not being highlighted on each update with yellow? thx -- View this message in context: http://tapestry.1045711.n5.nabble.com/refreshing-zone-without-highlighting-it-tp5716221.html Sent from the Tapestry -

Re: updating from 5.3.1 to 5.3.5

2012-09-11 Thread sommeralex
thx... 2012/9/11 Kalle Korhonen-2 [via Tapestry] < ml-node+s1045711n5716211...@n5.nabble.com> > On Tue, Sep 11, 2012 at 10:31 AM, sommeralex <[hidden > email]<http://user/SendEmail.jtp?type=node&node=5716211&i=0>> > wrote: > > and what does this mea

Re: updating from 5.3.1 to 5.3.5

2012-09-11 Thread sommeralex
and what does this mean? tapestry core only exists as 5.3.4 http://mvnrepository.com/artifact/org.apache.tapestry/tapestry-core 2012/9/11 Kalle Korhonen-2 [via Tapestry] < ml-node+s1045711n5716208...@n5.nabble.com> > On Tue, Sep 11, 2012 at 8:51 AM, Lance Java <[hidden > email]

Re: updating from 5.3.1 to 5.3.5

2012-09-11 Thread sommeralex
thx se.unbound:tapestry-breadcrumbs:jar:1.9:compile -- View this message in context: http://tapestry.1045711.n5.nabble.com/updating-from-5-3-1-to-5-3-5-tp5716200p5716207.html Sent from the Tapestry - User mailing list archive at Nabble.com.

updating from 5.3.1 to 5.3.5

2012-09-11 Thread sommeralex
Hello! I have an error and wanted to debug it, but being in the debugging mode got me another error which showd me that i am not running 5.3.5. The first thing which is strange is that the VERSION which is being reported in the tapestry error log in my browser is showing an OLD tapestry version. 5

Localize grid "There is no data to display."

2012-09-08 Thread sommeralex
Hello! Does anybody know how to localise the "There is no data to display." message? alex -- View this message in context: http://tapestry.1045711.n5.nabble.com/Localize-grid-There-is-no-data-to-display-tp5716137.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: getting the visible domain name

2012-09-08 Thread sommeralex
thx -- View this message in context: http://tapestry.1045711.n5.nabble.com/getting-the-visible-domain-name-tp5716131p5716136.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user

getting the visible domain name

2012-09-07 Thread sommeralex
Hello! How can i get the domain name as shown in the browser? Several domains are linking to the same IP, but sometimes it is useful to get to know on which domain the user is. thx -- View this message in context: http://tapestry.1045711.n5.nabble.com/getting-the-visible-domain-name-tp57161

Re: domain forwarding

2012-09-06 Thread sommeralex
i will updated soon! promise. -- View this message in context: http://tapestry.1045711.n5.nabble.com/domain-forwarding-tp5716105p5716115.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe,

Re: domain forwarding

2012-09-06 Thread sommeralex
i was changing it yesterday so i guess this is the reason why for you everything looked fine. but THX for checking. -- View this message in context: http://tapestry.1045711.n5.nabble.com/domain-forwarding-tp5716105p5716114.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: domain forwarding

2012-09-06 Thread sommeralex
thx, i could solve it by setting the @ 188.40.34.137 in the zone file editor. -- View this message in context: http://tapestry.1045711.n5.nabble.com/domain-forwarding-tp5716105p5716113.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

domain forwarding

2012-09-06 Thread sommeralex
Hello! I have several domains for my project, which runs at 188.40.34.137. one domain is airwriting.de, the other domain is airwriting.com .com is on godaddy, de on another domain provider. both domains are forwarding to 188.40.34.137. BUT if i move my mouse over the links at www.airwriting.com,

Re: periodic zone updater

2012-09-06 Thread sommeralex
GREAT. yes, a serverside push suits my needs. thx! 2012/9/6 Lance Java [via Tapestry] < ml-node+s1045711n5716080...@n5.nabble.com> > Hi Alex, > > What's your use case for needing a periodic refresh? Does a serverside > push better suit your needs? If so, you might find tapestry-cometd [1] a > bet

Re: periodic zone updater

2012-09-05 Thread sommeralex
yet. > You should probably open a JIRA for a documentation task regarding > ZoneRefresh > > Cheers, > Dragan Sahpaski > > > On Wed, Sep 5, 2012 at 9:38 PM, sommeralex <[hidden > email]<http://user/SendEmail.jtp?type=node&node=5716070&i=0>> > wrote:

periodic zone updater

2012-09-05 Thread sommeralex
hello! I was looking for an example of a periodic zone update function and found this: http://tawus.wordpress.com/2011/07/01/a-periodic-zone-refresh-mixin-for-tapestry/#comment-501 claiming that it is already part of the tapestry core but i did not find something in the docs http://tapestry.apac

Re: @parameter Boolean not working?

2012-08-26 Thread sommeralex
thanx, could solve it, had nothing to do with the @parameter - was a bug in my code. -- View this message in context: http://tapestry.1045711.n5.nabble.com/parameter-Boolean-not-working-tp5715807p5715808.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

@parameter Boolean not working?

2012-08-26 Thread sommeralex
Hello, I have a component, which is taking a userId and (should) take a boolean. My component is implemented and already working with the userID - but not with the boolean. checking subscribed == true or checking with subscribed != null is never true. (so the boolean is always null) the componen

Re: macbook retina support

2012-08-15 Thread sommeralex
the window device ratio was the wrong example (due it is JS) apple mentions two others ways, but it seems they are "CSS" solutions header { background: -webkit-image-set( url(images/header.jpg)1x, url(images/header_2x.jpg) 2x); height: 150px; /* heig

Re: macbook retina support

2012-08-14 Thread sommeralex
i would prefer to write a "binding" like src="${context:/img/my.png}" but as some poster has mentioned before named "retina" so i can use it that way: "${retinaContext:/img/my.png}" the only thing this binding should do is 1. to check if the window.devicePixelRatio >= 2 and if, check if a my_2x.

Re: images dont resolve anymore

2012-08-14 Thread sommeralex
created an asset and solved it with toClientURL() thx! -- View this message in context: http://tapestry.1045711.n5.nabble.com/images-dont-resolve-anymore-tp5715400p5715423.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: images dont resolve anymore

2012-08-14 Thread sommeralex
it is also not working with the slash: writer.element("image", "src", "/img/icon/money.png", "title", text, "id", id ); the produced url is: http://www.airwriting.com/i

images dont resolve anymore

2012-08-14 Thread sommeralex
i have tooltip images which dont show up. see: http://www.airwriting.com/group/show/30 the tooltip is a component, which renders via the writer: writer.element("image", "src", "img/icon/help.png}", "title", text,

Re: macbook retina support

2012-08-13 Thread sommeralex
efix examples > wiki.apache.org/tapestry/Tapestry5HowTos > > On Monday, 13 August 2012, sommeralex <[hidden > email]<http://user/SendEmail.jtp?type=node&node=5715343&i=0>> > wrote: > > > Hello! > > > > The apple doc describe 3 ways for supporti

macbook retina support

2012-08-13 Thread sommeralex
Hello! The apple doc describe 3 ways for supporting retina images. My question, before i start to replace everything with javascript or css, is, if there will be an update of tapestry supporting the automatic retina with this syntax: src="${context:/img/img.png} because if not, i have to use java

Re: tapestry api and documentation

2012-08-13 Thread sommeralex
nts like a simple working OAUTH plugin e.g integrated with tapestry for e.g facebook. Maybe i should start a blog for tapestry beginners :-) alex 2012/8/13 Thiago H de Paula Figueiredo [via Tapestry] < ml-node+s1045711n5715328...@n5.nabble.com> > On Sun, 12 Aug 2012 08:02:20 -0300,

tapestry api and documentation

2012-08-12 Thread sommeralex
Is it true, that the tapestry api and documentation lacks in examples and actuality, or do I read the documentation in a wrong way? basic example, radio group: http://tapestry.apache.org/5.3.4/apidocs/org/apache/tapestry5/corelib/components/Radio.html 1. there is no example on how to make an opti

Re: image link problem with different domains linking to deployment domain

2012-08-06 Thread sommeralex
508...@n5.nabble.com> > On Sat, 04 Aug 2012 16:30:39 -0300, sommeralex > <[hidden email] <http://user/SendEmail.jtp?type=node&node=5715089&i=0>> > wrote: > > > i tried > > background:#FF url("${context:img/layout/bg.jpg}") repeat-x;

Re: image link problem with different domains linking to deployment domain

2012-08-04 Thread sommeralex
lative > notations like url(../img/layout/bg.jpg) or > url(../../img/layout/bg.jpg) depending on where your CSS file is. > > On Sat, Aug 4, 2012 at 3:30 PM, sommeralex <[hidden > email]<http://user/SendEmail.jtp?type=node&node=5715070&i=0>> > wrote: > > &g

Re: image link problem with different domains linking to deployment domain

2012-08-04 Thread sommeralex
t; but i have no idea, why.. >>>>> >>>>> >>>>> 2012/8/4 Alexander Sommer >>>>> >>>>>> ah, ok. >>>>>> >>>>>> forward: i have just a (static, hidden) domain forward

Re: image link problem with different domains linking to deployment domain

2012-08-04 Thread sommeralex
d set for the non >>>>> .com domains. >>>>> >>>>> if even .com has no image links, then it is very wired. because here >>>>> (austria, vienna) i see the images as it should be but only on .com >>>>> >>>>> hm... &g

Re: image link problem with different domains linking to deployment domain

2012-08-04 Thread sommeralex
t;>>> >>>> forward: i have just a (static, hidden) domain forward set for the non >>>> .com domains. >>>> >>>> if even .com has no image links, then it is very wired. because here >>>> (austria, vienna) i see the images as it

Re: image link problem with different domains linking to deployment domain

2012-08-04 Thread sommeralex
no image links, then it is very wired. because here >>> (austria, vienna) i see the images as it should be but only on .com >>> >>> hm... >>> >>> 2012/8/4 Thiago H de Paula Figueiredo [via Tapestry] < >>> ml-node+s1045711n5715062...@n5.nabble.com&g

Re: image link problem with different domains linking to deployment domain

2012-08-04 Thread sommeralex
nks, then it is very wired. because here >> (austria, vienna) i see the images as it should be but only on .com >> >> hm... >> >> 2012/8/4 Thiago H de Paula Figueiredo [via Tapestry] < >> ml-node+s1045711n5715062...@n5.nabble.com> >> >> On Sat

Re: image link problem with different domains linking to deployment domain

2012-08-04 Thread sommeralex
n it is very wired. because here > (austria, vienna) i see the images as it should be but only on .com > > hm... > > 2012/8/4 Thiago H de Paula Figueiredo [via Tapestry] < > ml-node+s1045711n5715062...@n5.nabble.com> > > On Sat, 04 Aug 2012 15:46:32 -0300, sommeralex &g

Re: image link problem with different domains linking to deployment domain

2012-08-04 Thread sommeralex
ml-node+s1045711n5715062...@n5.nabble.com> > On Sat, 04 Aug 2012 15:46:32 -0300, sommeralex > <[hidden email] <http://user/SendEmail.jtp?type=node&node=5715062&i=0>> > wrote: > > > Hello! > > Hi! > > For me, here in Brazil, the same files missi

Re: Tapestry 5 Book EAP Launched

2012-07-31 Thread sommeralex
so what is the deal now? if i a buy the book today, can i read a draft today, or do we have to wait more 31 days? Because then i would just wait for the final pdf. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-Book-EAP-Launched-tp5714877p5714915.html Sent fr

Re: scheduled services stops - @Scheduled(fixedDelay=1800000)

2012-07-31 Thread sommeralex
i am no using the chron job. which works.. thx. -- View this message in context: http://tapestry.1045711.n5.nabble.com/scheduled-services-stops-Scheduled-fixedDelay-180-tp5714882p5714914.html Sent from the Tapestry - User mailing list archive at Nabble.com.

scheduled services stops - @Scheduled(fixedDelay=1800000)

2012-07-30 Thread sommeralex
hi! I have defined a schedule job within my service class, which seems to STOP after some calls. @Scheduled(fixedDelay=180) // 30min 180 public void deleteOutdatedWeatherEntries() { System.out.println("clean cache:" + new Date()); logger.info("CLE

Re: Test if production or test mode..

2012-07-28 Thread sommeralex
> > BTW you can also use :- > > >${symbol:tapestry.production-mode} > > > regards > Taha > > > On Jul 28, 2012, at 2:19 PM, sommeralex wrote: > > > Thank you all for your answers. > > > > What I now did is just this in one of my pages: > >

Re: Test if production or test mode..

2012-07-28 Thread sommeralex
Thank you all for your answers. What I now did is just this in one of my pages: JAVA @Property @Symbol("tapestry.production-mode") private boolean productionMode; TML productionMode! My FrontendModule public static void contributeApplicationDefaults(MappedConfigu

Test if production or test mode..

2012-07-21 Thread sommeralex
@Value("${tapestry.production-mode}") @Property private boolean productionMode; this way sounds much easier than the crpytic form in the constructor: public class MyService implements MyServiceInterface { public MyService(@Value("${tapestry.production-mode}") boolean pro

Re: embedding google maps javascript into a tapestry page

2012-07-05 Thread sommeralex
thx, i will try that! 2012/7/5 Lance Java [via Tapestry] > You can't use ${scopeRadius} in a js file. Javascript files are static and > can be cached in the browser. What you can do is construct a JSONObject on > the serverside (based on dynamic values) and initialize the client. > > This can be

Re: embedding google maps javascript into a tapestry page

2012-07-05 Thread sommeralex
thank you AGAIN for your help. i will mention your name on http://www.airwriting.com/about/imprint if you agree on! i will try to solve it by myself, but, as you problably already have seen, i am looking for someone to fix this :-) -- View this message in context: http://tapestry.1045711.n5.nabb

Tapestry Job Offer

2012-07-05 Thread sommeralex
Hi! I need a tapestry expert who is able to fix the bugs on the following pages: 1. http://www.airwriting.com/en/group/create 2. http://www.airwriting.com/en/group/create 3. http://www.airwriting.com/en/group/listlocalgroups Bug 1: The Javascript Lib has a loading time out which forces it to sto

Re: two forms on one page - persist does not work.

2012-06-30 Thread sommeralex
ok, thx! -- View this message in context: http://tapestry.1045711.n5.nabble.com/two-forms-on-one-page-persist-does-not-work-tp5714196p5714213.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscrib

Re: BreadCrumbsModule error

2012-06-25 Thread sommeralex
code solve the problem> using the latest tapestry version instead of 2.5 thx for any help -- View this message in context: http://tapestry.1045711.n5.nabble.com/BreadCrumbsModule-error-tp5713794p5714065.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Re: BreadCrumbsModule error

2012-06-16 Thread sommeralex
no, if i comment out your code, everything works fine again. 2012/6/16 Alexander Sommer > so, what do you want me to do? > > 2012/6/16 Lance Java [via Tapestry] < > ml-node+s1045711n5713939...@n5.nabble.com> > > This is a different error to the document linker error you were >> originally >> co

Re: BreadCrumbsModule error

2012-06-16 Thread sommeralex
so, what do you want me to do? 2012/6/16 Lance Java [via Tapestry] < ml-node+s1045711n5713939...@n5.nabble.com> > This is a different error to the document linker error you were originally > complaining about. I'm guessing that if you comment out my code in your > appmodule, you will still have t

Re: BreadCrumbsModule error

2012-06-15 Thread sommeralex
1. only on the server 2. i will check everything again, and if, upload / test again and give feedback asap. 3. i was testing it with 0.0.3-Snap thx 2012/6/15 Lance Java [via Tapestry] < ml-node+s1045711n5713916...@n5.nabble.com> > For better or worse, this is a new exception. > 1. Is this failur

Re: BreadCrumbsModule error

2012-06-14 Thread sommeralex
I will try it in the evening! thx! hope, that it will work then. alex 2012/6/14 Lance Java [via Tapestry] < ml-node+s1045711n5713870...@n5.nabble.com> > As I said before, it seems like the zbreadcrumbs MarkupRendererFilter is > running before the DocumentLinker even though it should run after.

Re: BreadCrumbsModule error

2012-06-13 Thread sommeralex
ok, i will check this and send you the log asap. thanks 2012/6/13 Thiago H de Paula Figueiredo [via Tapestry] < ml-node+s1045711n5713833...@n5.nabble.com> > On Wed, 13 Jun 2012 04:13:16 -0300, sommeralex > <[hidden email] <http://user/SendEmail.jtp?type=node&node=5713833&a

Re: BreadCrumbsModule error

2012-06-13 Thread sommeralex
Hi Thiago! How can i get the log/console if my project is already deployed on the remote server? thx alex 2012/6/12 Thiago H de Paula Figueiredo [via Tapestry] < ml-node+s1045711n5713827...@n5.nabble.com> > On Tue, 12 Jun 2012 18:12:25 -0300, sommeralex > <[hidden emai

Re: BreadCrumbsModule error

2012-06-12 Thread sommeralex
@n5.nabble.com> > Did you do steps 1,2,3? > > On Tue, Jun 12, 2012 at 10:24 PM, sommeralex <[hidden > email]<http://user/SendEmail.jtp?type=node&node=5713820&i=0>> > wrote: > > > Hi! > > > > If i am changing to 0.0.3-Snapshot it keeps tellin

Re: BreadCrumbsModule error

2012-06-12 Thread sommeralex
i am also trying to implement my own style css, but whatever path i am writing in as parameter, fails. path of my CSS: /Users/alexandersommer/git/Airwriting/modules/server-application/src/main/webapp/css/main.css path configuration.add(BreadCrumbsConstants.BREADCRUMBS_DEFAULT_STYLESHEET, "classp

  1   2   >