Looking for open source time tracker
Do you Yahoo!?
Yahoo! Mail - You care about security. So do we.
_______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members
Do you Yahoo!?
_______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members
Its not only a time tracking tool but we use XPlanner. http://www.xplanner.org/ Check it out its pretty cool. Regards, -- Dan Glauser Director of Serverside Development Roundbox Media dan@... W: 404.877.0107 On Wed, 2004-09-01 at 14:06, Tom Apulach wrote: > Anyone know of java open source time tracker software. It would be ok > if it is part of a larger project management system but I want to keep > it simple. > > Tom > > > ______________________________________________________________________ > Do you Yahoo!? > Yahoo! Mail - You care about security. So do we. > > ______________________________________________________________________ > _______________________________________________ > ajug-members mailing list > ajug-members@... > http://www.ajug.org/mailman/listinfo/ajug-members
Sure thing. http://mrproject.codefactory.se/ On Wed, 2004-09-01 at 14:06, Tom Apulach wrote: > Anyone know of java open source time tracker software. It would be ok > if it is part of a larger project management system but I want to keep > it simple. > > Tom
_______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members
Create a new project with the settings that you want, then compare the .project files to see what’s different.
HTH,
Lee Grey
-----Original Message-----
From:
ajug-members-bounces-4vciHtwbE8s@public.gmane.org [mailto:ajug-members-bounces-4vciHtwbE8s@public.gmane.org] On Behalf Of david wible
Sent: Wednesday,
September 01, 2004 3:09 PM
To: General AJUG membership forum
(100-200 messages/month)
Subject: [ajug-members] Eclipse
question
I need to change the project config type from Java to Web. My goof when importing the project.
Eclipse is not picking up the web piece.
Any ideas?
thanks
_______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members
You need to setup multiple network interfaces on the box. david wible wrote: > Hello. My company needs some help with configuring multiple secure > sites on a box. Right now we are not able to deploy and successfully > run more than 1 secure site on a server. > > Any suggestions? We are using struts and its secure plugin. Not much > else I can think to include but any suggestions would be appreciated. > > Thanks in advance, > > david > >------------------------------------------------------------------------ > >_______________________________________________ >ajug-members mailing list >ajug-members@... >http://www.ajug.org/mailman/listinfo/ajug-members > >
_______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members
----- Original Message -----From: david wibleSent: Tuesday, September 07, 2004 12:53 PMSubject: [ajug-members] weird behavior on web serverI'm using jboss3... just the web server. I'm entering a secure page on the server when deployed but locally I disable the struts secure plugin.I have a form that has some properties. When I run my app locally I see the populated form properties come across, in debug mode or not, to the server and it's great.When I deploy to the web server the form property is null so the navigation is wrong.Any suggestions?thanks,David_______________________________________________
ajug-members mailing list
ajug-members-4vciHtwbE8s@public.gmane.org
http://www.ajug.org/mailman/listinfo/ajug-members
_______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members
List,
Good morning. We are experiencing difficulty with trying to get
our application (a WAR file, no EJB involved) to automatically deploy
(a la the Project Automation book by Mike Clark in the Pragmatic
Programmer Starter Kit series) via Ant against WebSphere Application
Server (WAS). I am on the Ant User Mailing List, and I am subscribed
to Barry Searle's list for IBM's Ant/WAS integration. Barry's title is
"Architect, WebSphere Tools for Automated Production Build and
Deployment". The latest message from Mr. Searle on that list seems to
indicate that IBM doesn't intend to work on improving the existing Ant
tasks for WAS:
<snip>
I believe that AutomatedDeploy is really essentially suited to
Scripting (not Ant)
since it generally involves iterating through list of apps to deploy,
list of servers, list of settings, etc
and Ant is simply not suited to this (it is the wrong tool, "like
trying to use a hammer to put in screws").
Hence I have completely reimplemented my AutomatedDeply, and it is
entirely a JACL script
with a small Ant invocation wrapper that can be used instead of
invoking the script directly.
it only uses WAS wsAdmin, it does not use any other WAS AntTasks.
</snip>
So, in light of that less-than-exciting news, I turn to this list.
I was hoping to use a vendor-provided Ant task that exposed an
interface that didn't require learning JACL scripting, but they seem to
be looking at it from the other end of the spectrum, with an Ant task
to serve as a means of invoking a JACL script. I know there are a few
seasoned WAS folks on here, as well as some Ant gurus.
Has anyone used the Ant tasks provided in the wsanttasks.jar file
contained in the lib directory of a WebSphere Application Server
installation? I have found that to even get a simple listing of
applications for a server, I have to run Ant via the ws_ant.bat (or
ws_ant.sh when it's on Unix) provided in the bin directory of the WAS
installation. The IBM script goes through an invocation of yet another
script, setupCmdLine.bat/setupCmdLine.sh, invoking a parade of
environment variables between the two before it finally invokes ant and
processes the build.xml file.
The key task I am attempting to use is wsInstallApp, whose taskdef tag
appears below:
<taskdef name="wsInstallApp"
classname="com.ibm.websphere.ant.tasks.InstallApplication" />
Any advice or insight would be greatly appreciated.
Regards,
Barry C. Hawkins
All Things Computed
site: www.alltc.com
weblog: www.yepthatsme.com
hello... again. I'm back asking for help. I am using Struts 1.1 and I have an ActionForward that is not working. I've inheirited a bunch of code and sometimes it works and sometimes it does not! Any idea why it wouldn't even be able to find this? The error text is on the bottom. Thanks
I'm using Jboss (tomcat 4) and myeclipse and jdk 1.4
The index.jsp has this
<% <at>
taglib uri="struts-logic" prefix="logic" %><logic:redirect forward="home" />struts 1.1 has this
<action path="/Home" type="org.apache.struts.actions.ForwardAction" parameter=".index"/>Tiles def has this
<definition name=".default" path="/pages/layouts/layout_default.jsp"> <put name="title" value="Warranty" /> <put name="header" value="/pages/common/common_header_default.jsp" /> <put name="content" value="/pages/content/content_default.jsp" /> </definition> <definition name=".index" extends=".default"> <put name="header" value="/pages/common/common_header_index.jsp" /> <put name="content" value="/pages/content/content_index.jsp"/> </definition >
Error
type Status report
message /index.jsp
description The requested resource (/index.jsp) is not available.
_______________________________________________ ajug-members mailing list ajug-members@... http://www.ajug.org/mailman/listinfo/ajug-members
RSS Feed11 | |
|---|---|
4 | |
82 | |
13 | |
10 | |
22 | |
17 | |
11 | |
21 | |
37 | |
39 | |
13 | |
10 | |
15 | |
30 | |
9 | |
8 | |
19 | |
11 | |
53 | |
30 | |
80 | |
29 | |
27 | |
25 | |
11 | |
55 | |
53 | |
55 | |
17 | |
21 | |
57 | |
37 | |
81 | |
6 | |
20 | |
6 | |
18 | |
66 | |
42 | |
17 | |
8 | |
4 | |
16 | |
16 | |
31 | |
57 | |
35 | |
6 | |
45 | |
23 | |
70 | |
90 | |
43 | |
54 | |
47 | |
46 | |
85 | |
99 | |
102 | |
49 | |
125 | |
34 | |
9 | |
12 | |
12 | |
10 | |
15 | |
49 | |
61 | |
137 | |
29 | |
43 | |
29 | |
69 | |
19 | |
65 | |
36 | |
30 | |
51 | |
30 | |
36 | |
147 | |
42 | |
88 | |
110 | |
98 | |
48 | |
125 | |
467 | |
23 | |
72 | |
36 | |
34 | |
85 | |
63 | |
64 | |
67 | |
56 | |
84 | |
29 | |
55 | |
30 | |
42 | |
38 | |
119 | |
47 | |
68 | |
105 | |
281 | |
173 | |
118 | |
308 | |
230 | |
48 | |
57 | |
75 | |
62 | |
92 | |
47 | |
75 | |
82 | |
111 | |
104 | |
125 | |
36 | |
2 |