Re:ChangeLanguage Portlet

2002-11-15 Thread Massimiliano Dessì

Sorry for  my gaffes,

the code submitted is not a correct code if i wanted submitted.
As soon as possible i' ll  send you the cleaned code with a correct style.

(after a robust refactoring).

Massimiliano






-
Per te Blu American Express è gratis


JetspeedLocalization_it 1.4b3

2003-01-21 Thread Massimiliano Dessì
jetspeedLocalization_it.properties for jetspeed1.4b3

Massimiliano Dessì
Cagliari (Italy)

__
Yahoo! Cellulari: loghi, suonerie, picture message per il tuo telefonino
http://it.yahoo.com/mail_it/foot/?http://it.mobile.yahoo.com/index2002.html

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


enable jetspeed for disable

2003-02-28 Thread Massimiliano Dessì
I want enable jetspeed for blind user .
I dont't know the function of the client for disable. 
  
There 'is anyone can help me for this project?
Where can found material for this ?

Thanks in advanced.

Massimiliano Dessì

Cagliari  
Sardinia (ITALY)

__
Yahoo! Cellulari: loghi, suonerie, picture message per il tuo telefonino
http://it.yahoo.com/mail_it/foot/?http://it.mobile.yahoo.com/index2002.html

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



Re: [patch] JetspeedLocalizationService

2003-03-06 Thread Massimiliano Dessì
Attached to the mail is the new version portlet to
change the language with a servlet filter, the turbine
resources.prop to enable the jetspeed Localization
Service and localization tool and a diagram to explain
the flow.
I have modified the Localization service only to
change the language witout the browser role (language
header).
The language changes at runtime.
I don't understand your problem with the change
language.
Test this file and send a feedback to me ,
in this way i can help you

Massimiliano


 --- Jon Evans [EMAIL PROTECTED] ha scritto:  Hi
David,
 
 David Sean Taylor wrote:
 
  The patch isn't necessary I just committed a patch
 from
  Missimilliano Dessi. It works fine as is. Although
 I thought we had
  country flag icons with the original portlet.
 
 I have just got round to using the latest CVS.  I
 like the fact that
 the changeLanguage portlet is now a .vm, it will
 make it a lot easier
 to change the look and feel for my site.
 
 I'm still concerned though with

org.apache.jetspeed.services.customlocalization.JetspeedLocalizationService.
 
 It still doesn't seem to work if you have more than
 one bundle defined
 in locale.default.bundles.  It only seems to look at
 the first bundle.
 
 If you look at the class, it extends
 TurbineLocalizationService.
 JetspeedLocalizationService implements an
 initBundleNames() method
 which populates an instance variable String[]
 bundleNames.  But all of
 the getString(...) methods call
 super.getString(...), where
 TurbineLocalizationService will use its own instance
 variables and will
 not find the strings.
 
 
 Let me put it another way.  Each class defines an
 identical set of 
 instance variables, like this:
 
 JetspeedLocalizationService
 TurbineLocalizationService
 ===
 ===
 private Hashtable bundles;  private Hashtable
 bundles;
 private String bundleNames[];   private String
 bundleNames[];
 private Locale defaultLocale;   private Locale
 defaultLocale;
 private String defaultLanguage; private String
 defaultLanguage;
 private String defaultCountry;  private String
 defaultCountry;
 
 After JetspeedLocalizationService.init() is called
 they look like this:
 
 JetspeedLocalizationService
 TurbineLocalizationService
 ===
 ==
 bundles  null   bundles set
 bundleNames[]setbundleNames[]   null
 defaultLocalenull   defaultLocale   set
 defaultLanguage  null   defaultLanguage set
 defaultCountry   null   defaultCountry  set
 
 when getString(String bundleName, Locale locale,
 String key) is called
 in JetspeedLocalizationService, it calls
 super.getString(...).  This
 calls getBundle(String, Locale), which is
 implemented in
 JetspeedLocalizationService as a call to
 super.getBundle(String,
 Locale), so we are back to the code in
 TurbineLocalizationService.
 
 getBundle(String, Locale) in
 TurbineLocalizationService returns the
 default bundle to the getString(...) method.
 
 Back in getString(String bundleName, Locale locale,
 String key), we
 look up the requested key in the bundle, using
 getStringOrNull(), which 
 returns null because the string I'm looking for
 isn't in the first 
 bundle, it's in the second.
 
 The next test is intended to determine whether we
 need to check the
 other bundles for the key.  The test is:
 
  // Look for text in list of default
 bundles.
  if (value == null  bundleNames.length 
 0)
 
 At this point we throw a NullPointerException
 because bundleNames is
 null (it was never set in
 TurbineLocalizationService, only in
 JetspeedLocalizationService).
 
 The whole of the JetspeedLocalizationService class
 can be reduced to a 
 single function, getLocale(RunData runData).
 
 The attached patch does this, and seems to work. 
 Yes, I compiled from 
 clean this time. :-)
 
 Jon
  
  
  
  
  
 -- 
  
 Merlin Information Systems Limited, 
  
 Merlin House, Gawcott Road, Buckingham, United
 Kingdom. MK18 1TN
  
 Tel: +44 (0) 1280 824331  Fax: +44 (0) 1280 824112
  
 
  
 http://www.misgl.com
  
 Provider of IT Services and Online Portal Support
 Services. 
  
  
  
 Confidentiality:
  
 The information contained in this email (including
 any attachments) is confidential and is intended
 solely for the use of the named addressee. Access,
 copying or re-use of the information in it by any
 other person is not authorised. If you are not the
 intended recipient, please notify us immediately by
 telephone or by e-mail to [EMAIL PROTECTED]
  
 
  
  
  
 *** This mail has been scanned for viruses ***
  
 
  
  Index:

src/java/org/apache/jetspeed/services/customlocalization/JetspeedLocalizationService.java

===
 RCS file:

/home/cvspublic/jakarta-jetspeed/src/java/org/apache/jetspeed/services/customlocalization/JetspeedLocalizationService.java,v
 retrieving revision 1.4
 diff -u -r1.4 

[PATCH] LocalizationService [Zip attached]

2003-03-18 Thread Massimiliano Dessì
Please see the attached .zip patch.

The different with the previous version it's the
private method
searchKey(Locale locale, String key)
used by getString(String bundleName, Locale locale,
String key).
The key it's search in the firstbundle, if it' not
found it's search in the
second and so on until the key it's found.


Massimiliano Dessì.






__
Yahoo! Cellulari: loghi, suonerie, picture message per il tuo telefonino
http://it.yahoo.com/mail_it/foot/?http://it.mobile.yahoo.com/index2002.html

JetspeedLocalizationService.zip
Description: JetspeedLocalizationService.zip
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

server date from vm

2003-03-27 Thread Massimiliano Dessì
Is it possible obtain a server date from the *.vm ?
with $data.getServerData() it's not possible.
In the examples of jetspeed it's described but in the
jsp. 

Thanks in advanced.
Massimiliano


__
Yahoo! Cellulari: loghi, suonerie, picture message per il tuo telefonino
http://it.yahoo.com/mail_it/foot/?http://it.mobile.yahoo.com/index2002.html

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



config in a action

2003-04-03 Thread Massimiliano Dessì
In a xreg i define in the tag  classname
...portlets.VelocityPortlet,
in the tag template the .vm, and in a tag action the
class of the action.
From the portlet i call
this.getPortletConfig.getInitParameters(tagname),
but in the code of the action where is the method to
read the parameters of xreg .
It's possible ?

Thanks in advanced

Massimiliano



__
Yahoo! Cellulari: loghi, suonerie, picture message per il tuo telefonino
http://it.yahoo.com/mail_it/foot/?http://it.mobile.yahoo.com/index2002.html

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



[PATCH] JetspeedLocalization_it.properties

2003-07-23 Thread Massimiliano Dessì
Translated fields:

#Registry Editor Translations
#Buttons
#Validation
#fields

Massimiliano Dessì


__
Yahoo! Mail: 6MB di spazio gratuito, 30MB per i tuoi allegati, l'antivirus, il filtro 
Anti-spam
http://it.yahoo.com/mail_it/foot/?http://it.mail.yahoo.com/

JetspeedLocalization_it.zip
Description: JetspeedLocalization_it.zip
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

update JetspeedLocalization_it.properties

2003-09-03 Thread Massimiliano Dessì
New version with translation of new keys, and some fix

Massimiliano

__
Yahoo! Mail: 6MB di spazio gratuito, 30MB per i tuoi allegati, l'antivirus, il filtro 
Anti-spam
http://it.yahoo.com/mail_it/foot/?http://it.mail.yahoo.com/

JetspeedLocalization_it.zip
Description: JetspeedLocalization_it.zip
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: update JetspeedLocalization_it.properties

2003-09-03 Thread Massimiliano Dessì
Yes  it's a mistake
the right value it's:
REGISTRY_EDITOR_SECURITY_ACCESS_USER=User

 --- Jeremy Ford [EMAIL PROTECTED] ha scritto: 
I noticed that REGISTRY_EDITOR_SECURITY_ACCESS_USER
 was missing from the 
 registry editor security section.  I was wondering
 if it was supposed to be 
 like this:
 
 REGISTRY_EDITOR_SECURITY_ACCESS_USER=User
 REGISTRY_EDITOR_SECURITY_ACCESS_ROLE=Ruolo
 REGISTRY_EDITOR_SECURITY_ACCESS_OWNER=Proprietario
 
 instead of
 
 REGISTRY_EDITOR_SECURITY_ACCESS_USER=Ruolo
 REGISTRY_EDITOR_SECURITY_ACCESS_OWNER=Proprietario
 
 Let me know and I will commit it.
 
 Jeremy Ford
 
 
 From: Massimiliano Dessì [EMAIL PROTECTED]
 Reply-To: Jetspeed Developers List
 [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: update JetspeedLocalization_it.properties
 Date: Wed, 3 Sep 2003 10:14:01 +0200 (CEST)
 
 New version with translation of new keys, and some
 fix
 
 Massimiliano
 

__
 Yahoo! Mail: 6MB di spazio gratuito, 30MB per i
 tuoi allegati, l'antivirus, 
 il filtro Anti-spam

http://it.yahoo.com/mail_it/foot/?http://it.mail.yahoo.com/
  JetspeedLocalization_it.zip 

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

_
 MSN 8: Get 6 months for $9.95/month.
 http://join.msn.com/?page=dept/dialup
 
 

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

__
Yahoo! Mail: 6MB di spazio gratuito, 30MB per i tuoi allegati, l'antivirus, il filtro 
Anti-spam
http://it.yahoo.com/mail_it/foot/?http://it.mail.yahoo.com/

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



JetspeedLocalization_it.properties for jetspeed1.5dev

2004-03-05 Thread Massimiliano Dessì
JetspeedLocalization_it.properties for jetspeed1.5dev
with translation of new key.

Massimiliano Dessì
Cagliari (Italy)


__
Yahoo! Mail: 6MB di spazio gratuito, 30MB per i tuoi allegati, l'antivirus, il filtro 
Anti-spam
http://it.yahoo.com/mail_it/foot/?http://it.mail.yahoo.com/
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

JetspeedLocalization_it.properties for jetspeed1.5dev .txt version

2004-03-05 Thread Massimiliano Dessì
JetspeedLocalization_it.properties for jetspeed1.5dev
with translation of new key.
Rename  txt. - .properties

Massimiliano Dessì
Cagliari (Italy)


__
Yahoo! Mail: 6MB di spazio gratuito, 30MB per i tuoi allegati, l'antivirus, il filtro 
Anti-spam
http://it.yahoo.com/mail_it/foot/?http://it.mail.yahoo.com/
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: my faces

2004-07-16 Thread Massimiliano Dessì
I have spent a bit of time in a use of jsf (with Java
Studio Creator) for
a  rapid develop of JSF portlet (with SUN RI), an
article about the work
of this portlet are in progress (article available
when are completed on
jugsardegna.org).
The function of the portlet it's very simple, i use
the same examples of the
http://www.jugsardegna.org/vqwiki/jsp/Wiki?PortletJava2En
for a better comprension, if you think that are
interesting, i can
modified or integrate the code with the version for
jet1 and jet2 with myfaces.

Massimiliano Dessì

--- David Sean Taylor [EMAIL PROTECTED] ha
scritto:  Has anyone had a look at MyFaces?
 
 http://myfaces.org
 
 I think we can gain a lot of time downstream by
 building in JSF support 
 and using these components in the admin and demo
 portlets...
 
 

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







Yahoo! Companion - Scarica gratis la toolbar di Ricerca di Yahoo! 
http://companion.yahoo.it

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



Re: cvs commit: jakarta-jetspeed-2/applications/localeselector/src/java/org/apache/jetspeed/portlets/localeselector/resources LocaleSelectorResources_nl.properties LocaleSelectorResources_en.properties LocaleSelectorResources.properties LocaleSelectorResources_ja.properties

2004-08-05 Thread Massimiliano Dessì
Where they are the files to translate ?

 --- David Sean Taylor [EMAIL PROTECTED] ha
scritto: 
 
 On Aug 5, 2004, at 8:54 AM, [EMAIL PROTECTED] wrote:
 
  ate 2004/08/05 08:54:46
 
Modified: 
 

applications/localeselector/src/java/org/apache/jetspeed/portlets/
 
  localeselector/resources
 
 LocaleSelectorResources_en.properties
 
 LocaleSelectorResources.properties
 
 LocaleSelectorResources_ja.properties
Added:
 

applications/localeselector/src/java/org/apache/jetspeed/portlets/
 
  localeselector/resources
 
 LocaleSelectorResources_nl.properties
Log:
Had to add a Dutch (nl) translation :-)
 
 
 Goed!
 
 I hope to find some time to add French and German
 over the next few  
 days to all the demo portlets
 Guess I can get my wife to help with the Dutch ;-)
 
 It will be a good test of some of the registry
 persistence with nested  
 collections ...
 There are actually 2 ways to do localization, either
 thru a bundle or  
 in the portlet.xml itself
 Im going to test both
 
 --
 David Sean Taylor
 Bluesunrise Software
 [EMAIL PROTECTED]
 [office]   +01 707 773-4646
 [mobile] +01 707 529 9194
 
 
 

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







Yahoo! Companion - Scarica gratis la toolbar di Ricerca di Yahoo! 
http://companion.yahoo.it

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



Re: cvs commit: jakarta-jetspeed-2/applications/localeselector/src/java/org/apache/jetspeed/portlets/localeselector/resources LocaleSelectorResources_nl.properties LocaleSelectorResources_en.properties LocaleSelectorResources.properties LocaleSelectorResources_ja.properties

2004-08-10 Thread Massimiliano Dessì
David, i send you the italian translate files
(LocaleSelectorResources_it.props and
ApplicationResources_it.props)
to commit in the cvs.

 --- David Sean Taylor [EMAIL PROTECTED] ha
scritto: 
 
 On Aug 9, 2004, at 6:45 AM, Scott T. Weaver wrote:
 
  Hi Luiz,
 
  Just submit a patch to the list.
 
  Luiz Esmiralha wrote:
 
  Hi, David!
 
  I found the properties files that need to be
 translated. Its just a 
  matter of creating a new one with the proper
 suffix and then 
  translating all the messages, right? AFter that,
 how do I send you 
  the files for commit?
 
 Yes, right. I committed japanese, english and french
 examples for the 
 Pick A Number portlet. By using the LocaleSelector,
 you can change 
 between these 3 languages and see the text on the
 Pick A Number portlet 
 change.
 The entire J2 Portal needs localization, Shinsuke
 and are planning on 
 working on the soon.
 
 
 

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







Yahoo! Companion - Scarica gratis la toolbar di Ricerca di Yahoo! 
http://companion.yahoo.it

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



Re: cvs commit: jakarta-jetspeed-2/applications/localeselector/src/java/org/apache/jetspeed/portlets/localeselector/resources LocaleSelectorResources_nl.properties LocaleSelectorResources_en.properties LocaleSelectorResources.properties LocaleSelectorResources_ja.properties

2004-08-12 Thread Massimiliano Dessì
Pick a Number resources translate and send to you.

Patches applied.
You may also want to look at the Pick A Number
Portlet resources found under
applications/demo/src/java/org/apache/jetspeed/demo/simple/resources/


--
David Sean Taylor
Bluesunrise Software
[EMAIL PROTECTED]
[office]   +01 707 773-4646
[mobile] +01 707 529 9194







Yahoo! Companion - Scarica gratis la toolbar di Ricerca di Yahoo! 
http://companion.yahoo.it

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



Re: jetspeed 2 build organization suggestions

2004-08-23 Thread Massimiliano Dessì
BUILD SUCCESSFUL
Total time: 35 minutes 7 seconds

Little ? :-)

p.s. It's a build time from a clean installation of
maven.


 --- Scott T. Weaver
[EMAIL PROTECTED] ha scritto: 
 Anything that'll organize the little Maven monster
 we have created will 
 get a +1 from me ;)
 
 David Jencks wrote:
 
  I have been reviewing the jetspeed 2 build process
 and believe it 
  could be improved in several areas.
 
  1. using maven features appropriately within the
 current project 
  structure.  For instance, it appears to me that
 using the multiproject 
  plugin instead of the reactor can replace about
 236 lines with 2 in 
  the top level maven.xml file.
 
  2. restructuring the project to eliminate
 conditionals and clarify 
  dependencies.  Currently the build appears to be
 oriented entirely 
  toward deploying on tomcat, and from my brief
 review this appears to 
  permeate many areas of the project.  I suggest
 removing all such 
  dependencies from  current build files and
 creating a new set of 
  modules for each installation environment,
 
  installation/tomcat
  installation/weblogic
  installation/geronimo
  ...
 
  that will customize as appropriate for the target
 environment and 
  provide appropriate installation tools.
 
  Similarly, I think it might be advisable to factor
 out the database 
  setup support into separate modules such as
 
  installation/database/hsqldb
  installation/database/oracle
  ...
 
  I have not yet discovered to what extent the
 persistence support is 
  pluggable, but if for instance you are using ojb
 via its jdo support 
  the choice of jdo vendor and appropriate setup
 could also be isolated 
  in separate modules.
 
 
  I'd like to know if there are objections to this
 approach before I 
  spend a significant amount of time experimenting
 with it.
 
  Many thanks,
  david jencks
 
 
 

-
  To unsubscribe, e-mail:
 [EMAIL PROTECTED]
  For additional commands, e-mail:
 [EMAIL PROTECTED]
 
 
 
 
 -- 
 ***
 *   Scott T. Weaver   *
 * [EMAIL PROTECTED] *
 * http://www.einnovation.com*
 * --  *
 *   Apache Jetspeed Enterprise Portal *
 * Apache Pluto Portlet Container  *
 * *
 * OpenEditPro, Website Content Management *
 * http://www.openeditpro.com*
 ***
 
 

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






___
Yahoo! Companion - Scarica gratis la toolbar di Ricerca di Yahoo! 
http://companion.yahoo.it

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



Re: jetspeed 2 build organization suggestions

2004-08-23 Thread Massimiliano Dessì
Ok, 
BUILD SUCCESSFUL
Total time: 8 minutes 35 seconds
at the second build of the reactor on my turtle pc.

p.s.
In the instruction for the build getting started
with maven, i don't see the keys 

maven.proxy.host = xxx
maven.proxy.port = xxx

It's a facilitation write this stupid settings (in a
comment) for a new developer of jetspeed and maven.


 --- Scott T. Weaver
[EMAIL PROTECTED] ha scritto: 
 The longest I have ever seen, with unit tests
 running, is about 5-6 
 minutes, and that is on a fairly old P3.  I have a
 feeling this long 
 delay was caused by downloading the dependencies.  
 If you run it again 
 I am sure it will be MUCH faster, probably a couple
 of orders of 
 magnitude faster.  I generally see build times
 around 3.5 minutes on my 
 P4 2.4GHz 1GB Ram running Mandrake Community 10.0.
 
 Massimiliano Dessì wrote:
 
 BUILD SUCCESSFUL
 Total time: 35 minutes 7 seconds
 
 Little ? :-)
 
 p.s. It's a build time from a clean installation of
 maven.
 
 
  --- Scott T. Weaver
 [EMAIL PROTECTED] ha
 scritto: 
   
 
 Anything that'll organize the little Maven monster
 we have created will 
 get a +1 from me ;)
 
 David Jencks wrote:
 
 
 
 I have been reviewing the jetspeed 2 build
 process
   
 
 and believe it 
 
 
 could be improved in several areas.
 
 1. using maven features appropriately within the
   
 
 current project 
 
 
 structure.  For instance, it appears to me that
   
 
 using the multiproject 
 
 
 plugin instead of the reactor can replace about
   
 
 236 lines with 2 in 
 
 
 the top level maven.xml file.
 
 2. restructuring the project to eliminate
   
 
 conditionals and clarify 
 
 
 dependencies.  Currently the build appears to be
   
 
 oriented entirely 
 
 
 toward deploying on tomcat, and from my brief
   
 
 review this appears to 
 
 
 permeate many areas of the project.  I suggest
   
 
 removing all such 
 
 
 dependencies from  current build files and
   
 
 creating a new set of 
 
 
 modules for each installation environment,
 
 installation/tomcat
 installation/weblogic
 installation/geronimo
 ...
 
 that will customize as appropriate for the target
   
 
 environment and 
 
 
 provide appropriate installation tools.
 
 Similarly, I think it might be advisable to
 factor
   
 
 out the database 
 
 
 setup support into separate modules such as
 
 installation/database/hsqldb
 installation/database/oracle
 ...
 
 I have not yet discovered to what extent the
   
 
 persistence support is 
 
 
 pluggable, but if for instance you are using ojb
   
 
 via its jdo support 
 
 
 the choice of jdo vendor and appropriate setup
   
 
 could also be isolated 
 
 
 in separate modules.
 
 
 I'd like to know if there are objections to this
   
 
 approach before I 
 
 
 spend a significant amount of time experimenting
   
 
 with it.
 
 
 Many thanks,
 david jencks
 
 
 
   
 

-
   
 
 To unsubscribe, e-mail:
   
 
 [EMAIL PROTECTED]
 
 
 For additional commands, e-mail:
   
 
 [EMAIL PROTECTED]
 
 
   
 
 -- 
 ***
 *   Scott T. Weaver   *
 * [EMAIL PROTECTED] *
 * http://www.einnovation.com*
 * --  *
 *   Apache Jetspeed Enterprise Portal *
 * Apache Pluto Portlet Container  *
 * *
 * OpenEditPro, Website Content Management *
 * http://www.openeditpro.com*
 ***
 
 
 
 
 

-
   
 
 To unsubscribe, e-mail:
 
=== message truncated === 






___
Yahoo! Companion - Scarica gratis la toolbar di Ricerca di Yahoo! 
http://companion.yahoo.it

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



Re: What's Happening with Jetspeed-2? A great interview on java.net

2004-11-29 Thread Massimiliano Dessì
I have found on 
http://community.java.net/portlet/

I attend
Jetspeed In Action to review for jugsardegna  and
programmazione.it :-) 
David when the book are completed ?


 --- Ate Douma [EMAIL PROTECTED] ha scritto: 
 An interview given by David Sean Taylor on the new
 Jetspeed-2 to come!
 
 Check it out:
 http://today.java.net/cs/user/print/a/151
 
 



___ 
Nuovo Yahoo! Messenger: E' molto più divertente: Audibles, Avatar, Webcam, 
Giochi, Rubrica… Scaricalo ora! 
http://it.messenger.yahoo.it

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



Re: [ANNOUNCE] Release of Apache Portals Jetspeed-2 M1

2004-12-07 Thread Massimiliano Dessì
Yeah !
Congratulations  for the work.

Massimiliano

 --- David Sean Taylor [EMAIL PROTECTED] ha
scritto: 
 
 The Apache Portals community is pleased to announce
 the release of
 Jetspeed 2.0 M1.
 
 This is our first milestone release and brings
 Jetspeed closer to a 
 final 2.0 release.
 
 Feedback is greatly appreciated, especially in the
 form of bug reports.
 
 You can download Jetspeed 2.0 M1 from:
 
 http://www.apache.org/dist/portals/jetspeed-2/
 
 Release notes and installation instructions are at:
 

http://www.apache.org/dist/portals/jetspeed-2/JETSPEED-2.0-M1-README.txt
 
 The Jetspeed Project Wiki and Home pages can be
 found here:
 
 http://wiki.apache.org/portals/Jetspeed2
 
 http://portals.apache.org/jetspeed-2/
 
 
 
 
 

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



___ 
Nuovo Yahoo! Messenger: E' molto più divertente: Audibles, Avatar, Webcam, 
Giochi, Rubrica… Scaricalo ora! 
http://it.messenger.yahoo.it

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



New Article about Jetspeed 2

2005-01-14 Thread Massimiliano Dessì
It's a first part (In italian):

http://www.mokabyte.it/2005/01/jetspeed2-1.htm

or:

http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2


The English version will be available to more soon on:
http://www.jugsardegna.org/vqwiki/jsp/Wiki?MassimilianoDessi


Massimiliano






___ 
Nuovo Yahoo! Messenger: E' molto più divertente: Audibles, Avatar, Webcam, 
Giochi, Rubrica… Scaricalo ora! 
http://it.messenger.yahoo.it

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



New Article about Jetspeed2 second part (migration jet1 - jet2)

2005-02-16 Thread Massimiliano Dessì
It's a second part (In italian):

http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2_I

or:

http://www.mokabyte.it/2005/02/jetspeed2-2.htm

The example of migration, it's a portlet based on 
Spring, MX4J and a three type of persistence,
JdbcClassic, JdbcTemplate(Spring) and JDO (JPOX with
JDO 2.0 features).

The third part of article are available at the end of
february, and contains the part with MX4J, and the
portlet for Jetspeed2 build with plutoeclipse, and a
complete source of the example (Apache license
naturally).

Massimiliano




___ 
Nuovo Yahoo! Messenger: E' molto più divertente: Audibles, Avatar, Webcam, 
Giochi, Rubrica… Scaricalo ora! 
http://it.messenger.yahoo.it

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



New article about jetspeed2 (Third part)

2005-04-20 Thread Massimiliano Dessì
Porting of  portlet for jetspeed1 in  Jetspeed 2

http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2_II


Massimiliano

p.s.
In my page:
http://www.jugsardegna.org/vqwiki/jsp/Wiki?MassimilianoDessi

It's present a link to download the presentation of
Jetspeed at the XP conference 2003 (5 Mbyte)



___ 
Nuovo Yahoo! Messenger: E' molto più divertente: Audibles, Avatar, Webcam, 
Giochi, Rubrica… Scaricalo ora! 
http://it.messenger.yahoo.it

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



Re: New article about jetspeed2 (Third part)

2005-04-21 Thread Massimiliano Dessì
A new version (1.1) with more explanations it's
on-line.

--- Massimiliano Dessì [EMAIL PROTECTED] wrote:
 Porting of  portlet for jetspeed1 in  Jetspeed 2
 

http://www.jugsardegna.org/vqwiki/jsp/Wiki?Jetspeed2_II
 
 
 Massimiliano
 
 p.s.
 In my page:

http://www.jugsardegna.org/vqwiki/jsp/Wiki?MassimilianoDessi
 
 It's present a link to download the presentation of
 Jetspeed at the XP conference 2003 (5 Mbyte)



___ 
Nuovo Yahoo! Messenger: E' molto più divertente: Audibles, Avatar, Webcam, 
Giochi, Rubrica… Scaricalo ora! 
http://it.messenger.yahoo.it

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