RE: Abstract & Ref Portlet

2002-02-20 Thread David Sean Taylor
For registry entries, there is lots of examples in the /webapp/WEB-INF/conf. All portlets are found in /src/java/org/apache/jetspeed/portal/portlets There is also the PortletHowto Tutorial and other docs at http://jakarta.apache.org/jetspeed > -Original Message- > From: Rajan Gupta [mail

RE: Prevent to add or remove portlet to the page

2002-02-20 Thread David Sean Taylor
> Is it possible to set a permission to disable user to > add or remove portlets to the page. Well it should be, but we have a little function overlap going on here. Im looking at the PortletWrapper class: If I change checkPermission, by commenting out this one line (and adding a new method to t

RE: Jetspeed and Tomcat 4

2002-02-20 Thread David Sean Taylor
Jetspeed works great with Tomcat 4 (Catalina) Been using it for a long time now. Whats the problem? > your server. The theory should be the software can be made to > work with > the server, not visa versa... anyway.. Im not sure if I agree with that statement. Both the application server and

RE: Some suggestion

2002-02-20 Thread David Sean Taylor
Hi Eric, > > JetSpeed now saves the user profile individually. > > 1) Can all users only reference one profile ? Role-based profile support was added recently. http://www.mail-archive.com/jetspeed-dev@jakarta.apache.org/msg02390.htm l > 2) As the above feature, I think it should separate > t

RE: writing a PortletController

2002-02-20 Thread David Sean Taylor
Just take one of the .vm controllers under /WEB-INF/templates/controllers as an example, and customize it to your needs, then add it to the controller registry and start using it in your psml files > -Original Message- > From: Andrea Franconi [mailto:[EMAIL PROTECTED]] > Sent: Wednesday,

RE: Permission not work in 1.3a2

2002-02-20 Thread David Sean Taylor
> Something like > > # > > or > > > That isn't supported, but it needs to be. Im going to need that functionality and will put it in eventually, unless you get to it before me -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: input from databases

2002-02-20 Thread David Sean Taylor
Hi Davide, I think this is a good concept for a portlet. This is just my two cents, not a requirement or anything: I've been thinking about a general 'dataview' or 'grid' portlet too. Perhaps a even more generalized portlet: 'scrolling' portlet, one that supports iframe and one that doesn't. The

article on server side

2002-02-19 Thread David Sean Taylor
http://www.theserverside.com/resources/articles/Portlet_API/article.html -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Calling a bean from the JSP Portlet

2002-02-15 Thread David Sean Taylor
> jetspeed/WEB-INF/classes That's correct. Make sure that you setup your package names to match the directory namees: For ex if your package is "com.xyz.Employee" Then you must place the .class files in a directory under /jetspeed/WEB-INF/classes/com/xyz The Jetspeed Tutorial (HowTo) also cover

RE: Modify PSML for anon in PSML DB

2002-02-12 Thread David Sean Taylor
the > doApply/doSave in xxxControllerAction? > > Thanks > > Ben > > > > - Original Message - > From: "David Sean Taylor" <[EMAIL PROTECTED]> > To: "Jetspeed Users List" <[EMAIL PROTECTED]> > Sent: Monday, February 11, 20

RE: How do I set global attributes from a portlet...

2002-02-12 Thread David Sean Taylor
On one site, I got rid of the navigation, instead had a 2 column controller (25/75) and made the left navigation into a portlet. > -Original Message- > From: Chris Kimpton [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 12, 2002 10:06 AM > To: [EMAIL PROTECTED] > Subject: How do I s

RE: Can't load the default homepage!!

2002-02-12 Thread David Sean Taylor
I remember someone saying they had Jetspeed + Jetty working. Any volunteers to write-up a FAQ on how to get Jetspeed working with Jetty? I propose a general FAQ page for "Deploying Jetspeed on App.Servers" David > -Original Message- > From: Irene Huang [mailto:[EMAIL PROTECTED]] > S

RE: Can url pattern be changed?

2002-02-12 Thread David Sean Taylor
"Horrible > exception" and sometimes no information. > > Anybody know why you can't do this or what you'd have to change > to make it work? > I know I could run two servers but this seems easier to manage if > it works. > > Thanks, > Karen > > > D

Re: Can url pattern be changed?

2002-02-12 Thread David Sean Taylor
rename your jetspeed webapp directory - Original Message - From: "Ed Park" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 12, 2002 11:28 AM Subject: Can url pattern be changed? > To access Jetspeed, you have to enter a url of the > form: > http://localhost/jetspeed

RE: Can I use Jetty instead of Tomcat for Jetspeed?

2002-02-08 Thread David Sean Taylor
Others have tried Jetspeed with Jetty. Search the Jetspeed mailing lists: http://www.mail-archive.com/cgi-bin/htsearch?method=and&format=short&config= jetspeed-dev_jakarta_apache_org&restrict=&exclude=&words=jetty http://www.mail-archive.com/cgi-bin/htsearch?method=and&format=short&config= jetsp

RE: ${webappRoot}

2002-02-08 Thread David Sean Taylor
Take a look at Turbine servlet's init() method in Turbine.java, its all there. (get the source from cvs - the jakarta-turbine-2 project) All it does is get the servlet context and get the real path for "" Some app servers return 'null' for getRealPath(), which is allowed in the servlet api. One c

RE: HP Jetspeed Trail Map

2002-02-07 Thread David Sean Taylor
Marvin, Sorry for responding a few days late, Im just catching up on this list. I really liked the Trailmap concept. Very nice. Is it a package that I can use to create my own demos? Also liked your Task List Portlet. Would you mind if I committed that to the cvs? Thanks, David > -Origina

RE: How Do I Help

2002-02-07 Thread David Sean Taylor
Have you seen the very nice docs from Marvin Lau at HP: http://mml.hpl.hp.com http://developer.bluestone.com/scripts/SaISAPI.dll/Gallery.class/demos/trail Maps/index.jsp?sect=5&area=trail -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: new ServletInvokerPortlet

2002-02-02 Thread David Sean Taylor
Im a little unclear how a JSPPortlet is different from a ServletInvoker calling a JSP. Differences I can see is that with the JSPPortlet, we will automatically search for the JSP based on Jetspeed's fallback algorithm (thats nice), add the default objects, and we use the Turbine service to invoke

Re: new ServletInvokerPortlet

2002-02-02 Thread David Sean Taylor
> Maybe this would be a compromise right now. I think this is better than > the old ServletInvokerPortlet. yes, ok. Lets see if anyone else wants to comment. If no one objects then I'll merge the patch Could you provide me an example using velocity or jsp (instead of out.println)? I will include

Re: new ServletInvokerPortlet

2002-02-02 Thread David Sean Taylor
I think I see how it works. So you are trying to define a way to navigate between different servlets, and keep the servlets within a portal window? Not sure if I understand this "top-level" concept? Are you saying that is Jetspeed? If so, isnt it better to do something like $link and get it dynam

Re: Q:Servlets and Database search in Jetspeed

2002-02-02 Thread David Sean Taylor
t;>"); > out.println(" value=\"Login\">"); > } else { > out.println("You have logged in as "); > out.println( request.getParameter("x_username") ); > out.println("and your password is "); > out.println( request.get

Re: Q:Servlets and Database search in Jetspeed

2002-02-01 Thread David Sean Taylor
- Original Message - From: "Irene Huang" <[EMAIL PROTECTED]> To: "Jetspeed user" <[EMAIL PROTECTED]> Sent: Friday, February 01, 2002 4:39 PM Subject: Q:Servlets and Database search in Jetspeed > Dear all, > > If I have a JSP portlet, and I have a form: > > http://localhost:8080/exam

Re: How to call another portlet from within a portlet

2002-02-01 Thread David Sean Taylor
t regards, > > Mark C. Orciuch > Next Generation Solutions, Ltd. > e-Mail: [EMAIL PROTECTED] > web: http://www.ngsltd.com > > > -Original Message- > From: David Sean Taylor [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 24, 2002 11:10 AM > To: Jetspeed Use

Re: Multiple Instances of same portlet ? (bug ?)

2002-02-01 Thread David Sean Taylor
Its a known design 'feature' that you cant have the same portlet more than once per page. I believe the current advice is to enter multiple portlet-refs in the registry. We are considering alternative approaches, such as a unique id to identify each portlet, but no one has stepped up to implemen

RE: Control portlet access for new users?

2002-01-31 Thread David Sean Taylor
> Is there any administration tools to create users and assign portlets? To create portlets, you have to add them to the xreg files manually. There is no admin function from the UI, although it is a needed feature if someone is wants to put togehter a proposal... To create users you can: - Log o

Re: slide show

2002-01-31 Thread David Sean Taylor
for me! Hopefully this should work better on all browsers, David - Original Message - From: "David Sean Taylor" <[EMAIL PROTECTED]> To: "Jetspeed Users List" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, January 28, 2002 3:05 PM Subject:

RE: conversion of turbine app to portlet?

2002-01-30 Thread David Sean Taylor
Try the "WebPagePortlet" -- see the example in the portlet registry "demo-portlets", and the portlet named: "JavaWeb" For the simplest solution, I recommend running it in another webapp, since you will most likely have conflicting versions of turbine or velocity jars. > -Original Message

RE: slide show

2002-01-28 Thread David Sean Taylor
The HTML only works with Internet Explorer. Seems that the makers of PowerPoint decided to use a format that only Internet Explorer can read. Now why would they do that? There is a way to convert the slide shows to PostScript and then PDF (using a generic printer driver). David Powers was kind en

RE: How to call another portlet from within a portlet

2002-01-28 Thread David Sean Taylor
- otherwise, I couldn't call it and display it. This means > that I need to add all the portlets the user may call in some pane and > somehow make that pane/tab hidden from the user. I wonder if > there is a more > direct way to call a portlet via url? > > > - Original

slide show

2002-01-27 Thread David Sean Taylor
http://www.bluesunrise.com/jetspeed-docs/Jetspeed-Slides_files/frame.htm the 'source': http://www.bluesunrise.com/jetspeed-docs/Jetspeed.ppt -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Some questions

2002-01-26 Thread David Sean Taylor
> Just wondering if there is a way to lock the tabs as well as > specific portlets to a user/role or site level. I want to > provide customization to my users, but at the same time > manage the interface. We are addressing security now, see the jetspeed-dev list discussion on "Group / Role

Re: Query

2002-01-24 Thread David Sean Taylor
I believe what you are referring to as persistence is how the PSML pages are retrieved see javadocs for the PSML Manager: http://www.bluesunrise.com/jetspeed-docs/javadocs/org/apache/jetspeed/servic es/psmlmanager/PsmlManagerService.html The PSMLManager has 2 implementations, the default is

Re: jetspeed and Oracle 9i

2002-01-24 Thread David Sean Taylor
> connection.(Do I need to modify TurbineResources.velocity file also?)I > no > to retrieve user 'turbine': ORA-00600: internal error code, arguments: http://www.oracle-error.com/ora-00600.htm [ttcgcshnd-1], [0], [], [], [], [], [], [] -- To unsubscribe, e-mail:

Re: How to call another portlet from within a portlet

2002-01-24 Thread David Sean Taylor
To: <[EMAIL PROTECTED]> Sent: Wednesday, January 23, 2002 11:17 PM Subject: How to call another portlet from within a portlet Hello. I'm new to Jetspeed. And I would like to know if it's possible to call or display another portlet from within a portlet? In other words, I would like to click on

Re: Creating PSML Database

2002-01-23 Thread David Sean Taylor
I just tested it really quickly from a build a few days old. Seemed to work ok. Did you follow the instructions at: http://jakarta.apache.org/jetspeed/site/psml_db.html I just went to the build/torque dir and typed "ant" - Original Message - From: "Andrew Fitzhugh" <[EMAIL PROTECTED]> T

Re: Query on Multi-device support.

2002-01-23 Thread David Sean Taylor
I am in the process of rewriting the Portlet-Howto. The section "The Multi-Device Challenge" applies to version 1.3a1. It doesn't work with 1.3a2 or the cvs head. Check back tomorrow morning - hope to have most of the doc converted by then - Original Message - From: "Vipul Lalka" <[E

Re: psml in the database

2002-01-15 Thread David Sean Taylor
The profile column stores the PSML. Jetspeed does support an import feature: it takes the psml on the file system and imports it into the database. See http://jakarta.apache.org/jetspeed/site/psml_db.html I think I understand the last question - and the answer is unfortunately no. If you would l

Re: $scree_placeholder

2002-01-15 Thread David Sean Taylor
That comes from Turbine, in the layout service. Its how layouts include screens. See the turbine 2 docs at: http://jakarta.apache.org/turbine/turbine-2/fsd.html - Original Message - From: "Mus" <[EMAIL PROTECTED]> To: "Jetspeed Users List" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: We

Re: odd questions about jetspeed

2002-01-15 Thread David Sean Taylor
> i've two odd questions, > > 1. can I use Jetspeed without Turbine? Jetspeed comes with the Turbine jar > 2. can I just use Portlet API of Jetspeed? (hopefully, the future JCP > Portlet API standard) > The JCP Portlet API will soon be made available here, right Thomas? > basically, two questi

Re: Converting from PSML files to a PSML Database

2002-01-10 Thread David Sean Taylor
> > -Original Message- > From: Emmanuel Bardet [mailto:[EMAIL PROTECTED]] > Sent: mercredi 9 janvier 2002 11:29 > To: Jetspeed Users List > Subject: RE: Converting from PSML files to a PSML Database > > > Thanks David. > > > It works fine except that I did no

Re: problem connecting mysql to jetspeed

2002-01-08 Thread David Sean Taylor
> database.default.url=jdbc:mysql:${webappRoot}/WEB-INF/db/jetspeed Do you store your mySQL database there (WEB-INF/db/jetspeed)? That could cause problems, thats usually where the hypersonic db is located. Or did you delete the hypersonic db? > Is it necessary to change these settings in the so

Re: problem connecting mysql to jetspeed

2002-01-08 Thread David Sean Taylor
> (Using password: NO) That looks suspect - is your password = "NO" > '[EMAIL PROTECTED]' is that a valid server name ? Send us your TurbineResource.properties - I can try it out on my mySQL - Original Message - From: "Patel, Satish" <[EMAIL PROTECTED]> To: "'Jetspeed Users List'" <[

Re: Converting from PSML files to a PSML Database

2002-01-08 Thread David Sean Taylor
INSERT INTO ID_TABLE VALUES(8,'JETSPEED_USER_PROFILE',120,10); INSERT INTO ID_TABLE VALUES(9,'JETSPEED_GROUP_PROFILE',120,10); INSERT INTO ID_TABLE VALUES(10,'JETSPEED_ROLE_PROFILE',120,10); INSERT INTO ID_TABLE VALUES(11,'JETSPEED_ANON_PROFILE',120,10); looks like I did this for Hypersonic, but

Re: Many copy of same portlet with different config

2002-01-05 Thread David Sean Taylor
> IT is possible to have the same portlet, with or without different > parameter configuration, on in the same PSML, although their is a know > problem with the customizer. See It is possible? Thats news to me. If you have two of the same portlet on one page, and you set different parameters in

Re: problem installing HellowWorldPortlet

2002-01-04 Thread David Sean Taylor
rd because I've set it up to display on the default page and I've > even made modifications, so I know it works. I just can't add it from the > list of portlets. > > -Original Message- > From: David Sean Taylor [mailto:[EMAIL PROTECTED]] > Sent: Friday, January

Re: YNT: View for Many sites

2002-01-04 Thread David Sean Taylor
The profiler implementation is found under src/java/org/apache/jetspeed/services/profiler Also see the Profile implementation at src/java/org/apache/jetspeed/om/profile Also reference /proposals/0005.txt - Original Message - From: "Ender Hikmet KILIÇOGLU" <[EMAIL PROTECTED]> To: "Jetspee

Re: problem installing HellowWorldPortlet

2002-01-04 Thread David Sean Taylor
the message. > > Paul Spencer > > Cohns, Willie M Mr USAREC wrote: > > > David, > > > > Would you happen to know what might cause the Hello World example to be > > unavailable in the add portlets screen? I can see the portlet if I > manually > > add i

Re: problem installing HellowWorldPortlet

2002-01-03 Thread David Sean Taylor
I can't find Jetspeed.jar anywhere. I had installed the > Jetspeed1.3a2 from nightly built. Does anyone know how this jetspeed.jar is > called in the new Jespeed1.3a2?? > > thanks alot again, I really appreciate all your help. > > Satish. > > -Original Message- > Fr

Re: How to extend the jetspeed account?

2002-01-03 Thread David Sean Taylor
> I would like to extend the jetspeed account with fields like address, > affiliation and so on. How can I do this? see: http://jakarta.apache.org/turbine/turbine-2/howto/extend-user-howto.html turbine-schema.xml can be found in the jetspeed source under build/torque/schema -- To unsubscribe

Re: problem installing HellowWorldPortlet

2002-01-03 Thread David Sean Taylor
Satish, Ive recently started rewriting the Portlet-Howto at http://www.bluesunrise.com/jetspeed-docs/PortletHowTo.htm I also include the sample code and an ant build and deployment http://www.bluesunrise.com/jetspeed-docs/how-to-examples.jar I am still in the middle of writing it, b

Portlet API spec

2001-12-25 Thread David Sean Taylor
The new Portlet API specification draft is now in cvs: http://cvs.apache.org/viewcvs/jakarta-jetspeed/proposals/portletAPI/PortletA PIDraft.pdf -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: jetspeed 1.3a2

2001-12-11 Thread David Sean Taylor
If you have a patch for Postgres, please send it. With 1.3a2 you can try to generate your tables using Torque by running 'ant' from the build/torque directory. You must first edit the torque build.properties file, and change these lines: database=postgressql project=turbine targetPackage=org.ap

Re: customize 2 column problem

2001-12-11 Thread David Sean Taylor
There is a known bug switching from 3 to 2 columns. Its in the release notes - Original Message - From: "Patel, Satish" <[EMAIL PROTECTED]> To: "'Jetspeed Users List'" <[EMAIL PROTECTED]> Sent: Tuesday, December 11, 2001 7:21 AM Subject: RE: customize 2 column problem > Hey y'all, > > J

Re: New Jetspeed

2001-12-11 Thread David Sean Taylor
There are some issues with tomcat 3.2.2. (We should have a FAQ on that - I'll do that...) In the meantime search the mailing list on TransformerException and you should find the instructions about removing parser.jar and adding xerces and xalan - Original Message - From: "Anthony Smith" <

Final Release 1.3a2

2001-12-11 Thread David Sean Taylor
The final release of Jetspeed version 1.3a2 is available for download at: http://jakarta.apache.org/builds/jakarta-jetspeed/release/v1.3a2/ jetspeed-1.3a2-release-fullwar --- the war file with docs and javadocs jetspeed-1.3a2-release-war --- the war file without docs and javadocs jetspeed-1.3a2-

Re: Jetspeed release 1.3a2 candidate

2001-12-10 Thread David Sean Taylor
re.ContextManager.service(ContextManager.java:758) > at > org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpC > onnectionHandler.java:213) > at > org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416) > at > org.apache.tomcat.ut

Re: Running jsp as turbine screens while using vm template model

2001-12-10 Thread David Sean Taylor
Have you looked at the JspPortlet in the registry portlets.xreg? org.apache.jetspeed.portal.portlets.JspPortlet and there is a *very* simple sample in demo-portlets.xreg HelloJSP Simple JSP Portlet Example -

Re: Jetspeed release 1.3a2 candidate

2001-12-10 Thread David Sean Taylor
Could you please send us a summary of: - operating system - jdk - app server - jetspeed version, size and date of war file - jetspeed log - directory listing of webapps We can then better try to reproduce it. -- To unsubscribe, e-mail: For additional commands, e

RE: jetspeed wap1.1 patch + LinkPortlet

2001-12-10 Thread David Sean Taylor
Thanks, its checked in and a new release candidate is now at http://jakarta.apache.org/builds/jakarta-jetspeed/release/v1.3a2/ > How to add the LinkPortlet to the demo-portlets.xreg: I'll have time to test the LinkPortlet this evening, and add it to the xreg David > -Original Message---

RE: Jetspeed release 1.3a2 candidate

2001-12-10 Thread David Sean Taylor
IS NECESSARY > TO GET THIS TO > WORK? IS THERE A PIECE OF INFORMATION MISSING? DOES > SOMETHING ELSE NEED TO > BE INSTALLED OTHER THAN JUST DROP THE WARFILE INTO THE > WEBAPPS AND IT WILL > WORK? > > Inquiring minds really would like to join the in-crowd and > ge

Jetspeed release 1.3a2 candidate

2001-12-09 Thread David Sean Taylor
There is a 1.3a2 release candidate at http://jakarta.apache.org/builds/jakarta-jetspeed/release/v1.3a2/ If you get a chance, please give it a try and let us know how it works for you. The documentation is updated at http://jakarta.apache.org/jetspeed -- To unsubscribe, e-mail:

RE: Confirmation email

2001-12-07 Thread David Sean Taylor
> -Original Message- > From: ICM S Op Guest 5 [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 07, 2001 9:14 AM > To: Jetspeed Users List > Subject: Confirmation email > > > Hi, > > I don't know if this is handled different in the new Jetspeed > build but with on my release, when I

RE: customize 2 column problem

2001-12-07 Thread David Sean Taylor
of creating subpanes (a pane inside a > pane). Can we live with that? > > Andreas > > > > > > -Original Message- > > From: David Sean Taylor [mailto:[EMAIL PROTECTED]] > > Sent: Freitag, 7. Dezember 2001 16:52 > > To: 'Jetspeed Users List' >

RE: quick question - 'stable' releases

2001-12-07 Thread David Sean Taylor
No promises, but we are now targeting Dec. 9 or 10 for version 1.3a2 > -Original Message- > From: Chris McDaniel [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 07, 2001 7:31 AM > To: '[EMAIL PROTECTED]' > Subject: quick question - 'stable' releases > > > > Does anyone know (ro

RE: customize 2 column problem

2001-12-07 Thread David Sean Taylor
This is a known bug in the MultiColumnController. I've found that I can switch from 3 to 2 columns by deleting all portlets and then re-adding them. > -Original Message- > From: Patel, Satish [mailto:[EMAIL PROTECTED]] > Sent: Friday, December 07, 2001 6:48 AM > To: '[EMAIL PROTECTED]'

RE: Follow UpRE: Simple Question

2001-12-07 Thread David Sean Taylor
t; > > Got it. Actually the default behavior is fine. I just > didn't see that > in > the docs (yet). > > Thanks! > > -Original Message- > From: David Sean Taylor [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 06, 2001 12:50 PM > To: 

RE: Simple Question

2001-12-06 Thread David Sean Taylor
You can always use the customizer to add any portlet. The Turbine account acts as a 'special' account, from where psml is copied to new accounts. Its easy enough to change this behavior in the profiler, patches are welcome. > -Original Message- > From: Rob Wynden [mailto:[EMAIL PROTECTE

RE: Customizing Jetspeed properties.

2001-12-06 Thread David Sean Taylor
thats no longer the case. Its now set in templates/layouts/vm/html/default.vm > -Original Message- > From: Wilson, Bob [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 06, 2001 10:00 AM > To: 'Jetspeed Users List' > Subject: Customizing Jetspeed properties. > > > In 1.3a

RE: Who changed this???

2001-12-06 Thread David Sean Taylor
> mail) But when somebody commited a file than I have to read > the commit code > to figure out what has changed and what is that file for. I > find it better > to have some text which describes what this file is doing > than I could say, > might be interesting for me or not. Im not sure if I und

RE: jetspeed-dev mail list down?

2001-12-05 Thread David Sean Taylor
> I posted some thoughts on security last night, and have not > received any > feedback yet, in addition to not seeing any traffic > whatsoever on jetspeed-dev. The Jetspeed-dev mailing list is not down. We are about to put out a release, and freeze development. Personally, I find your proposal

RE: Stock portlet

2001-12-05 Thread David Sean Taylor
t > Subject: RE: Stock portlet > > > David, > > I got the JetspeedStockQuoteService.java file from cvs this morning, > compiled, and restarted jetspeed and I still have the same problem. > What did I fail to do? > > Lori > > -Original Message- > Fro

RE: Who changed this???

2001-12-05 Thread David Sean Taylor
Hi Andreas, > > let me tell you - I AM VERY DISAPPOINTED! > > I just installed Jetspeed, a nightly build, on my company > computer and applied my patch (like I did with any new > installation since 10/29/01). I have your patches here, and am applying them this morning. Sorry but Im out of town o

Re: JS Groups-Roles-Permissions

2001-12-04 Thread David Sean Taylor
the proposed security model referred to below. Should > we do the security changes within the context of the turbine project, or in > jetspeed? > > Who else is interested in participating? Should we take future discussions > off-line? > > Ripping to go! > > > > At

RE: Stock portlet

2001-12-02 Thread David Sean Taylor
One other thing: The port has been changed on the web service to the default http, so the 'firewall' issues may be resolved that some of you have been experiencing > -Original Message- > From: Funk, Lori K. [mailto:[EMAIL PROTECTED]] > Sent: Friday, November 30, 2001 4:02 PM > To: [EMA

RE: Stock portlet

2001-12-02 Thread David Sean Taylor
YYes, I think thats now fixed. Please try it again. aYou should now be able to change your password and retain your symbols. S > -Original Message- > From: Funk, Lori K. [mailto:[EMAIL PROTECTED]] > Sent: Friday, November 30, 2001 4:02 PM > To: [EMAIL PROTECTED] > Subject: Stock portle

Re: JS Groups-Roles-Permissions

2001-11-28 Thread David Sean Taylor
We did some work on the Jetspeed security features a while back: - added role-based security for registry entries - security maintenance portlets for users, roles, groups - permission checks to access portlets One thing I personally find outstanding is that we could add better secured access to p

RE: introduction to jetspeed

2001-11-24 Thread David Sean Taylor
> Some want to link this off the main page, I don't have CVS > write access :-) > How can that be? http://jakarta.apache.org/jetspeed/site/contributors.html -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Jetspeed login...

2001-11-20 Thread David Sean Taylor
The StockQuotePortlet doesn't work if your firewall closes down port 8082. I will try to modify it so that it works through port 80, that should solve this problem. - Original Message - From: "Andreas Kempf" <[EMAIL PROTECTED]> To: "Jetspeed Users List" <[EMAIL PROTECTED]> Sent: Monday, N

Re: Manipulating profile so user can access the PSML in his directory or anonymous PSML

2001-11-20 Thread David Sean Taylor
Ive been hoping to find time to implement this feature, its on my list for 1.3a2. Basically it would work with users + roles -- the profiler would search for psml first in the user's directory, if the resource wasn't found, it would then search the psml of all the roles that are assigned to that u

RE: Jetspeed: User-Group-Role

2001-11-12 Thread David Sean Taylor
illip Rhodes was considering integrating his security code last week. Haven't heard back from him since. Btw - wasn't it you who had some wml commits? -- David ------- David Sean Taylor [EMAIL PROTECTED] --- > -Original Message- > F

RE: Jetspeed: User-Group-Role

2001-11-12 Thread David Sean Taylor
Andreas, Do you mean the jetspeed security feature? -- David > -Original Message- > From: ICM S CP guest 5 [mailto:[EMAIL PROTECTED]] > Sent: Monday, November 12, 2001 9:41 AM > To: Jetspeed Users List > Subject: Jetspeed: User-Group-Role > > > Hi, > > I wonder if somebody is worki

RE: Application portlet

2001-11-12 Thread David Sean Taylor
I think that the original idea was a portlet that could be maximized. Not sure if its applicable anymore -- David > -Original Message- > From: Anthony Smith [mailto:[EMAIL PROTECTED]] > Sent: Monday, November 12, 2001 7:26 AM > To: Jetspeed Users List > Subject: Application portlet > >

RE: Database PSML

2001-11-01 Thread David Sean Taylor
Atul contributed a database psml implementation a while back, its in the cvs under services/psmlmanager/DatabasePsmlManagerService.java. > -Original Message- > From: Anthony Smith [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 01, 2001 6:33 AM > To: Jetspeed Users List > Subject:

RE: How to load and customize wml profiles - Raphael, David?

2001-10-19 Thread David Sean Taylor
Hi Andreas, > contains a 'mtype' attribute set to 'WML'.\ Look at the ProfileLocator interface for specifying the PSML parameters such as mediatype Im not really sure why the customizer cannot handle customizing WML PSML. Raphael is the resident customizer expert :) . What happens when you

RE: Writing Portlets that support "User Preferences"

2001-10-17 Thread David Sean Taylor
> Should I be > using the Jetspeed Persistence Service? Would this be a look at the HelloVelocityPortlet as an example For any portlet, setAttribute() method stores an attribute as a param to the psml see HelloAction.doUpdate(): portlet.setAttribute("text",text,data); the setAttribute method

RE: Writing Portlets that support "User Preferences"

2001-10-17 Thread David Sean Taylor
> Take the simple example of the Stock Quote Portlet. I would > like for a Im working on now that now, hopefully I can get it checked in by the end of the week. Had a minor setback, decided to use Torque + Cloudscape in my web service implementation to store preferences in the web service. Its m

RE: java.util.Date() into a java.sql.Date

2001-10-17 Thread David Sean Taylor
with oracle all dates are actually timestamps, so you can use jdbc timestamps: java.util.Date date = new java.util.Date(); // get timestamp now java.sql.Timestamp timeStamp = new java.sql.Timestamp(date.getTime()); ps.setTimestamp( 2, timeStamp ); > -Original Message- > From: [EMAIL PR

Re: Session Question

2001-10-15 Thread David Sean Taylor
- Original Message - From: "Paul Spencer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 15, 2001 12:08 PM Subject: Re: Session Question > Anthony, > > Anthony Smith wrote: > > > > If I am using Jetspeed in a round-robin like fashion (one ip address mapping > > to 2 o

Re: Has anyone created a webmail portal?

2001-10-15 Thread David Sean Taylor
Some people talked about writing a webmail portlet, but we never heard back from them. Its on high on my list for after the 1.3a2 release - Original Message - From: "sbelt" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 15, 2001 12:18 PM Subject: Has anyone created a we

Bugzilla

2001-10-12 Thread David Sean Taylor
Ignacio, Could you please give all of us jetspeed users a brief introduction/overview of Bugzilla? For example, could you describe to us how to go about logging a bug. It would also be useful to know the standard procedure for logging a bug. Like if a user finds a bug, should the user first post

RE: Has anyone added forgotten-password functionality?

2001-10-12 Thread David Sean Taylor
Thanks, I will add that to the list of possible features > -Original Message- > From: sbelt [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 12, 2001 10:48 AM > To: [EMAIL PROTECTED] > Subject: Has anyone added forgotten-password functionality? > > > Has anyone added forgotten-passw

RE: Jetspeed in a W2K environment

2001-10-12 Thread David Sean Taylor
http://www.bluesunrise.com/jetspeed is running on a Win2000 server, sp 2, not clustered I think your app.server would have to support deploying clustered webapps and shared sessions Haven't tried deploying jetspeed in a clustered env. yet web server = Apache app server = Tomcat 3.3 Database = hyp

RE: AW: Bug Reports 1.3a2

2001-10-11 Thread David Sean Taylor
> As an aside, I don't think the current process of creating > PSML resources > on user creation is a good idea. The architecture of the > Profiler and Customizer > is such that when a newly created user connects he would > get the default > anonymous home page (because of the Profiler fal

RE: Bug Reports 1.3a2

2001-10-10 Thread David Sean Taylor
40 AM > To: '[EMAIL PROTECTED]' > Subject: AW: Bug Reports 1.3a2 > > > Does this mean, that WML as of 1.3a1 is excluded? We are > curently extending the 1.3a2 to make it WML aware. > > Thanks > > Juergen > > > -Urspr> üngliche Nachricht- >

Bug Reports 1.3a2

2001-10-10 Thread David Sean Taylor
We are closing in on releasing Jetspeed 1.3a2. If you know of any bugs in 1.3a2, could you please send a short description of the bug(s) to this mailing list so we can get them fixed before the release. Thanks David - To uns

Re: Proxy cache problem

2001-10-01 Thread David Sean Taylor
I could be way off here, but have you looked at /templates/jsp/layouts/html/default.jsp? The tag is defined there for the entire portal 'page' You may want to put those tags in the - Original Message - From: "Paul Spencer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, Octob

Re: lokally OK, remotely NOT OK

2001-09-26 Thread David Sean Taylor
Which browser are you using (remotely)? - Original Message - From: "Riedl Juergen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 26, 2001 2:48 AM Subject: WML: lokally OK, remotely NOT OK Hi, using jetspeed 1.3a2/tomcat 3.2.3 I started to enable WML output. Acc

Re: Portlet example help...

2001-09-26 Thread David Sean Taylor
gt; > From: Paul Spencer [mailto:[EMAIL PROTECTED]] > > Sent: Monday, September 24, 2001 5:11 PM > > To: [EMAIL PROTECTED] > > Subject: Re: Portlet example help... > > > > > > Bob, > > Are their any error message in the Jetspeed.log? > > > > Paul Spenc

Re: How to change from vm to jsp template

2001-09-26 Thread David Sean Taylor
- Original Message - From: "Ming Fai" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 26, 2001 3:21 AM Subject: How to change from vm to jsp template > Hi, I'm new to jetspeed and want to ask simple questions. I use the latest > jetspeed 1.3a2-dev. > > 1. What're

<    3   4   5   6   7   8   9   10   >