Re: [OT] Re: Maven Warning. Ubuntu Users.; javacodegeeks.com : Global Impact at the highest levels.

2020-01-11 Thread Zahid Rahman
nswer was xenophonobic and had the deleterious > effect of escalating tensions > a shame that political tactics have to enter to enter technical discussion > > > From: Dave Newton > Sent: Wednesday, January 8, 2020 5:36 PM > To: St

Re: [OT] Re: Maven Warning. Ubuntu Users.; javacodegeeks.com : Global Impact at the highest levels.

2020-01-11 Thread Martin Gainty
: Dave Newton Sent: Wednesday, January 8, 2020 5:36 PM To: Struts Users Mailing List Subject: Re: [OT] Re: Maven Warning. Ubuntu Users.; javacodegeeks.com : Global Impact at the highest levels. What? On Wed, Jan 8, 2020 at 5:28 PM Zahid Rahman wrote: > -- Forwarded message - >

Re: [OT] Re: Maven Warning. Ubuntu Users.; javacodegeeks.com : Global Impact at the highest levels.

2020-01-08 Thread Dave Newton
It was more of a "why are you posting this here" than a recap of multiple inheritance in Java (which I feel reasonably comfortable with). On Wed, Jan 8, 2020 at 5:40 PM Zahid Rahman wrote: > It requires some time studying the subject ; I would suggest reading it. > Sorry no short answer. > --

Re: [OT] Re: Maven Warning. Ubuntu Users.; javacodegeeks.com : Global Impact at the highest levels.

2020-01-08 Thread Zahid Rahman
Rahman > > Date: Wed, 8 Jan 2020, 19:51 > > Subject: Re: [OT] Re: Maven Warning. Ubuntu Users > > To: Tomcat Users List > > > > > > Another example of using maven 2015 version and the impact of unknown > > warning by MAVEN can have on application dev

Re: [OT] Re: Maven Warning. Ubuntu Users.; javacodegeeks.com : Global Impact at the highest levels.

2020-01-08 Thread Dave Newton
What? On Wed, Jan 8, 2020 at 5:28 PM Zahid Rahman wrote: > -- Forwarded message - > From: Zahid Rahman > Date: Wed, 8 Jan 2020, 19:51 > Subject: Re: [OT] Re: Maven Warning. Ubuntu Users > To: Tomcat Users List > > > Another example of using maven 201

Fwd: [OT] Re: Maven Warning. Ubuntu Users.; javacodegeeks.com : Global Impact at the highest levels.

2020-01-08 Thread Zahid Rahman
-- Forwarded message - From: Zahid Rahman Date: Wed, 8 Jan 2020, 19:51 Subject: Re: [OT] Re: Maven Warning. Ubuntu Users To: Tomcat Users List Another example of using maven 2015 version and the impact of unknown warning by MAVEN can have on application development across

OT: Architectural Semantics: Model View Presenter

2014-04-08 Thread Ken McWilliams
Marked as OT because this more of a conceptual issue and has to do with talking to .NET developers regarding framework difference than with framework use. I'm trying to wrap my head around the Model View Pattern (MVP) pattern. My issue is that I can't really differentiate it from what I do

Re: OT: Architectural Semantics: Model View Presenter

2014-04-08 Thread Dave Newton
the differences generally boil down to either some trivial push/pull of functionality or simple definitions, although there's probably a bit more to it than that. Dave On Tue, Apr 8, 2014 at 1:31 PM, Ken McWilliams ken.mcwilli...@gmail.comwrote: Marked as OT because this more of a conceptual issue

[OT] Setting up mail server on Linux?

2014-01-07 Thread Paul Benedict
Anyone experienced with installing/configuring mail servers on Linux? I have chosen Postfix as my tool but I'll take any working solution. I don't need to receive any emails, only send emails from my domain from a Struts application. -- Cheers, Paul

Re: [OT] Setting up mail server on Linux?

2014-01-07 Thread Dave Evans
This should help: http://www.postfix.org/STANDARD_CONFIGURATION_README.html#null_client On Tue, Jan 7, 2014 at 2:45 PM, Paul Benedict pbened...@apache.org wrote: Anyone experienced with installing/configuring mail servers on Linux? I have chosen Postfix as my tool but I'll take any working

Re: [OT] Setting up mail server on Linux?

2014-01-07 Thread Paweł Wielgus
After putting all together, try to send emails to different probable e-mail providers and check if you will succeed (create your accounts there first), many of them are using special tricks to avoid spam but occasionally they block also normal senders. Last such thing i faced was grey-listing.

Re: [OT] Setting up mail server on Linux?

2014-01-07 Thread Per Pascal Grube
Do you need to use postfix? I use msmtp as mailserver when only sending mail. Cheers, Pascal Paul Benedict pbened...@apache.org schrieb: Anyone experienced with installing/configuring mail servers on Linux? I have chosen Postfix as my tool but I'll take any working solution. I don't need to

RE: (OT) Hibernate question

2013-01-04 Thread Martin Gainty
. Date: Fri, 4 Jan 2013 18:37:06 +0200 Subject: Re: (OT) Hibernate question From: dio...@gmail.com To: user@struts.apache.org Hi! It's not possible to add hints to Hibernate criteria queries/hql queries. But it's possible to add it if you use native query(but it's not your case, as I

(OT) Hibernate question

2013-01-03 Thread Martin Gainty
Gentlemen This has been asked many times but i havent found an answer Does anyone know how to hint a Hibernate predicate with something like select /*+ index(emp_alias ix_emp) */ ... from scott.emp emp_alias Martin __ If computers were self-aware

[OT] Searching for data access framework.

2011-12-05 Thread Balwinder
Hi All, Can anyone suggest me a framework that can abstract the data call and its source, if there exists any? Example if I want to authenticate a user then my query shall not depend upon the data source, it could be any LDAP server, database or any file in a file system or anything else.

Re: [OT] Searching for data access framework.

2011-12-05 Thread Wes Wannemacher
I am not sure if I understand your question correctly, but the first thing that comes to mind - http://java.sun.com/blueprints/corej2eepatterns/Patterns/DataAccessObject.html I would say to combine a disciplined approach of separation with a domain model layer, a business logic (transactional)

Re: [OT] Searching for data access framework.

2011-12-05 Thread Eric Lentz
abstract the data call and its source Not a Struts question, but an easy answer, so here you go: http://java.sun.com/blueprints/corej2eepatterns/Patterns/DataAccessObject.html Use a Data Access Object (DAO) to abstract and encapsulate all access to the data source. The DAO manages the

Re: [OT] Searching for data access framework.

2011-12-05 Thread Josep García
Use spring-security. 2011/12/5 Balwinder balwinder@gmail.com Hi All, Can anyone suggest me a framework that can abstract the data call and its source, if there exists any? Example if I want to authenticate a user then my query shall not depend upon the data source, it could be any LDAP

Re: [OT] Searching for data access framework.

2011-12-05 Thread Balwinder
Hi Wes, What I need is something like, if I want to access data from a database, i can use SQL, but if i change the source to LDAP then the access mechanism will change from SQL to LDAP specifics, now if the same data goes to flat file than again my mechanism will change, so all I need is

Re: [OT] Searching for data access framework.

2011-12-05 Thread Łukasz Lenart
Check JDO http://www.datanucleus.org/products/index.html Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/ Warszawa JUG conference - Confitura http://confitura.pl/ - To unsubscribe, e-mail:

Re: [OT] Searching for data access framework.

2011-12-05 Thread Dave Newton
wat On Mon, Dec 5, 2011 at 12:11 PM, Josep García jgar...@isigma.es wrote: Use spring-security. 2011/12/5 Balwinder balwinder@gmail.com Hi All, Can anyone suggest me a framework that can abstract the data call and its source, if there exists any? Example if I want to authenticate

Re: [OT] Searching for data access framework.

2011-12-05 Thread Eric Lentz
DAO): UserAuth auth = Factory.getInstance(somecriteria); auth.authenticate(); From: Balwinder balwinder@gmail.com To: Struts Users Mailing List user@struts.apache.org Date: 12/05/2011 12:13 PM Subject:Re: [OT] Searching for data access framework. Hi Wes, What I need

Re: [OT] Searching for data access framework.

2011-12-05 Thread Balwinder
Thanks Lukasz, this is exactly what I am looking for, hope there will not be any licensing issue if I want to use it. Regards, Balwinder Kumar On 12/5/2011 10:45 PM, Łukasz Lenart wrote: Check JDO http://www.datanucleus.org/products/index.html Regards

Re: [OT] Searching for data access framework.

2011-12-05 Thread Wes Wannemacher
On Mon, Dec 5, 2011 at 12:12 PM, Balwinder balwinder@gmail.com wrote: Hi Wes, What I need is something like, if I want to access data from a database, i can use SQL, but if i change the source to LDAP then the access mechanism will change from SQL to LDAP specifics, now if the same data

RE: [OT] Searching for data access framework.

2011-12-05 Thread Marcus Bond
- From: Balwinder [mailto:balwinder@gmail.com] Sent: 05 December 2011 17:13 To: Struts Users Mailing List Subject: Re: [OT] Searching for data access framework. Hi Wes, What I need is something like, if I want to access data from a database, i can use SQL, but if i change the source to LDAP

[OT] JQuery or dojo?

2011-08-16 Thread Balwinder
Hi All, Can any one suggest, for ajax which framework is better? Regards, Balwinder Kumar - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

Re: [OT] JQuery or dojo?

2011-08-16 Thread Christian Grobmeier
Can any one suggest, for ajax which framework is better? Every answer is highly subjective, but I have made great experiences with jQuery. In addition, I was able to use jQuery mobile without pain later and there seems to be a huge community around jQuery. My current js combination is jQuery +

Re: [OT] JQuery or dojo?

2011-08-16 Thread Brian Thompson
I prefer jquery. Even back in 2007, using dojo with Struts seemed clunky. AFAIK the Struts dojo plugin is deprecated, but I'm sure Dave can tell you more about that :) Brian On Tue, Aug 16, 2011 at 11:37 AM, Balwinder balwinder@gmail.com wrote: Hi All, Can any one suggest, for ajax

Re: [OT] JQuery or dojo?

2011-08-16 Thread Paul Benedict
jQuery and Dojo are different programming models. jQuery is more like a scripting tool; Dojo is more like an object-oriented programming model. I've used jQuery for several months now and find it very powerful. I haven't used Dojo because I don't want to learn another OO-like technology on the

Re: [OT] JQuery or dojo?

2011-08-16 Thread Dave Newton
What are your criteria? IMO they're different things, Dojo is more of an app framework, although there's overlap in functionality at the low level. Dave On Aug 16, 2011 12:38 PM, Balwinder balwinder@gmail.com wrote: Hi All, Can any one suggest, for ajax which framework is better?

Re: [OT] JQuery or dojo?

2011-08-16 Thread Maurizio Cucchiara
I think it's a matter of taste, I personally prefer jquery (is lesser intrusive). Maurizio Cucchiara On 16 August 2011 18:45, Paul Benedict pbened...@apache.org wrote: jQuery and Dojo are different programming models. jQuery is more like a scripting tool; Dojo is more like an object-oriented

Re: [OT] JQuery or dojo?

2011-08-16 Thread Balwinder
Dave, My criteria is: Able to ajaxify my app seamlessly. Quick in implementation. Ease of maintenance. Quick to learn. Regards, Balwinder Kumar On 8/16/2011 10:26 PM, Dave Newton wrote: What are your criteria? IMO they're different things, Dojo is more of an app framework, although there's

Re: [OT] JQuery or dojo?

2011-08-16 Thread Dave Newton
jQuery. Dave On Aug 16, 2011 1:01 PM, Balwinder balwinder@gmail.com wrote: Dave, My criteria is: Able to ajaxify my app seamlessly. Quick in implementation. Ease of maintenance. Quick to learn. Regards, Balwinder Kumar On 8/16/2011 10:26 PM, Dave Newton wrote: What are your

Re: [OT] JQuery or dojo?

2011-08-16 Thread Christian Grobmeier
Out of curiosity. What are the criteria which speak for Dojo, in your opinion? On Tue, Aug 16, 2011 at 7:07 PM, Dave Newton davelnew...@gmail.com wrote: jQuery. Dave  On Aug 16, 2011 1:01 PM, Balwinder balwinder@gmail.com wrote: Dave, My criteria is: Able to ajaxify my app

Re: [OT] JQuery or dojo?

2011-08-16 Thread Dave Newton
Full-stack GUIs. IMO jQuery is better for minor ajaxification of apps. For strong GUI needs I'd lean towards more complete, pre-packaged solutions rather than trying to mash jQueryUI things together, which can be painful at times. Dave On Aug 16, 2011 1:10 PM, Christian Grobmeier

Re: [OT] JQuery or dojo?

2011-08-16 Thread Vishwa Sahan
dojo plugin is no longer supported i think... -- Vishwa Rajakaruna *...It does not take a new day to make a brand new start It only takes a deep desire to try with all your heart...*

Re: [OT] JQuery or dojo?

2011-08-16 Thread Dave Newton
But modern Dojo can be used on its own. Dave On Aug 16, 2011 10:20 PM, Vishwa Sahan vishwa.sa...@gmail.com wrote: dojo plugin is no longer supported i think... -- Vishwa Rajakaruna *...It does not take a new day to make a brand new start It only takes a deep desire to try with all your

Re: [OT] JQuery or dojo?

2011-08-16 Thread Vishwa Sahan
Thanks dave. I think I should check on that. On Wed, Aug 17, 2011 at 8:29 AM, Dave Newton davelnew...@gmail.com wrote: But modern Dojo can be used on its own. Dave On Aug 16, 2011 10:20 PM, Vishwa Sahan vishwa.sa...@gmail.com wrote: dojo plugin is no longer supported i think...

[OT] Re: Using Display Tag library

2011-07-11 Thread Dave Newton
On Mon, Jul 11, 2011 at 8:34 AM, JavaNoobie87 wrote: The thing is I'm  NOT using struts 2 here , just basic jsp,javabeans and servlets .(Its a sort of demo project!). Well, this is a Struts mailing list. As of now my DAO fetches the result according to this query How the data is retrieved

[OT] Re: adding more package via Maven

2011-06-22 Thread Dave Newton
Are you aware there's a Maven mailing list? You may need to be a bit more specific with what you're trying to do as well--is something going wrong? What behavior are you seeing, and how does it differ from what you expect? Dave On Wed, Jun 22, 2011 at 8:24 AM, Mohamed SIDI mhm.s...@gmail.com

Re: [OT] Re: adding more package via Maven

2011-06-22 Thread Mohamed SIDI
you're right I coul post this issue in a maven mailing list I should find more infirmation but this idea coming after but never mind ! instead of creating the packages manually, I prefere use Maven to create these packages I have this : */src/main/java/com/tuto/maven

Re: [OT] Re: adding more package via Maven

2011-06-22 Thread Dave Newton
On Wed, Jun 22, 2011 at 8:43 AM, Mohamed SIDI mhm.s...@gmail.com wrote: you're right I coul post this issue in a maven mailing list I should find more infirmation but this idea coming after but never mind ! instead of creating the packages manually, I prefere use Maven to create these

RE: [OT] Re: adding more package via Maven

2011-06-22 Thread Martin Gainty
les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. Date: Wed, 22 Jun 2011 08:30:36 -0400 Subject: [OT] Re: adding more package via Maven From: davelnew...@gmail.com To: user@struts.apache.org Are you aware

Re: [OT] Re: adding more package via Maven

2011-06-22 Thread Mohamed SIDI
pour le contenu fourni. Date: Wed, 22 Jun 2011 08:30:36 -0400 Subject: [OT] Re: adding more package via Maven From: davelnew...@gmail.com To: user@struts.apache.org Are you aware there's a Maven mailing list? You may need to be a bit more specific with what you're trying to do

[OT] Re: Call execAndWait but got NullPointerException ?

2011-06-03 Thread Dave Newton
On Fri, Jun 3, 2011 at 12:09 PM, Emi Lu wrote:      marquee width=60% behavior=scroll font color=RED Ew. Use something nice. Dave - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands,

OT: Arabic Website

2011-06-02 Thread Zoran Avtarovski
We have a multi-lingual website that we have developed using struts that only uses English and European languages. We'd like to add Arabic to the site and was hoping somebody might have some pointers for where to start. Z.

Re: OT: Arabic Website

2011-06-02 Thread tito
hi, struts Application Resources,Struts locale .. and UTF-8 encoding is the place to start.. also you also have take care of the RTL ( right to left ) layout in ur web app. this explains the RTL http://www.w3.org/International/tutorials/bidi-xhtml/ regards, Tito Cheriachan

Re: OT: Arabic Website

2011-06-02 Thread Zoran Avtarovski
Thanks Tito, That's the sort of stuff I'm after. The struts/java specific stuff I'm fine with, it's more the presentation (HTML/CSS) that I need help with. Z. On 2/06/11 4:55 PM, tito tit...@gmail.com wrote: hi, struts Application Resources,Struts locale .. and UTF-8 encoding is the place to

Re: [OT] Re: Job postings

2011-05-27 Thread erikweber
: Robert Taylor rtay...@dtgresults.com Sent: May 26, 2011 10:01 AM To: Struts Users Mailing List user@struts.apache.org Subject: Re: [OT] Re: Job postings Hello, Currently we are only considering candidates in the Atlanta, GA area. Telecommuting is an option; however, you will be required to be onsite

[OT] Re: Job postings

2011-05-26 Thread Dale Newfield
On 5/26/11 7:51 AM, Martin Gainty wrote: does'nt dale live down there? Thanks for thinking of me. The reason I've been scarce around these parts lately is that I finally had to get a real job at the end of last year, so I no longer have as much time to respond to questions here, and I'm no

Re: [OT] Re: Job postings

2011-05-26 Thread frans
BlackBerry® powered by Sinyal Kuat INDOSAT -Original Message- From: Dale Newfield d...@newfield.org Date: Thu, 26 May 2011 09:06:30 To: Struts Users Mailing Listuser@struts.apache.org Reply-To: Struts Users Mailing List user@struts.apache.org Subject: [OT] Re: Job postings On 5/26/11 7:51 AM

Re: [OT] Re: Job postings

2011-05-26 Thread Robert Taylor
Mailing List user@struts.apache.org Sent: Thursday, May 26, 2011 9:06 AM Subject: [OT] Re: Job postings On 5/26/11 7:51 AM, Martin Gainty wrote: does'nt dale live down there? Thanks for thinking of me. The reason I've been scarce around these parts lately is that I finally had to get a real

Re: [OT] Re: Job postings

2011-05-26 Thread Mohamed SIDI
I was there, 6 companies stood up and declared many openings for Java developers. Thanks for the advice. /robert - Original Message - From: Dale Newfield d...@newfield.org To: Struts Users Mailing List user@struts.apache.org Sent: Thursday, May 26, 2011 9:06 AM Subject: [OT] Re

Re: [OT] Re: Job postings

2011-05-26 Thread sjmedina . rosa
Subject: Re: [OT] Re: Job postings Hello there, This may be one of the most important opportunity what about one witch is located in France ? there are some conditions to candidate :) 2011/5/26 Robert Taylor rtay...@dtgresults.com Hi Dale, We have a posting on the AJUG site. I've also been

Re: [OT] Re: Job postings

2011-05-26 Thread Robert Taylor
@struts.apache.org Sent: Thursday, May 26, 2011 9:41 AM Subject: Re: [OT] Re: Job postings Hello there, This may be one of the most important opportunity what about one witch is located in France ? there are some conditions to candidate :) 2011/5/26 Robert Taylor rtay...@dtgresults.com Hi Dale, We

RE: [OT] Re: Job postings

2011-05-26 Thread Patrick Cosmo
Subject: Re: [OT] Re: Job postings Hello, Currently we are only considering candidates in the Atlanta, GA area. Telecommuting is an option; however, you will be required to be onsite at various times. Thanks, /robert - Original Message - From: Mohamed SIDI mhm.s...@gmail.com To: Struts

Re: [OT] Re: Job postings

2011-05-26 Thread Wes Wannemacher
area. Telecommuting is an option; however, you will be required to be onsite at various times. Thanks, /robert - Original Message - From: Mohamed SIDI mhm.s...@gmail.com To: Struts Users Mailing List user@struts.apache.org Sent: Thursday, May 26, 2011 9:41 AM Subject: Re: [OT] Re

RE: [OT] Re: Job postings

2011-05-26 Thread Patrick Cosmo
Wes, why do I want to know this? Can't you email Robert directly: rtay...@dtgresults.com -Original Message- From: Wes Wannemacher [mailto:w...@wantii.com] Sent: Thursday, May 26, 2011 10:09 AM To: Struts Users Mailing List Subject: Re: [OT] Re: Job postings I'm not in the Atlanta, GA

Re: [OT] Re: Job postings

2011-05-26 Thread Wes Wannemacher
- From: Wes Wannemacher [mailto:w...@wantii.com] Sent: Thursday, May 26, 2011 10:09 AM To: Struts Users Mailing List Subject: Re: [OT] Re: Job postings I'm not in the Atlanta, GA area, I am in Ohio, but I am willing to come down from time to time. I work as an independent contractor

Re: [OT] Re: Job postings

2011-05-26 Thread Brian Thompson
, 2011 10:09 AM To: Struts Users Mailing List Subject: Re: [OT] Re: Job postings I'm not in the Atlanta, GA area, I am in Ohio, but I am willing to come down from time to time. I work as an independent contractor, hopefully that isn't a problem. If you are interested, let me know

[OT] RE: S2 TEst Best Practices

2011-05-20 Thread Dave Newton
On May 20, 2011 9:18 AM, Miguel wrote: An interesting view on this from Gojko Adzic seems to almost suggest these tests should be avoided: I read it more as do them right. Dave

[OT] Re: Unable to add value in html:file

2011-05-19 Thread Dave Newton
Not really. You'd be better off checking out applet documentation/tutorials I think. Dave On May 19, 2011 11:31 PM, vivek mishra mishravive...@gmail.com wrote: Ok. How an applet can work in this situation .. can you please point me to the trick..your help is much appreciated Dave.. Although

[OT] Re: error JSTL

2011-05-16 Thread Dave Newton
On Mon, May 16, 2011 at 8:14 AM, Mohamed SIDI wrote: Static attribute must be a String literal, its illegal to specify an expression Did you try searching the web for an answer? Sometimes just copying an error message verbatim is enough. Dave

[OT] Re: Iterator tag and enumeration

2011-05-13 Thread Dave Newton
On Fri, May 13, 2011 at 10:17 AM, Biesbrock, Kevin wrote: This peaked my interest [...] Piqued, piqued. Dave - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail:

RE: [OT] Re: Iterator tag and enumeration

2011-05-13 Thread Biesbrock, Kevin
Touché. I've only been speaking English my whole life... Beez -Original Message- From: Dave Newton [mailto:davelnew...@gmail.com] Sent: Friday, May 13, 2011 10:20 AM To: Struts Users Mailing List Subject: [OT] Re: Iterator tag and enumeration On Fri, May 13, 2011 at 10:17 AM

[OT] Re: How to implement wordpress like themes?

2011-04-25 Thread Dave Newton
Same answer as the first time, although you might want to consider abstracting themes at a higher level instead of just hiding sections via CSS. But this is pretty off-topic. d On Apr 25, 2011 8:05 AM, rocklee mini...@gmail.com wrote: Hi Dave, Thanks for your reply. Different theme maybe has

[OT] RE: Using Strut in Desktop Application

2011-04-20 Thread Dave Newton
As far as I know it'd run on any server, but you'd be better off talking to to Sonar folks about that. d. On Apr 20, 2011 5:50 AM, Alok alok.si...@cognizant.com wrote: Is it possible to use Sonar to run on embedded server? Please explain in some detail. Keenly waiting for your

[OT] Re: Could somebody tell me where can I find struts2 sample maven archetypes?

2011-03-25 Thread Dave Newton
I knew there had to be something more annoying than the reams of legalese some people think is useful in a .sig. On Fri, Mar 25, 2011 at 9:38 AM, webmeiker i...@webmeiker.com wrote: Hi, Working with Eclipse m2eclipse maven Eclipse plugin, Could somebody tell me where can I find struts2

Re: [OT] Re: Could somebody tell me where can I find struts2 sample maven archetypes?

2011-03-25 Thread Nick Broadhurst
Dave, It only matters when you don't have one. How ironichttp://www.wired.com/magazine/2010/12/pr_burningquestion_legalwarning/ . http://www.wired.com/magazine/2010/12/pr_burningquestion_legalwarning/Nick On Fri, Mar 25, 2011 at 9:02 AM, Dave Newton davelnew...@gmail.com wrote: I knew there

Re: [OT] Re: Could somebody tell me where can I find struts2 sample maven archetypes?

2011-03-25 Thread Dave Newton
Yeah; it's mind-boggling. I especially appreciate when it's translated into multiple languages (inline) or a link I actually have to *visit* in order to read it (which seems the worst of both worlds). Meh. On Fri, Mar 25, 2011 at 10:33 AM, Nick Broadhurst hou1...@gmail.com wrote: It only

Re: [OT] Re: Need your inputs.

2011-03-22 Thread sharath karnati
Hi Dave,      We are using JQuery + Struts2 + Spring framework(DAO)      Do you have any examples how to process 'Serialize the DOM'   Thanks, Sharath. --- On Mon, 3/21/11, Dave Newton davelnew...@gmail.com wrote: From: Dave Newton davelnew...@gmail.com Subject: [OT] Re: Need your inputs

Re: [OT] Re: Need your inputs.

2011-03-22 Thread Dave Newton
. --- On *Mon, 3/21/11, Dave Newton davelnew...@gmail.com* wrote: From: Dave Newton davelnew...@gmail.com Subject: [OT] Re: Need your inputs. To: sharath karnati karna...@yahoo.com Cc: Struts Users Mailing List user@struts.apache.org Date: Monday, March 21, 2011, 6:10 PM On Mon, Mar 21, 2011

Re: [OT] Re: Need your inputs.

2011-03-22 Thread Mohamed SIDI
...@gmail.com* wrote: From: Dave Newton davelnew...@gmail.com Subject: [OT] Re: Need your inputs. To: sharath karnati karna...@yahoo.com Cc: Struts Users Mailing List user@struts.apache.org Date: Monday, March 21, 2011, 6:10 PM On Mon, Mar 21, 2011 at 6:04 PM, sharath karnati wrote

[Maybe OT] Integration of a WSRP portlet into a Struts app.

2011-03-22 Thread JOSE L MARTINEZ-AVIAL
Hi, I've been using Struts 2 the last few months to write a web app for our users. It works fine, but now I'm facing the challenge of integrating a third part applicacion (Microstrategy) into my app. MS provides support to portlets and WSRP, so my idea is to provide a page in my app that will

[OT] Re: Need your inputs.

2011-03-21 Thread Dave Newton
On Mon, Mar 21, 2011 at 6:04 PM, sharath karnati wrote: Can you please send me links/details for doing this(Serialize the DOM)? What JavaScript framework are you using? (I'd really just try [search engine of choice] first, though--much, much faster than waiting on the list.) Dave

Re: [maybe OT] Detecting if a new window or tab was opened (server-side)

2011-03-17 Thread Maurizio Cucchiara
Why would you track a window open event? I don't know what exactly your requirements are but I think it should be quite simple to /intercept/block/change every mouse click event which is not the left click event through javascript. Maurizio Cucchiara Il giorno 16/mar/2011 22.26, Wes Wannemacher

Re: [maybe OT] Detecting if a new window or tab was opened (server-side)

2011-03-17 Thread Brian Thompson
CTRL-click? Shift-click? Configure the browser to open all links in new tabs? I'm pretty sure you can do that in Firefox. And please don't suggest blocking mouse events. I like to use those features, and I really hate it when sites try to hijack my browser that way. It's one of the more

[maybe OT] Detecting if a new window or tab was opened (server-side)

2011-03-16 Thread Wes Wannemacher
Does anyone know of a good trick to detect whether a new window or tab was opened by the user... Here is the scenario, a user is looking at a view and he/she right-clicks one of the links and chooses to open the link in a new tab or window. The original view and the new tab or window will share

Re: [maybe OT] Detecting if a new window or tab was opened (server-side)

2011-03-16 Thread stanlick
Your questions are too difficult! Can you please rephrase? Peace, Scott On Wed, Mar 16, 2011 at 4:25 PM, Wes Wannemacher w...@wantii.com wrote: Does anyone know of a good trick to detect whether a new window or tab was opened by the user... Here is the scenario, a user is looking at a view

[OT] Re: Just a stab in the dark

2011-03-14 Thread Dave Newton
...@cyberspaceroad.com wrote: Matt Meola on 14/03/11 00:04, wrote: On 03/12/2011 05:57 AM, Adam Hardy wrote: Hi List this is a bit OT but it's the weekend and I have a question which I am desperate to answer and my googling skills are no match for it. Does anyone know where I can get a Java implementation

Re: [OT] Re: Just a stab in the dark

2011-03-14 Thread Adam Hardy
scanf functionality and an underlying implementation; a micro-DSL, more or less. Dave On Mon, Mar 14, 2011 at 7:15 AM, Adam Hardy ahardy.str...@cyberspaceroad.com wrote: Matt Meola on 14/03/11 00:04, wrote: On 03/12/2011 05:57 AM, Adam Hardy wrote: Hi List this is a bit OT but it's the weekend

Re: [OT] Re: Just a stab in the dark

2011-03-14 Thread Dave Newton
On Mon, Mar 14, 2011 at 8:07 AM, Adam Hardy wrote: But for the future I am writing an app where the user can upload a file of data and specify the input using that printf/scanf pattern description, and output the same data into new file with a new format according to a secocnd pattern. It's

Re: [OT] Re: Just a stab in the dark

2011-03-14 Thread Brian Thompson
On Mon, Mar 14, 2011 at 7:29 AM, Dave Newton davelnew...@gmail.com wrote: On Mon, Mar 14, 2011 at 8:07 AM, Adam Hardy wrote: But for the future I am writing an app where the user can upload a file of data and specify the input using that printf/scanf pattern description, and output the

Re: [OT] Re: Just a stab in the dark

2011-03-14 Thread Alex Lopez
I think they ment DSL as in Domain Specific Language Em 14-03-2011 14:06, Brian Thompson escreveu: On Mon, Mar 14, 2011 at 7:29 AM, Dave Newtondavelnew...@gmail.com wrote: On Mon, Mar 14, 2011 at 8:07 AM, Adam Hardy wrote: But for the future I am writing an app where the user can upload a

Re: OT static resources, cache control, and versioning

2011-02-11 Thread Maurizio Cucchiara
I remember I wrote a simple filter coupled with a *jsp* (not a struts) tag library. As far as I can remember the tag library worked as resource assembler for instance: t:scripts t:script src=...FIRST_CUSTOM_JS.js/ t:script src=...SECOND_CUSTOM_JS.js/ /t:scripts So in this specific case the

Re: OT static resources, cache control, and versioning

2011-02-11 Thread Jordi Fernández
You can reference every static content with: /js/site.js?version=timestamp If using Maven or Ant, in the building process generate a timestamp and substitute it wherever applicable. On Thu, Feb 10, 2011 at 3:56 PM, Greg Lindholm greg.lindh...@gmail.com wrote: I'm trying to find out what are

OT static resources, cache control, and versioning

2011-02-10 Thread Greg Lindholm
I'm trying to find out what are the Best Practices and if there are any utilities available to assist with versioning of static resources and cache-control. I'm working on an application (written with Struts 2) that uses a filter to apply cache-control headers to the static resources, javascript,

Re: [OT?] standalone jsp

2011-02-01 Thread Dave Newton
I'd probably start here, although I'm not sure if it's really what you wanted--memory is still a little hazy on this one. http://struts.apache.org/2.x/docs/embedded-jsp-plugin.html Dave On Sat, Jan 29, 2011 at 7:26 PM, Dave Newton davelnew...@gmail.com wrote: I'd just search back through the

Re: [OT?] standalone jsp

2011-01-29 Thread Dave Evans
Yes, I currently use velocity. But i'd really rather just use a single language for both web and non-web presentation. On Fri, Jan 28, 2011 at 10:01 PM, Maurizio Cucchiara maurizio.cucchi...@gmail.com wrote: Personally, I prefer velocity [1] or freemarker [2]. They have a good learning curve

Re: [OT?] standalone jsp

2011-01-29 Thread Dave Newton
On Sat, Jan 29, 2011 at 2:37 PM, Dave Evans wrote: Yes, I currently use velocity. But i'd really rather just use a single language for both web and non-web presentation. Ew. IMO JSP is a poor general-purpose templating language, and makes less sense for non-web presentation. IIRC Musachy

Re: [OT?] standalone jsp

2011-01-29 Thread Chris Pratt
Are you using this for generating emails from web applications? I developed a tag library that allows you to generate text/html emails using JSP and it works great with Struts/Tiles/Spring. (It would probably work with Freemarker/Velocity as well, I've just never tried it) (*Chris*) On Sat,

Re: [OT?] standalone jsp

2011-01-29 Thread Dave Evans
Would you like to elaborate on what makes it a poor general purpose templating language? The el is easy to read and can handle nested objects, arrays and maps. Most importantly, since I choose to use it for my web presentation, I'd rather not have an entire other spec to keep track of. Why bother?

Re: [OT?] standalone jsp

2011-01-29 Thread Dave Evans
I am using it primarily for emails, but I need to be able to call the templatizing method from within a business layer class. Something like: Template template = new Template(path); Map map = getDataForEmail(); String result = template.templatize(map); On Sat, Jan 29, 2011 at 12:13 PM, Chris

Re: [OT?] standalone jsp

2011-01-29 Thread Dave Newton
On Sat, Jan 29, 2011 at 4:49 PM, Dave Evans wrote: Would you like to elaborate on what makes it a poor general purpose templating language? XML isn't a templating language, it's a data exchange format. XML is human-hostile. The el is easy to read The EL itself, maybe. JSP, not so much.

Re: [OT?] standalone jsp

2011-01-29 Thread Dave Evans
On Sat, Jan 29, 2011 at 2:01 PM, Dave Newton davelnew...@gmail.com wrote: On Sat, Jan 29, 2011 at 4:49 PM, Dave Evans wrote: I am thinking about trying to duplicate/re-use/wrap/etc jstl in a framework for use in a non-web templates, just trying to find out if there is already work being done

Re: [OT?] standalone jsp

2011-01-29 Thread Dave Newton
I'd just search back through the list archives; I don't recall if it was in user or dev. Around 2008-2009-ish (perhaps a smidge earlier?), Musachy was the main driver, and I'm pretty sure he was using something out of Tomcat. Dave On Sat, Jan 29, 2011 at 7:17 PM, Dave Evans dsevan...@gmail.com

[OT?] standalone jsp

2011-01-28 Thread Dave Evans
Hello, Does anyone know of any way of using the jstl core library and el for generic templating tasks? Specifically I need to use a templating language to create the body of an email. I'd like to use the jstl el and the c:if and c:forEach tags to do it. I seem to remember some sort of jsr aiming

Re: [OT?] standalone jsp

2011-01-28 Thread Maurizio Cucchiara
Personally, I prefer velocity [1] or freemarker [2]. They have a good learning curve (especially velocity), they were designed for templating tasks and yes, both of them have the tags you mentioned. [1] http://velocity.apache.org/ [2] http://freemarker.sourceforge.net On 29 January 2011 05:25,

[OT] Friday Quiz - Geek or Hack?

2010-08-13 Thread Burton Rhodes
Hey it's Friday... Are you a geek or a hack? http://www.nerdtests.com/ft_cg.php ...and if any of you score over 90%, you need to get out more often! - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional

RE: [OT] Friday Quiz - Geek or Hack?

2010-08-13 Thread Martin Gainty
57475620444F45542044415645 204F4E4C5920414E53574552 20484953204F574E205155455354494F4E5421 __ 4E4F20434F4D4D454E54 Date: Fri, 13 Aug 2010 15:29:28 -0500 Subject: [OT] Friday Quiz - Geek or Hack? From: burtonrho...@gmail.com To: user

  1   2   3   4   5   6   7   8   9   10   >