Re: Job opening

2017-05-02 Thread Thiago H. de Paula Figueiredo
I've been just informed that remote working is an option. The office is in Boston, MA, USA, and I work from my home in Belo Horizonte, MG, Brazil. On Tue, May 2, 2017 at 10:45 AM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > Hi! > > There's a job openi

Job opening

2017-05-02 Thread Thiago H. de Paula Figueiredo
Hi! There's a job opening at the PubFactory(.com) team, where I've been working the last 7 years. The product uses Tapestry and Tapestry-IoC heavily, so, if you apply, don't forget to mention your T5 skills. :) http://www.oreilly.com/careers/?p=job%2Fonac5fwy -- Thiago

Re: Canceling Periodic Job

2016-06-17 Thread abangkis
svax/Jacquard/blob/master/src/main/java/com/trsvax/jacquard/services/JobRunnerTapestry.java > > > > > > > https://github.com/trsvax/Jacquard/blob/master/src/main/java/com/trsvax/jacquard/pages/job/JobIndex.java > > > > Jobs are started in the JobRunnerTapestry service and the set of

Re: Canceling Periodic Job

2016-06-17 Thread Dmitry Gusev
, 2016 at 2:54 PM, Barry Books wrote: > see > > > https://github.com/trsvax/Jacquard/blob/master/src/main/java/com/trsvax/jacquard/services/JobRunnerTapestry.java > > > https://github.com/trsvax/Jacquard/blob/master/src/main/java/com/trsvax/jacquard/pages/job/JobIndex.java > &

Re: Canceling Periodic Job

2016-06-17 Thread Barry Books
see https://github.com/trsvax/Jacquard/blob/master/src/main/java/com/trsvax/jacquard/services/JobRunnerTapestry.java https://github.com/trsvax/Jacquard/blob/master/src/main/java/com/trsvax/jacquard/pages/job/JobIndex.java Jobs are started in the JobRunnerTapestry service and the set of jobs is

Canceling Periodic Job

2016-06-17 Thread abangkis
Hai, I'm creating a periodic job on startup from this link. http://blog.tapestry5.de/index.php/2011/09/18/scheduling-jobs-with-tapestry/ So i wonder how can i stop the job using a button? Since the periodic job is created on startup so the returned PeriodicJob is inaccessible from a

Re: How to build xml sitemap with cron job and make available publicly

2015-01-19 Thread Kalle Korhonen
On Mon, Jan 19, 2015 at 1:26 PM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Mon, 19 Jan 2015 19:05:49 -0200, George Christman < > gchrist...@cardaddy.com> wrote: > >> Well that is what I'm currently doing, but the problem I'm facing is >> the app generates millions of pages and

Re: How to build xml sitemap with cron job and make available publicly

2015-01-19 Thread Thiago H de Paula Figueiredo
On Mon, 19 Jan 2015 19:05:49 -0200, George Christman wrote: Well that is what I'm currently doing, but the problem I'm facing is the app generates millions of pages and your only allowed to have 50k per sitemap. Not really a problem. See http://www.sitemaps.org/protocol.html, section Usin

Re: How to build xml sitemap with cron job and make available publicly

2015-01-19 Thread George Christman
This is what I'm currently doing but it isn't working very well do to the size of these things. public StreamResponse onActivate(String categoryType) { UrlSet urlset = new UrlSet(); List results = crudDAO.getAll(ZipDetail.class); for (ZipDetail zipDetail : results) {

Re: How to build xml sitemap with cron job and make available publicly

2015-01-19 Thread George Christman
Well that is what I'm currently doing, but the problem I'm facing is the app generates millions of pages and your only allowed to have 50k per sitemap. So that is the first major issue I'm facing which this library addresses. I was hoping to put this on a nightly task so a search engine wouldn't be

Re: How to build xml sitemap with cron job and make available publicly

2015-01-19 Thread Thiago H de Paula Figueiredo
On Mon, 19 Jan 2015 18:41:31 -0200, George Christman wrote: Caused by: java.io.FileNotFoundException: /sitemap.xml (Permission denied) Here's the cause: you're trying to write a file to the root folder of your filesystem. Sitemaps are simple, so why don't you write a Tapestry page to g

Re: How to build xml sitemap with cron job and make available publicly

2015-01-19 Thread George Christman
Hi Thiago, I actually just stumbled upon the sitemapgen4j library and yes I'm using maven. https://code.google.com/p/sitemapgen4j/ java doc http://sitemapgen4j.googlecode.com/svn-history/r7/site/javadoc/com/redfin/sitemapgenerator/WebSitemapGenerator.html#WebSitemapGenerator%28java.lang.String,%2

Re: How to build xml sitemap with cron job and make available publicly

2015-01-19 Thread Thiago H de Paula Figueiredo
On Mon, 19 Jan 2015 17:13:26 -0200, George Christman wrote: Hi guys, I'm looking to build nightly sitemaps and make them available publicly. The problem I'm facing is once I create the sitemap, where do I put it so that it's available publicly? The root context folder (/src/main/webapp if y

How to build xml sitemap with cron job and make available publicly

2015-01-19 Thread George Christman
Hi guys, I'm looking to build nightly sitemaps and make them available publicly. The problem I'm facing is once I create the sitemap, where do I put it so that it's available publicly? Currently it's available in the Web Pages package where it has some links in the root xml file that points to dyna

Re: Use of PageRenderLinkSource in a scheduled job

2013-09-06 Thread Kalle Korhonen
On Fri, Sep 6, 2013 at 2:03 AM, Lance Java wrote: > To generate a link, you need a request… so I suggest you do one of the > following > You only need the request to find out where your service is if you haven't explicitly specified a hostname. If you have, PageRenderLinkSource uses the HOSTNAME

Re: Use of PageRenderLinkSource in a scheduled job

2013-09-06 Thread Martin Kersten
Thanks barry, this is a good advice. I will give it a try :) Cheers, Martin (Kersten) 2013/9/6 Barry Books > I make all of my batch jobs Tapestry pages and use Hudson scheduled tasks > to access them. This give you more control, job history and email > notifications on failu

Re: Use of PageRenderLinkSource in a scheduled job

2013-09-06 Thread Barry Books
I make all of my batch jobs Tapestry pages and use Hudson scheduled tasks to access them. This give you more control, job history and email notifications on failure. Since the jobs are just pages you can just go to them to debug them and things like PageRenderLinkSource work as you would expect. I

Re: Use of PageRenderLinkSource in a scheduled job

2013-09-06 Thread Lance Java
To generate a link, you need a request… so I suggest you do one of the following 1. Use cron and wget to hit your app via a http request instead of a @Startup job inside your app 2. Generate the link at some point in time when you have a HTTPServletRequest and save it for later 3. Use a @Symbol

Use of PageRenderLinkSource in a scheduled job

2013-09-06 Thread Nathan Quirynen
Hi, I added a scheduled job to my Tapestry application, where I want to daily check if there are new tickets and send a mail to people assigned to these tickets. So I've added it in AppModule as following: @Startup public static void scheduleJobs( PeriodicExe

Re: request in job

2013-08-01 Thread Jan Fryblik
x27;s just a web page) 2. More control over running jobs 3. Hudson keeps statistics 4. No problems when load balanced The only draw back is Hudson has 1 minute scheduling resolution. I've only got 1 job that runs every minute. Most are every 15 minutes but some are yearly. On Thu, Aug 1,

Re: request in job

2013-08-01 Thread Barry Books
I've only got 1 job that runs every minute. Most are every 15 minutes but some are yearly. On Thu, Aug 1, 2013 at 3:59 AM, Lance Java wrote: > I had this same problem with tapestry-cometd where I needed to render > components asynchronously outside of a normal request / response.

Re: request in job

2013-08-01 Thread Lance Java
://github.com/uklance/tapestry-cometd/blob/master/src/main/java/org/lazan/t5/cometd/services/internal/ComponentJSONRendererImpl.java I started to extract the logic into a reusable tapestry-offline module but never finished the job https://github.com/uklance/tapestry-offline The idea was to split the

request in job

2013-08-01 Thread Jan Fryblik
Hi guys,i've run into terrible issue with jobs. I need to generate link which is afterwards sent to user, but issue is... Job is not executed with http request so that i haven't informations about request to generate the link, so it throws NullPointerException.Is there any other o

Re: Stopping/Removing a job from PeriodicExecutor

2013-05-22 Thread Michael Gentry
t; > I currently have a project that is using a PeriodicExecutor to kick off > processes on a regular basis. I need to expand on that so that I can stop > a running job, reschedule the times, and remove the job completely from the > PeriodicExecutor. Don't see any sort of code out th

Re: Stopping/Removing a job from PeriodicExecutor

2013-05-22 Thread Lenny Primak
Or you can use JEE scheduling API. On May 22, 2013, at 1:21 PM, Chris Cureau wrote: > Hi there! > > I currently have a project that is using a PeriodicExecutor to kick off > processes on a regular basis. I need to expand on that so that I can stop > a running job, reschedule

Stopping/Removing a job from PeriodicExecutor

2013-05-22 Thread Chris Cureau
Hi there! I currently have a project that is using a PeriodicExecutor to kick off processes on a regular basis. I need to expand on that so that I can stop a running job, reschedule the times, and remove the job completely from the PeriodicExecutor. Don't see any sort of code out there

Tapestry Job Offer

2012-07-05 Thread sommeralex
interested, write me a mail on alexander.som...@gmail.com with a cost estimation. thx! alex -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Job-Offer-tp5714300.html Sent from the Tapestry - User mailing list archive at Nabble.com

Job Offer - Tapestry developer

2011-12-09 Thread Florian Parain
Hi, I'm working on Contract Live, a Contract Management Software based on Tapestry. http://www.contract-live.com/ Contract Live office is located in Paris, France. We are currently looking for Tapestry developers. Below, you can find a job offer in French. If you have any questions, be pl

New Tapestry Job

2011-10-11 Thread Roberto Monfardini
interested or know someone who may be, please get in touch. Cheers! Roberto Monfardini robe...@monarchit.co.uk 01212373217 -- View this message in context: http://tapestry.1045711.n5.nabble.com/New-Tapestry-Job-tp4890971p4890971.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: Job offer for tapestry developer (m/f)

2011-07-05 Thread mahendra.athneria
Hi Andreas Pursian , I am interested. Please let me know the details. Regards, Mahendra -- View this message in context: http://tapestry.1045711.n5.nabble.com/Job-offer-for-tapestry-developer-m-f-tp2431360p4552241.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: Accessing tapestry's hibernate instance from a quartz job

2011-07-04 Thread g...@liftyourgame.com
Hi Howard, Are you still going to release your Quartz / Hibernate module for Tapestry? Regards, Greg. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Accessing-tapestry-s-hibernate-instance-from-a-quartz-job-tp2421535p4552022.html Sent from the Tapestry - User mailing

Re: Tapestry Job Opening

2010-11-29 Thread Robert Zeigler
Heh... your website is written in php (or else you have some really funky server-side mappings); you can't help but appreciate the irony. :) Robert On Nov 29, 2010, at 11/2910:45 AM , Ben Dotte wrote: > Hi All, > > We're looking for a new Tapestry developer at Widen Enterprises, Inc. > The ful

Re: Tapestry Job Opening

2010-11-29 Thread Howard Lewis Ship
I regularly work with the developers at Widen and I can vouch that it's a fun place to work and a great team. They're doing ambitious work and really using Tapestry to its fullest. On Mon, Nov 29, 2010 at 8:45 AM, Ben Dotte wrote: > Hi All, > > We're looking for a new Tapestry developer at Widen

Tapestry Job Opening

2010-11-29 Thread Ben Dotte
Hi All, We're looking for a new Tapestry developer at Widen Enterprises, Inc. The full description and contact information is available here: http://www.widen.com/careers/careers_software_dev.php We've been using Tapestry extensively since v2 and we have lots of exciting new projects in the work

RE: Quartz Job setup with JobDetails requires parameter free constructor - how to inject Service bindings

2010-07-13 Thread Alfie Kirkpatrick
It's still a WIP but I created a TapestryJobCreator which gets a PerthreadManager and a Runnable (your service) in the JobDataMap. This just calls run() on the service and does any cleanup. I need to tidy up the job creation part but you could easily get to the point where you had some

Re: Quartz Job setup with JobDetails requires parameter free constructor - how to inject Service bindings

2010-07-12 Thread Kalle Korhonen
You create a JobSchedulingBundle (service), create a JobDataMap in it, add all the services to the map you need in your Job and then then get the map via executionContext.getMergedJobDataMap(). The concept behind JobDataMap is solid but you could arguably make a tighter and easier-to-use Tapestry

Quartz Job setup with JobDetails requires parameter free constructor - how to inject Service bindings

2010-07-12 Thread Daniel Henze
Hi there, I am using chenillekit-quartz integration and followed the example setup on the module homepage (http://chenillekit.codehaus.org/chenillekit-quartz/index.html). All good so far, got things up and running. But now I want to run a job that has other services (DAO, MailService) as

Re: Accessing tapestry's hibernate instance from a quartz job

2010-06-24 Thread Kalle Korhonen
t; and de-serialize correctly. So, you can inject the Session into some > code that creates a Quartz job, storing the Session in an instance > variable. > > However, you'll miss out on a few things; you need a wrapper around > executing Quartz jobs, one that invokes the Pe

Re: Accessing tapestry's hibernate instance from a quartz job

2010-06-24 Thread Howard Lewis Ship
Well, within a single JVM, Tapestry IoC service proxies will serialize and de-serialize correctly. So, you can inject the Session into some code that creates a Quartz job, storing the Session in an instance variable. However, you'll miss out on a few things; you need a wrapper around exec

Accessing tapestry's hibernate instance from a quartz job

2010-06-24 Thread Stephen Hogarth
I have a T5 application connected to a database using hibernate working fine. To perform background operations on the database, I have a quartz scheduler servlet included in the same project that calls the background job as expected. I would like to get an instance of tapestry's hibe

Job offer for Tapestry Programmer in Hamburg, Germany

2010-06-01 Thread Lutz Hühnken
Sorry for the German, but this is a job offer in a German company, and knowledge of German is a requirement for the job... Hallo, wir suchen eine/n Programmierer/in in Festanstellung in Hamburg. Tapestry-Kenntnisse wären von Vorteil, da dies unser

Re: Job offer for tapestry developer (m/f)

2010-04-12 Thread Thijs Suijten
Hi Andreas, I saw your job application in the Tapestry mailing lists. I work at a company that develops international web applications using Tapestry. I think Tapesty is a great web application framework, we've successfully been developing web applications since the introduction of Tapes

Re: Job offer for tapestry developer (m/f)

2010-04-12 Thread Andreas Pursian
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Uli, hi Piero, thank both of you for the hints. I think Uli is right. Please find the detailed job description under http://www.getjobs.net/documents/content/20100324_Auschreibung_AnwendungsentwicklerIn_Java_Final.pdf @Piero: If you are

Re: Job offer for tapestry developer (m/f)

2010-04-12 Thread Ulrich Stärk
Probably deleted by ezmlm. Andreas, you should either include the contents directly in your mail or post a link to the PDF document. Cheers, Uli On 12.04.2010 13:37, Piero Sartini wrote: Hello Andreas. AGEF (www.agef.net) is a german non-profit organisation, who is working in the field of i

Re: Job offer for tapestry developer (m/f)

2010-04-12 Thread Piero Sartini
Hello Andreas. > AGEF (www.agef.net) is a german non-profit organisation, who is working > in the field of international development cooperation. For one of our > projects (www.alumniportal-deutschland.org) we are looking for a part > time tapetry5 (Java Web) developer. The work will mostly invol

Job offer for tapestry developer (m/f)

2010-04-12 Thread Andreas Pursian
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dear list members, AGEF (www.agef.net) is a german non-profit organisation, who is working in the field of international development cooperation. For one of our projects (www.alumniportal-deutschland.org) we are looking for a part time tapetry5 (Java

[JOB] Looking for t5 contractors

2010-03-15 Thread dan
Hey all. We are looking for good t5 contractors (full-time optimally). We are located in Boston, MA, USA. Located locally is of course preferred but remote is okay too. Here's a short-list of the things I'm looking for: • T5 (of course) • Some experience building some serious software

[JOB] Looking for T5 software engineer in Boston

2010-02-03 Thread dan
Hey all. I'm looking for a full-time, on-site hire for a T5 software engineer in boston immediately. Position will be posted in all the usual places but figured I'd give you guys a head start. Here's the job posting: Web Application / Software Engineer Interactive Fact

Re: JOB

2008-11-11 Thread devilabit
Hi, As per the post below I was looking for some dev work using tapestry in Montreal. I managed to find a job and am in the process of introducing tapestry as the web app framework of choice here. We are looking at expanding the team and are lookging for a few developers. If you are a Java

JOB

2008-09-22 Thread devilabit
in context: http://www.nabble.com/JOB-tp19613380p19613380.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: part-time Tapestry job

2008-06-30 Thread Patrick Moore
aid to learn this codebase, if > >1. you document as you learn >2. you create example code to include in the documentation. >3. the code is confusing, you do a good job of refactoring - after >first discussing change. >4. you discover errors or inconsistencies, cre

Re: A Tapestry job

2008-04-28 Thread chatauskunft
rs" > Betreff: Re: A Tapestry job > Thanks, Toby for your interest. Many other Tapestry users have also > responded via direct mail and things are looking good. But we need more > responses. For those reading who haven't yet responded, do so because this > is a great

Re: A Tapestry job

2008-04-28 Thread Rob Smeets
Put aside all what I've caused you in the past. Bury those emotions, please. On Mon, Apr 28, 2008 at 3:23 PM, <[EMAIL PROTECTED]> wrote: > Hi there! > > How long does the project last and how much do you pay? > > I would be available in June. > > Thanks! > > Toby

Re: A Tapestry job

2008-04-28 Thread chatauskunft
Hi there! How long does the project last and how much do you pay? I would be available in June. Thanks! Toby Betreff: A Tapestry job > Hi, > > At the company where I'm working for, I've been recently assigned the task > to lead a team in re-writing an > existing T

A Tapestry job

2008-04-28 Thread Rob Smeets
oking for 2 Tapestry developers to help with this effort. The potential candidate doesn't need an experience with our chosen framework since your experience in Tapestry would be sufficient to follow our quick on-the-job training for you to get up and running quickly. That framework is well engineerd

Re: JOB: Tapestry developer

2008-04-09 Thread Thiago HP
nded nor I was talking about nationality preferences. :) I was just lamenting I cannot apply for the job . . . ;) -- Thiago - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JOB: Tapestry developer

2008-04-09 Thread Alexander Lamb
]> wrote: Since we are in Switzerland, applicants must either be of Swiss nationality, holder of Swiss C permit or European Union nationals. I have been developing a site in Tapestry 5 (already in production) and I'm looking for a job, specially in Europe, more specially England (I lived t

Re: JOB: Tapestry developer

2008-04-09 Thread Thiago HP
On 4/9/08, Alexander Lamb <[EMAIL PROTECTED]> wrote: > Since we are in Switzerland, applicants must either be of Swiss > nationality, holder of Swiss C permit or European Union nationals. I have been developing a site in Tapestry 5 (already in production) and I'm looking for a

JOB: Tapestry developer

2008-04-09 Thread Alexander Lamb
Hi all, Sorry for this slightly off-topic post. We are a small self-funded company based in Geneva doing most of our developments in Tapestry 5 / Cayenne (see our web site in signature). We are looking to hire someone who could help us with development tasks, initially on the ongoing proje

Job Opportunity for Developers, Java Web at Fredhopper

2007-12-21 Thread Vasil Kokareshkov
today! -- View this message in context: http://www.nabble.com/Job-Opportunity-for-Developers%2C-Java-Web-at-Fredhopper-tp14456819p14456819.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e

Re: Tapestry job opening

2007-12-19 Thread Joachim Van der Auwera
Belgian citizenship is not a requirement. As long as you have the skills... Joachim Joshua Jackson wrote: Hi there, I'm interested with the job opening but before I proceed with applying, does it require me to be a Belgian citizen? Since currently I still reside in Indonesia but willi

Re: Tapestry job opening

2007-12-19 Thread Joshua Jackson
Hi there, I'm interested with the job opening but before I proceed with applying, does it require me to be a Belgian citizen? Since currently I still reside in Indonesia but willing to move. Thanks in advance, On 12/19/07, Joachim Van der Auwera <[EMAIL PROTECTED]> wrote: >

Tapestry job opening

2007-12-19 Thread Joachim Van der Auwera
Synergetics, a Belgian IT research company is looking for java developers. The work will mostly involve building and improving application user interfaces using tapestry5. Short information and more info can be found at http://www.synergetics.be/html/jobs.html Though the opening is for full

Re: tapestry job I created on odesk... can't afford a lot but if you know someone who wants some pocket money...

2007-05-28 Thread Patrick Moore
Thanks! -Pat On 5/28/07, Andreas Andreou <[EMAIL PROTECTED]> wrote: dojo.dom.createDocumentFromText can help for client-side validation On 5/29/07, Patrick Moore <[EMAIL PROTECTED]> wrote: > > Hi there, > > I created a odesk job for someone to help me finish a xml t

Re: tapestry job I created on odesk... can't afford a lot but if you know someone who wants some pocket money...

2007-05-28 Thread Andreas Andreou
dojo.dom.createDocumentFromText can help for client-side validation On 5/29/07, Patrick Moore <[EMAIL PROTECTED]> wrote: Hi there, I created a odesk job for someone to help me finish a xml translator that will be contributed back to tapestry. I have done a lot of design and a fair amo

tapestry job I created on odesk... can't afford a lot but if you know someone who wants some pocket money...

2007-05-28 Thread Patrick Moore
Hi there, I created a odesk job for someone to help me finish a xml translator that will be contributed back to tapestry. I have done a lot of design and a fair amount of code as well, but I don't have the time to finish it off. But if you know someone who does the job is here:

Job Offer in Miami: 1 Java/Tapestry Developer, 1 Web Designer

2007-05-09 Thread Jacob Bergoo
Hi all, sorry to spam the list with this Job Offer but I figure that it could be of interest to know that we are looking to expand our (Tapestry) Development Team here in Miami Lakes. We are currently 3 Java/Tapestry Developers, 2 DBA, 1 Web Designer, 2 Sys. Admin and 2 Support Guys. We are

[JOB] Lucene

2007-02-23 Thread Steve Motola
Any Lucene experts available for contract? Spring / Hibernate a big plus. Get in touch with me if interested. Steve Motola [EMAIL PROTECTED] (310) 422-5521 The Lab, LLC http://www.thelabllc.com Content is for intended recipient only.

[JOB] Tapestry Developer

2007-01-18 Thread Steve Motola
Tapestry developers needed for cool client project. Be versed in Tapestry 3/4, Hibernate, Spring. Familiarity with Ajax/Tacos a plus. Please be a fluent English speaker / writer. Work is purely remote, outside of US ok too. Send your resume and rates. Thanks! ...

Re: Job Offer in Miami, US

2006-12-22 Thread jake123
/Job-Offer-in-Miami%2C-US-tf2866216.html#a8023894 Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Job Offer in Miami, US

2006-12-21 Thread Howard Lewis Ship
both independently and as part of a team. * Experience with both unit testing and integrated system testing. This job requires a commitment to excellence and the ability to function in a small team-oriented environment. Apply to Investacorp: [EMAIL PROTECTED] [EMAIL PROTECTED] -- View this message in co

RE: Job Offer in Miami, US

2006-12-21 Thread jake123
gt; Sent: Thursday, December 21, 2006 11:05 AM > To: users@tapestry.apache.org > Subject: Job Offer in Miami, US > > > > Location: Miami Lakes, Florida, United States > > Investacorp Inc., a leading, privately owned broker-dealer firm, seeks to > hire a System Develop

RE: Job Offer in Miami, US

2006-12-21 Thread Greg.L.Cormier
Damn, jobs down south are EXTRA tempting at this time of year! -Original Message- From: jake123 [mailto:[EMAIL PROTECTED] Sent: Thursday, December 21, 2006 11:05 AM To: users@tapestry.apache.org Subject: Job Offer in Miami, US Location: Miami Lakes, Florida, United States Investacorp

Job Offer in Miami, US

2006-12-21 Thread jake123
part of a team. * Experience with both unit testing and integrated system testing. This job requires a commitment to excellence and the ability to function in a small team-oriented environment. Apply to Investacorp: [EMAIL PROTECTED] [EMAIL PROTECTED] -- View this message in context: http

Job Offer in Germany/Berlin

2006-12-19 Thread Ron Piterman
Hi All, The Company I am working for is searching for tapestry developer in Berlin/Germany. The application we are developing is base on tapestry 4.0 with a custom ajax extention based on dojo. The team contains currently 3 highly skilled j2ee developers and 1 front end (tapestry) developer. On

Re: [JOB] Tapestry Developer

2006-11-01 Thread Omar Valerio
Sorry List I somehow forget to change the recipient... :(

Re: [JOB] Tapestry Developer

2006-11-01 Thread Omar Valerio
Hi Steve, I need the job, please further explain on technology and project concerns. Let me tell you a little bit about my experience. I'm certified as SCJP 1.4. I have completed handful of projects with Tapestry 3 . All them using Hibernate. No real working experience with Spring but willi

[JOB] Tapestry Developer

2006-11-01 Thread Steve Motola
Current need for a Tapestry developer for client project. Familiarity with Tapestry 3 and 4. Versed in Hibernate and Spring. Tacos a plus. Send resumes and questions to [EMAIL PROTECTED] Steve Motola [EMAIL PROTECTED] (310) 422-5521 The Lab, LLC http

Re: Submit Windows Print job

2006-09-29 Thread Danny Angus
"Jesse Kuhnert" <[EMAIL PROTECTED]> wrote on 29/09/2006 02:28:47: > Yep...Some might even suggest that in this scenario you could provide a page > with a slightly modified @Border (if you are using such a component) to cut > out cruft not needed in printing.. (Like navigation / etc..) or use cs

Re: Submit Windows Print job

2006-09-28 Thread Jesse Kuhnert
Yep...Some might even suggest that in this scenario you could provide a page with a slightly modified @Border (if you are using such a component) to cut out cruft not needed in printing.. (Like navigation / etc..) On 9/28/06, andyhot <[EMAIL PROTECTED]> wrote: html+js can do this: PRiNT Me Jo

Re: Submit Windows Print job

2006-09-28 Thread andyhot
html+js can do this: PRiNT Me Josh Joy wrote: > Hi All, > > Is it possible to create a link thru tapestry such > that when a user > clicks it, it opens up the windows print screen dialog > box? > > Thanks, > Josh > > - > To unsu

Submit Windows Print job

2006-09-28 Thread Josh Joy
Hi All, Is it possible to create a link thru tapestry such that when a user clicks it, it opens up the windows print screen dialog box? Thanks, Josh - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

Job Offer: Agile Tapestry, Spring Webflow, Ruby (Prague, Czech Republic)

2006-08-08 Thread Karel Miarka
Hi, We are searching for enthusisastic agile developers for full time job based in Prague. Let us know, if you like to write tests, trigger automatic builds, do refactoring, code reviews, create code generators, do metaprograming and more in Java, Tapestry 4, Spring webflow, Ruby, Ruby on Rails

Job Offer: Java Web-Frontend Developer (Hamburg, Germany)

2006-07-04 Thread Christian Mittendorf
Hello! Hope this message is not too offtopic... the company I'm working for is currently searching for Java developers with web-frontend experience. Knowledge of Tapestry is not required. However, all of our frontend development in the team is done using Tapestry and Cayenne. It's a permanen