Re: Multiple Tapestry Applications

2007-11-12 Thread Omar Valerio
Well, not in a single WAR. What you need is to built an *EAR* (Enterprise
Application Archive), and package inside there the WAR's of your tapestry
developed applications.. What it is important to note is that WAR is an
standard for a web application developed by Sun for the Java server side
technology like Tapestry.

cheers,
ovm

On Nov 12, 2007 12:06 PM, Pablo Ruggia [EMAIL PROTECTED] wrote:

 Hi !
 Is it possible to run multiple Tapestry Applications in the same Web
 Application (same war).
 Are there any known issues doing so, like Hivemind Registry clashes or
 some
 singletons that the applications will have to share, etc ...
 Thanks in advance.



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 willing to learn.
Also I'm a fan of rich content apps. AJAX: not Tacos but GWT. Please
review my CV, then drop me an email if you feel I could be of any
help.

Regards,
Omar Valerio M
[EMAIL PROTECTED]On 11/1/06, Steve Motola [EMAIL PROTECTED]
 wrote: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-5521The Lab, LLChttp://www.thelabllc.comContent is for intended recipient only.
This message was sent using IMP, the Internet Messaging Program.-
To unsubscribe, e-mail: [EMAIL PROTECTED]For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: [JOB] Tapestry Developer

2006-11-01 Thread Omar Valerio

Sorry List  I somehow forget to change the recipient...

:(


Re: Border question

2006-06-01 Thread Omar Valerio

Hi Carl,

You should use some sort of JavaScript based menu generation solution. They
are plenty of them, most of them allow you to configure menu generation
based on some sort of configuration file, or you can even handle the JS been
written on the fly by your web engine. Personally I use:

FREESTYLE MENUS v1.0 RC (c) 2001-2005 Angus Turnbull,
http://www.twinhelix.com

It is generated via an HTML List,  like this:

span
ul class=menulist id=listMenuRoot
 lia href=# jwcid=@ActionLink listener=ognl: listeners.goHome
Home/a/li
 lia href=#Cataacute;logos/a
  ul
   lia href=# jwcid=@ActionLink listener=ognl:
listeners.goVistaRegionRegiones./a
   /li
   lia href=# jwcid=@ActionLink listener=ognl:
listeners.goVistaDistritoDistritos./a
   /li
   lia href=# jwcid=@ActionLink listener=ognl:
listeners.goVistaFuerzaFuerzas./a
   /li
  /ul   !-     !
  lia jwcid=@ServiceLink service=restart
href=void(0)Salir/a/li
/ul

script type=text/javascript
!-- Script menu starts here
var listMenu = new FSMenu('listMenu', true, 'visibility', 'visible',
'hidden');
listMenu.cssLitClass = 'highlighted';

var arrow = null;
if (document.createElement  document.documentElement) {
 arrow = document.createElement('span');
 arrow.appendChild(document.createTextNode(''));
 arrow.className = 'subind';
}

addEvent(window, 'load', new Function('listMenu.activateMenu(listMenuRoot,
arrow)'));
//Script menu ends here --
/script

   hr /

/span
Regards,
---
Omar V.M.

On 6/1/06, Andreas Bulling [EMAIL PROTECTED] wrote:


Hi Mark,

sounds as a solution even if I don't understand what you were trying to
explain...
Some sample code would help a lot, is there something you can show
us/commit
to one of the widely known Tapestry repositories?

Cheers,
Andreas

On 01. Jun 2006 - 14:51:00, Mark Stang wrote:
| There is another option to get around that restriction.  It is what
Howard calls my mutant application.  I have one 
Frame.html/Frame.page/Frame.java.  All
of my other pages are popups.  There are about 5 or 6 of those.  In
addition, I have 130 components.  None of my components have any border
content, it is all in the Frame.  As part of the Frame I have Breadcrumbs
and something we call Headcrumbs.  Headcrumbs are a higher level menu.  So,
we can have a bunch of breadcrumbs within each headcrumb.  Headcrumbs are
a group of breadcrumbs.  Breadcrumbs are reusable across multiple
Headcrumbs.  Any one breadcrumb knows nothing about any of its fellow
breadcrumbs in a headcrumb.
|
| Basically, we have a wizard application with 130 screens.
|
| The border component replaces pages, we have one page that replaces
components.  There is an age-old Tapestry question about whether you create
components or pages?  What is your level of re-use?  We chose re-use at the
level of components.
|
| regards,
|
| Mark


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]