-
excellent,
Any idea when a release of pydev with this fix will be available?.
2007-05-28 10:21:37 UTC in Pydev for Eclipse
-
It also happens for *.C and *.CPP and *.H files. Rendering eclipse useless for C++ development. Can we up the priority on this bug?.
2007-05-25 17:29:25 UTC in Pydev for Eclipse
-
This patch makes sure the dataset that gets passed to
the tooltip generator contains all data series for an
overlaid chart.
2006-09-04 09:30:02 UTC in Cewolf - Chart TagLib Project
-
It is sometimes necessary to express dates as:
"Tuesday 1st of January"
In order to do so you need to calculate the ordinal
suffix "st". Here is an article that describes how to
do it for English:
http://www.javalobby.org/java/forums/t16906.html
It would be nice if joda-time has such functionality
available. I only care for an English implementation
however I suspect others may want it...
2006-06-14 13:35:02 UTC in Joda - Time
-
At the moment the secondOfDay DateTimeFieldType is not
supported by the TimeOfDay class. You are forced to do
something like:
TimeOfDay time = ...;
time.toDateTimeToday().get(DateTimeFieldType.secondOfDay())
2006-06-05 10:56:27 UTC in Joda - Time
-
Logged In: YES
user_id=637710
The usage I inteded this feature was for more clearly
expressing default settings in an application. For example
in our telephony based application there is a setting to say
how long a phone should ring before going to voicemail. That
setting is stored in seconds so I wanted to express 5
minutes in seconds and that will always be 300.
2006-05-28 20:13:05 UTC in Joda - Time
-
At the moment I don't think Joda-Time allows you to
convert from one unit to another.
For example if you want 5 minutes in seconds it would
be nice to be able to Say:
Period.minutes(5).toSeconds();
I would guess the following methods would need to be
added to period:
long toMilliseconds();
long toSeconds();
long toMinutes();
long toHours();
long toDays();
// I am not sure if...
2006-05-26 09:49:45 UTC in Joda - Time
-
Logged In: YES
user_id=637710
With the latest beta it seems to have been fixed.
2006-04-10 08:30:39 UTC in Ant4Eclipse
-
Logged In: YES
user_id=637710
Hello,
I tried the beta version of ant4eclipse but I must be doing
something wrong. I create a workspace in
C:\Source\Work\EclipseWorkspaces\workspace-Scratch.
Then in that workspace I created a project in C:\Temp\ProjA.
which has 1 class a.Main.
I then created a launch config in C:\Temp\ProjA\Main.launch.
I created a simple build script that looks like...
2006-04-03 09:01:36 UTC in Ant4Eclipse
-
Logged In: YES
user_id=637710
Of course that is true. However it is considered bad
practice to have java code in your jsp pages. That is why
custom tags were introduced to elminiate the need for the
jsp writer to write java code. Why for instance does joda
provide the and jsp tags?
You could argue that you can just write your java code
directly using...
2006-03-17 09:02:47 UTC in Joda - Time