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
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
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
, 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
>
&
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
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
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
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
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) {
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
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
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
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
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
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
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
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
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
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
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,
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.
://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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
-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
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
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
-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
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
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
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
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]
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
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
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
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
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
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]
]> 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
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
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
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
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
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:
>
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
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
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
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:
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
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.
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!
...
/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]
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
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
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
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
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
Sorry List I somehow forget to change the recipient...
:(
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
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
"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
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
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
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: [
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
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
84 matches
Mail list logo