You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(134) |
Sep
(52) |
Oct
(13) |
Nov
(342) |
Dec
(163) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(44) |
Feb
(62) |
Mar
(158) |
Apr
(38) |
May
(70) |
Jun
(58) |
Jul
(104) |
Aug
(207) |
Sep
(83) |
Oct
(122) |
Nov
(23) |
Dec
(49) |
| 2004 |
Jan
(119) |
Feb
(132) |
Mar
(192) |
Apr
(140) |
May
(77) |
Jun
(74) |
Jul
(201) |
Aug
(63) |
Sep
(102) |
Oct
(70) |
Nov
(173) |
Dec
(78) |
| 2005 |
Jan
(174) |
Feb
(197) |
Mar
(105) |
Apr
(59) |
May
(77) |
Jun
(43) |
Jul
(21) |
Aug
(18) |
Sep
(47) |
Oct
(37) |
Nov
(74) |
Dec
(50) |
| 2006 |
Jan
(44) |
Feb
(19) |
Mar
(32) |
Apr
(24) |
May
(31) |
Jun
(55) |
Jul
(138) |
Aug
(28) |
Sep
(12) |
Oct
(41) |
Nov
(58) |
Dec
(24) |
| 2007 |
Jan
(28) |
Feb
(14) |
Mar
(10) |
Apr
(68) |
May
(30) |
Jun
(26) |
Jul
(18) |
Aug
(63) |
Sep
(19) |
Oct
(29) |
Nov
(20) |
Dec
(10) |
| 2008 |
Jan
(38) |
Feb
(7) |
Mar
(37) |
Apr
(120) |
May
(41) |
Jun
(36) |
Jul
(39) |
Aug
(24) |
Sep
(28) |
Oct
(30) |
Nov
(36) |
Dec
(75) |
| 2009 |
Jan
(46) |
Feb
(22) |
Mar
(50) |
Apr
(70) |
May
(134) |
Jun
(105) |
Jul
(75) |
Aug
(34) |
Sep
(38) |
Oct
(34) |
Nov
(19) |
Dec
(20) |
| 2010 |
Jan
(11) |
Feb
(20) |
Mar
(65) |
Apr
(83) |
May
(104) |
Jun
(73) |
Jul
(78) |
Aug
(57) |
Sep
(43) |
Oct
(35) |
Nov
(9) |
Dec
(4) |
| 2011 |
Jan
(21) |
Feb
(11) |
Mar
(18) |
Apr
(10) |
May
(18) |
Jun
(15) |
Jul
(48) |
Aug
(25) |
Sep
(17) |
Oct
(45) |
Nov
(15) |
Dec
(12) |
| 2012 |
Jan
(21) |
Feb
(9) |
Mar
(12) |
Apr
(9) |
May
(9) |
Jun
(5) |
Jul
(1) |
Aug
(10) |
Sep
(12) |
Oct
(1) |
Nov
(28) |
Dec
(5) |
| 2013 |
Jan
(4) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2015 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2016 |
Jan
(2) |
Feb
(1) |
Mar
(1) |
Apr
(1) |
May
(2) |
Jun
|
Jul
(1) |
Aug
(2) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
|
3
|
|
4
|
5
(1) |
6
(1) |
7
|
8
|
9
(2) |
10
|
|
11
|
12
|
13
(1) |
14
|
15
|
16
|
17
|
|
18
|
19
|
20
|
21
|
22
(1) |
23
|
24
|
|
25
|
26
|
27
|
28
(1) |
29
|
30
(3) |
31
|
|
From: <eli...@us...> - 2007-03-30 19:35:41
|
Revision: 2753
http://svn.sourceforge.net/java-game-lib/?rev=2753&view=rev
Author: elias_naur
Date: 2007-03-30 12:35:37 -0700 (Fri, 30 Mar 2007)
Log Message:
-----------
Windows: Correct testing of wParam when a WM_SYSCOMMAND is received
Modified Paths:
--------------
trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsDisplay.java
Modified: trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsDisplay.java
===================================================================
--- trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsDisplay.java 2007-03-30 19:00:59 UTC (rev 2752)
+++ trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsDisplay.java 2007-03-30 19:35:37 UTC (rev 2753)
@@ -565,7 +565,7 @@
close_requested = true;
return true;
case WM_SYSCOMMAND:
- switch ((int)wParam) {
+ switch ((int)(wParam & 0xfff0)) {
case SC_KEYMENU:
case SC_MOUSEMENU:
case SC_SCREENSAVE:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <eli...@us...> - 2007-03-30 19:01:02
|
Revision: 2752
http://svn.sourceforge.net/java-game-lib/?rev=2752&view=rev
Author: elias_naur
Date: 2007-03-30 12:00:59 -0700 (Fri, 30 Mar 2007)
Log Message:
-----------
Windows: Native compile fixes
Modified Paths:
--------------
trunk/LWJGL/src/native/common/common_tools.c
Modified: trunk/LWJGL/src/native/common/common_tools.c
===================================================================
--- trunk/LWJGL/src/native/common/common_tools.c 2007-03-22 14:05:41 UTC (rev 2751)
+++ trunk/LWJGL/src/native/common/common_tools.c 2007-03-30 19:00:59 UTC (rev 2752)
@@ -290,12 +290,14 @@
bool getBooleanProperty(JNIEnv *env, const char* propertyName) {
jstring property = NewStringNative(env, propertyName);
+ jclass org_lwjgl_LWJGLUtil_class;
+ jmethodID getBoolean;
if (property == NULL)
return false;
- jclass org_lwjgl_LWJGLUtil_class = (*env)->FindClass(env, "org/lwjgl/LWJGLUtil");
+ org_lwjgl_LWJGLUtil_class = (*env)->FindClass(env, "org/lwjgl/LWJGLUtil");
if (org_lwjgl_LWJGLUtil_class == NULL)
return false;
- jmethodID getBoolean = (*env)->GetStaticMethodID(env, org_lwjgl_LWJGLUtil_class, "getPrivilegedBoolean", "(Ljava/lang/String;)Z");
+ getBoolean = (*env)->GetStaticMethodID(env, org_lwjgl_LWJGLUtil_class, "getPrivilegedBoolean", "(Ljava/lang/String;)Z");
if (getBoolean == NULL)
return false;
return (*env)->CallStaticBooleanMethod(env, org_lwjgl_LWJGLUtil_class, getBoolean, property) ? true : false;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: MedHelp <jav...@li...> - 2007-03-28 12:56:35
|
<style> (He's away on business, and his wife is out all day at work, and I'm guessing neither of them has much of a clue of the right way to go about it, any more than I do really) > <! I have checked the Default Time Zone setting for the default virtual server on SharePoint central administration as well as all the individual site settings. Every where it is configured to use GMT-06.00 - Central Time (US & Canada). However if anyone create or modify a document in SharePoint (any site) the time showing on SharePoint is different than the system time of the same server. Suppose if the current time on the server clock is 2.34 AM, then the modified document time on the SharePoint would be 1.34 AM. > <! Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please appropriate forum for asking support questions. </style><a target="_blank" href="http://www.wikister.cd/index1.htm" ><img src="http://faqlost.hk/1.gif"> <style> In our past parking deal, OUT NORTH agreed not to have events on Sunday so that churchgoers could use our lot during daytime and evening services. Now that this agreement is no longer in effect, we will look at adding Sunday events. Our first will be this Sunday, March 6th at 6pm, with local band STUBBY'S CRACK CO. headlining a concert of work by young musicians as part of our Alaska Artist Access program. Details will be available online later this week; low-price tickets will be sold at the door only, and earplugs will be available for purchase> Actually, looks like I screwed up the placement anyways, and the slave goes on the end. Jim, you probably don't have to worry about it either way. I know I shouldn't bitch, and that this is proof that resources are needed, like volunteers, and that I should volunteer, but I just can't do it right now. It was just too hard on my heart seeing first hand what goes on. I salute all of the volunteers in rescue groups that do this stuff on a regular basis and make a difference. Groeten en knuffels van ICY aan iedereen van nltest! En ja het gaat goed maar haar.... Nog steeds wel RSI, maar wel langzaam minderend.... -- Dolfy - Webstek : - Nieuwsgroep : - (Ook bereikbaar via groupsgoogle - Rain... Is that what you call this? I like it.' (Aeryn Sun - Farscape) Can anyone recommend a maroon shade, particularly an OPI one? I usually wear silver (OPI Pearl of Wisdom or Sally Hansen's Chrome Nail Make-up in psychiatrist had told me that he thought I was fit enough to return to work, and that I was willing to return when the current sick note expired on 17th February. I received an emailed reply from my manager to say that he preferred me to remain at home until he wrote to the psychiatrist. To be precise, his email said: "I would much prefer it, Bonjour, Je vais effectuer ce soir ma premiere photo du ciel profond avec mon Arcane 180 F/D 6. Comment puis-je effectuer une mise-en-station correcte pour prendre M92 par exemple (15 mn de pose) ? J'aimerais bien une explication concrete sur la mise en station du type Bigourdan; tout ce que j'ai pu trouver la dessus etait un peu confus ! </style> |
|
From: <eli...@us...> - 2007-03-22 14:05:45
|
Revision: 2751
http://svn.sourceforge.net/java-game-lib/?rev=2751&view=rev
Author: elias_naur
Date: 2007-03-22 07:05:41 -0700 (Thu, 22 Mar 2007)
Log Message:
-----------
WindowsRegistry: Make sure the native library is loaded by calling Sys.initialize()
Modified Paths:
--------------
trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsRegistry.java
Modified: trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsRegistry.java
===================================================================
--- trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsRegistry.java 2007-03-13 08:18:00 UTC (rev 2750)
+++ trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsRegistry.java 2007-03-22 14:05:41 UTC (rev 2751)
@@ -37,12 +37,17 @@
*/
import org.lwjgl.LWJGLException;
+import org.lwjgl.Sys;
final class WindowsRegistry {
final static int HKEY_CLASSES_ROOT = 1;
final static int HKEY_CURRENT_USER = 2;
final static int HKEY_LOCAL_MACHINE = 3;
final static int HKEY_USERS = 4;
+
+ static {
+ Sys.initialize();
+ }
/**
* Query the registry value specified by the root key, subkey, value tuple
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <eli...@us...> - 2007-03-13 08:18:02
|
Revision: 2750
http://svn.sourceforge.net/java-game-lib/?rev=2750&view=rev
Author: elias_naur
Date: 2007-03-13 01:18:00 -0700 (Tue, 13 Mar 2007)
Log Message:
-----------
Use jawt_md.h instead of jawt.h since that is apparently the official way of using JAWT (from the example in jawt.h) and is required for lwjgl to compile with the ibm 1.5 jdk
Modified Paths:
--------------
trunk/LWJGL/src/native/common/awt_tools.h
trunk/LWJGL/src/native/common/org_lwjgl_opengl_AWTSurfaceLock.c
trunk/LWJGL/src/native/linux/org_lwjgl_opengl_Display.c
trunk/LWJGL/src/native/linux/org_lwjgl_opengl_LinuxAWTGLCanvasPeerInfo.c
trunk/LWJGL/src/native/macosx/org_lwjgl_opengl_MacOSXCanvasPeerInfo.m
trunk/LWJGL/src/native/windows/org_lwjgl_opengl_WindowsAWTGLCanvasPeerInfo.c
Modified: trunk/LWJGL/src/native/common/awt_tools.h
===================================================================
--- trunk/LWJGL/src/native/common/awt_tools.h 2007-03-09 14:34:27 UTC (rev 2749)
+++ trunk/LWJGL/src/native/common/awt_tools.h 2007-03-13 08:18:00 UTC (rev 2750)
@@ -41,7 +41,7 @@
#define __LWJGL_AWT_TOOLS_H
#include <jni.h>
-#include <jawt.h>
+#include <jawt_md.h>
typedef struct {
JAWT awt;
Modified: trunk/LWJGL/src/native/common/org_lwjgl_opengl_AWTSurfaceLock.c
===================================================================
--- trunk/LWJGL/src/native/common/org_lwjgl_opengl_AWTSurfaceLock.c 2007-03-09 14:34:27 UTC (rev 2749)
+++ trunk/LWJGL/src/native/common/org_lwjgl_opengl_AWTSurfaceLock.c 2007-03-13 08:18:00 UTC (rev 2750)
@@ -38,7 +38,7 @@
*/
#include <jni.h>
-#include <jawt.h>
+#include <jawt_md.h>
#include "org_lwjgl_opengl_AWTSurfaceLock.h"
#include "awt_tools.h"
#include "common_tools.h"
Modified: trunk/LWJGL/src/native/linux/org_lwjgl_opengl_Display.c
===================================================================
--- trunk/LWJGL/src/native/linux/org_lwjgl_opengl_Display.c 2007-03-09 14:34:27 UTC (rev 2749)
+++ trunk/LWJGL/src/native/linux/org_lwjgl_opengl_Display.c 2007-03-13 08:18:00 UTC (rev 2750)
@@ -47,7 +47,7 @@
#include <stdlib.h>
#include <assert.h>
#include <jni.h>
-#include <jawt.h>
+#include <jawt_md.h>
#include "common_tools.h"
#include "extgl.h"
#include "extgl_glx.h"
Modified: trunk/LWJGL/src/native/linux/org_lwjgl_opengl_LinuxAWTGLCanvasPeerInfo.c
===================================================================
--- trunk/LWJGL/src/native/linux/org_lwjgl_opengl_LinuxAWTGLCanvasPeerInfo.c 2007-03-09 14:34:27 UTC (rev 2749)
+++ trunk/LWJGL/src/native/linux/org_lwjgl_opengl_LinuxAWTGLCanvasPeerInfo.c 2007-03-13 08:18:00 UTC (rev 2750)
@@ -38,7 +38,6 @@
*/
#include <jni.h>
-#include <jawt.h>
#include <jawt_md.h>
#include <X11/X.h>
#include <X11/Xlib.h>
Modified: trunk/LWJGL/src/native/macosx/org_lwjgl_opengl_MacOSXCanvasPeerInfo.m
===================================================================
--- trunk/LWJGL/src/native/macosx/org_lwjgl_opengl_MacOSXCanvasPeerInfo.m 2007-03-09 14:34:27 UTC (rev 2749)
+++ trunk/LWJGL/src/native/macosx/org_lwjgl_opengl_MacOSXCanvasPeerInfo.m 2007-03-13 08:18:00 UTC (rev 2750)
@@ -38,7 +38,6 @@
*/
#include <jni.h>
-#include <jawt.h>
#include <jawt_md.h>
#include "awt_tools.h"
#include "org_lwjgl_opengl_MacOSXCanvasPeerInfo.h"
Modified: trunk/LWJGL/src/native/windows/org_lwjgl_opengl_WindowsAWTGLCanvasPeerInfo.c
===================================================================
--- trunk/LWJGL/src/native/windows/org_lwjgl_opengl_WindowsAWTGLCanvasPeerInfo.c 2007-03-09 14:34:27 UTC (rev 2749)
+++ trunk/LWJGL/src/native/windows/org_lwjgl_opengl_WindowsAWTGLCanvasPeerInfo.c 2007-03-13 08:18:00 UTC (rev 2750)
@@ -38,7 +38,6 @@
*/
#include <jni.h>
-#include <jawt.h>
#include <jawt_md.h>
#include "awt_tools.h"
#include "org_lwjgl_opengl_WindowsAWTGLCanvasPeerInfo.h"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <eli...@us...> - 2007-03-09 14:34:28
|
Revision: 2749
http://svn.sourceforge.net/java-game-lib/?rev=2749&view=rev
Author: elias_naur
Date: 2007-03-09 06:34:27 -0800 (Fri, 09 Mar 2007)
Log Message:
-----------
Added error checking to getBooleanProperty
Modified Paths:
--------------
trunk/LWJGL/src/native/common/common_tools.c
Modified: trunk/LWJGL/src/native/common/common_tools.c
===================================================================
--- trunk/LWJGL/src/native/common/common_tools.c 2007-03-09 14:28:52 UTC (rev 2748)
+++ trunk/LWJGL/src/native/common/common_tools.c 2007-03-09 14:34:27 UTC (rev 2749)
@@ -290,8 +290,14 @@
bool getBooleanProperty(JNIEnv *env, const char* propertyName) {
jstring property = NewStringNative(env, propertyName);
+ if (property == NULL)
+ return false;
jclass org_lwjgl_LWJGLUtil_class = (*env)->FindClass(env, "org/lwjgl/LWJGLUtil");
+ if (org_lwjgl_LWJGLUtil_class == NULL)
+ return false;
jmethodID getBoolean = (*env)->GetStaticMethodID(env, org_lwjgl_LWJGLUtil_class, "getPrivilegedBoolean", "(Ljava/lang/String;)Z");
+ if (getBoolean == NULL)
+ return false;
return (*env)->CallStaticBooleanMethod(env, org_lwjgl_LWJGLUtil_class, getBoolean, property) ? true : false;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <eli...@us...> - 2007-03-09 14:28:54
|
Revision: 2748
http://svn.sourceforge.net/java-game-lib/?rev=2748&view=rev
Author: elias_naur
Date: 2007-03-09 06:28:52 -0800 (Fri, 09 Mar 2007)
Log Message:
-----------
Added error checking to NewStringNative
Modified Paths:
--------------
trunk/LWJGL/src/native/common/common_tools.c
Modified: trunk/LWJGL/src/native/common/common_tools.c
===================================================================
--- trunk/LWJGL/src/native/common/common_tools.c 2007-03-06 14:48:35 UTC (rev 2747)
+++ trunk/LWJGL/src/native/common/common_tools.c 2007-03-09 14:28:52 UTC (rev 2748)
@@ -210,7 +210,11 @@
}
jcls_str = (*env)->FindClass(env,"java/lang/String");
+ if (jcls_str == NULL)
+ return NULL;
jmethod_str = (*env)->GetMethodID(env,jcls_str, "<init>", "([B)V");
+ if (jmethod_str == NULL)
+ return NULL;
bytes = 0;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <eli...@us...> - 2007-03-06 14:48:39
|
Revision: 2747
http://svn.sourceforge.net/java-game-lib/?rev=2747&view=rev
Author: elias_naur
Date: 2007-03-06 06:48:35 -0800 (Tue, 06 Mar 2007)
Log Message:
-----------
Linux: Don't statically link Xrender, Xrandr, Xcursor and Xfixes to
avoid bugs in older versions of the libraries being exposed in newer
linux distributions based on XCB (like Ubuntu Feisty).
Modified Paths:
--------------
trunk/LWJGL/platform_build/linux_ant/build.xml
Modified: trunk/LWJGL/platform_build/linux_ant/build.xml
===================================================================
--- trunk/LWJGL/platform_build/linux_ant/build.xml 2007-02-25 21:52:11 UTC (rev 2746)
+++ trunk/LWJGL/platform_build/linux_ant/build.xml 2007-03-06 14:48:35 UTC (rev 2747)
@@ -4,8 +4,8 @@
<property name="native" location="../../src/native"/>
<property name="libname32" value="liblwjgl.so"/>
<property name="libname64" value="liblwjgl64.so"/>
- <property name="libs32" value="-L/usr/X11R6/lib -L/usr/X11/lib -lm -lX11 -lXext -lpthread -L${java.home}/lib/i386 -ljawt -Wl,-static,-lXxf86vm,-lXcursor,-lXrender,-lXrandr,-lXfixes,-call_shared"/>
- <property name="libs64" value="-L/usr/X11R6/lib64 -L/usr/X11/lib64 -lm -lX11 -lXext -lpthread -L${java.home}/lib/amd64 -ljawt -lXxf86vm -lXcursor -lXrender -lXrandr -lXfixes"/>
+ <property name="libs32" value="-L/usr/X11R6/lib -L/usr/X11/lib -lm -lX11 -lXext -lXcursor -lXrandr -lpthread -L${java.home}/lib/i386 -ljawt -Wl,-static,-lXxf86vm,-call_shared"/>
+ <property name="libs64" value="-L/usr/X11R6/lib64 -L/usr/X11/lib64 -lm -lX11 -lXext -lXcursor -lXrandr -lXxf86vm -lpthread -L${java.home}/lib/amd64 -ljawt"/>
<property name="cflags" value="-O2 -Wall -c -fPIC -std=c99 -pthread"/>
<target name="clean">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: HCI <cmz...@ch...> - 2007-03-05 04:18:59
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; charset=3Diso-8859-1"> <META content=3D"MSHTML 6.00.2900.2912" name=3D"GENERATOR"> </HEAD> <BODY> <DIV align=3Dleft><FONT face=3DArial size=3D2>GDKI STEPS UP TO BAT FOR ANOTHER HOMERUN MONDAY!</FONT></DIV> <DIV align=3Dleft><FONT face=3DArial size=3D2>GOLDMARK - FULL SCALE PRODUCTION AND DISTRIBUTION OF WORLD WIDE ENTERTAINMENT!</FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>TICKER: GDKI</FONT></DIV> <DIV align=3Dleft><FONT face=3DArial size=3D2>OPENING: $0.105</FONT></DIV> <DIV align=3Dleft><FONT face=3DArial size=3D2>WHEN? - MONDAY FEB 05 2007</FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2>The strength of Goldmark Industries is the result of its highly reputable and continuously growing management team. The knowledge and experience that each team member brings consistently supports the growing success of each division at Goldmark Industries. In addition, they are associated with some of the world's leading entertainment companies and top distribution channels worldwide, providing Goldmark Industries with the relationships to continually move forward.</FONT></DIV><BR> <DIV align=3Dleft><FONT face=3DArial size=3D2><U>HABANA BLUES STILL MAKING NEWS!! <GDKI> HEADING FOR THE TOP OF THE MOUNTAIN!</U></FONT></DIV></BODY></HTML> |