You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(128) |
Dec
(65) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(48) |
Feb
(132) |
Mar
(95) |
Apr
(47) |
May
(54) |
Jun
(2) |
Jul
(57) |
Aug
(109) |
Sep
(131) |
Oct
(186) |
Nov
(105) |
Dec
(78) |
2007 |
Jan
(125) |
Feb
(105) |
Mar
(52) |
Apr
(104) |
May
(63) |
Jun
(116) |
Jul
(76) |
Aug
|
Sep
(18) |
Oct
(93) |
Nov
(110) |
Dec
(169) |
2008 |
Jan
(90) |
Feb
(64) |
Mar
(41) |
Apr
(23) |
May
(6) |
Jun
(18) |
Jul
(10) |
Aug
(61) |
Sep
(139) |
Oct
(50) |
Nov
(55) |
Dec
(2) |
2009 |
Jan
|
Feb
(1) |
Mar
(62) |
Apr
(22) |
May
(17) |
Jun
(19) |
Jul
(40) |
Aug
(21) |
Sep
|
Oct
(40) |
Nov
(23) |
Dec
|
2010 |
Jan
(14) |
Feb
(40) |
Mar
(9) |
Apr
(11) |
May
(19) |
Jun
(4) |
Jul
(10) |
Aug
(22) |
Sep
(15) |
Oct
|
Nov
(2) |
Dec
|
2011 |
Jan
(13) |
Feb
(10) |
Mar
|
Apr
(13) |
May
|
Jun
|
Jul
(2) |
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(33) |
May
(20) |
Jun
|
Jul
(8) |
Aug
(7) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
From: Braden M. <br...@us...> - 2006-12-10 07:38:16
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29672 Modified Files: configure-gcc-dbg Log Message: Use -g3. Index: configure-gcc-dbg =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure-gcc-dbg,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** configure-gcc-dbg 17 Nov 2006 02:34:22 -0000 1.5 --- configure-gcc-dbg 10 Dec 2006 07:38:14 -0000 1.6 *************** *** 1,3 **** #!/bin/bash ! ./$(dirname $0)/configure -C --disable-static --enable-gtk-doc CXXFLAGS='-g -O0 -Wall -Wextra -Wno-missing-braces -Wno-missing-field-initializers -Wno-attributes' "$*" --- 1,3 ---- #!/bin/bash ! ./$(dirname $0)/configure -C --disable-static --enable-gtk-doc CXXFLAGS='-g3 -O0 -Wall -Wextra -Wno-missing-braces -Wno-missing-field-initializers -Wno-attributes' "$*" |
From: Braden M. <br...@us...> - 2006-12-10 07:38:10
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29474 Modified Files: Tag: OpenVRML-0_16-BRANCH configure-gcc-dbg Log Message: Use -g3. Index: configure-gcc-dbg =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure-gcc-dbg,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -C2 -d -r1.1.2.4 -r1.1.2.5 *** configure-gcc-dbg 17 Nov 2006 02:34:09 -0000 1.1.2.4 --- configure-gcc-dbg 10 Dec 2006 07:38:04 -0000 1.1.2.5 *************** *** 1,3 **** #!/bin/bash ! ./$(dirname $0)/configure -C --disable-static --enable-gtk-doc CXXFLAGS='-g -O0 -Wall -Wextra -Wno-missing-braces -Wno-missing-field-initializers -Wno-attributes' "$*" --- 1,3 ---- #!/bin/bash ! ./$(dirname $0)/configure -C --disable-static --enable-gtk-doc CXXFLAGS='-g3 -O0 -Wall -Wextra -Wno-missing-braces -Wno-missing-field-initializers -Wno-attributes' "$*" |
From: Braden M. <br...@us...> - 2006-12-10 07:26:36
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25088/src/libopenvrml-gl/openvrml/gl Modified Files: viewer.cpp Log Message: The Apple OpenGL framework seems to deviate from the GLU spec with respect to the type signature of the GLU tesselator callback function. Even though Apple's glu.h header appears consistent with the specification, the compiler is quite insistent that the type signature of this callback is something other than what is reflected there. Index: viewer.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl/viewer.cpp,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** viewer.cpp 9 Dec 2006 08:40:38 -0000 1.50 --- viewer.cpp 10 Dec 2006 07:26:34 -0000 1.51 *************** *** 1982,1986 **** * C linkage. */ ! typedef GLvoid (OPENVRML_GL_CALLBACK_* TessCB)(); /** --- 1982,1990 ---- * C linkage. */ ! # if HAVE_APPLE_OPENGL_FRAMEWORK ! typedef GLvoid (*OPENVRML_GL_CALLBACK_ TessCB)(...); ! # else ! typedef GLvoid (*OPENVRML_GL_CALLBACK_ TessCB)(GLvoid); ! # endif /** *************** *** 2054,2058 **** gluTessCallback(&tesselator, GLU_TESS_VERTEX_DATA, reinterpret_cast<TessCB>(tessExtrusionVertex)); ! gluTessCallback(&tesselator, GLU_TESS_END, glEnd); if (mask & viewer::mask_bottom) { --- 2058,2063 ---- gluTessCallback(&tesselator, GLU_TESS_VERTEX_DATA, reinterpret_cast<TessCB>(tessExtrusionVertex)); ! gluTessCallback(&tesselator, GLU_TESS_END, ! reinterpret_cast<TessCB>(glEnd)); if (mask & viewer::mask_bottom) { |
From: Braden M. <br...@us...> - 2006-12-10 07:26:36
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25088 Modified Files: ChangeLog Log Message: The Apple OpenGL framework seems to deviate from the GLU spec with respect to the type signature of the GLU tesselator callback function. Even though Apple's glu.h header appears consistent with the specification, the compiler is quite insistent that the type signature of this callback is something other than what is reflected there. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1397 retrieving revision 1.1398 diff -C2 -d -r1.1397 -r1.1398 *** ChangeLog 10 Dec 2006 07:07:30 -0000 1.1397 --- ChangeLog 10 Dec 2006 07:26:34 -0000 1.1398 *************** *** 1,4 **** --- 1,17 ---- 2006-12-10 Braden McDaniel <br...@en...> + The Apple OpenGL framework seems to deviate from the GLU spec with + respect to the type signature of the GLU tesselator callback + function. Even though Apple's glu.h header appears consistent + with the specification, the compiler is quite insistent that the + type signature of this callback is something other than what is + reflected there. + + * src/libopenvrml-gl/openvrml/gl/viewer.cpp + (TessCB): Made declaration conditional based on + HAVE_APPLE_OPENGL_FRAMEWORK. + + 2006-12-10 Braden McDaniel <br...@en...> + Apple's gcc 4.0.1 on PPC seems to have some problem with classes defined inside a function definition. |
From: Braden M. <br...@us...> - 2006-12-10 07:26:24
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25068 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: The Apple OpenGL framework seems to deviate from the GLU spec with respect to the type signature of the GLU tesselator callback function. Even though Apple's glu.h header appears consistent with the specification, the compiler is quite insistent that the type signature of this callback is something other than what is reflected there. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.74 retrieving revision 1.1310.2.75 diff -C2 -d -r1.1310.2.74 -r1.1310.2.75 *** ChangeLog 10 Dec 2006 07:07:07 -0000 1.1310.2.74 --- ChangeLog 10 Dec 2006 07:26:22 -0000 1.1310.2.75 *************** *** 1,4 **** --- 1,17 ---- 2006-12-10 Braden McDaniel <br...@en...> + The Apple OpenGL framework seems to deviate from the GLU spec with + respect to the type signature of the GLU tesselator callback + function. Even though Apple's glu.h header appears consistent + with the specification, the compiler is quite insistent that the + type signature of this callback is something other than what is + reflected there. + + * src/libopenvrml-gl/openvrml/gl/viewer.cpp + (TessCB): Made declaration conditional based on + HAVE_APPLE_OPENGL_FRAMEWORK. + + 2006-12-10 Braden McDaniel <br...@en...> + Apple's gcc 4.0.1 on PPC seems to have some problem with classes defined inside a function definition. |
From: Braden M. <br...@us...> - 2006-12-10 07:26:24
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25068/src/libopenvrml-gl/openvrml/gl Modified Files: Tag: OpenVRML-0_16-BRANCH viewer.cpp Log Message: The Apple OpenGL framework seems to deviate from the GLU spec with respect to the type signature of the GLU tesselator callback function. Even though Apple's glu.h header appears consistent with the specification, the compiler is quite insistent that the type signature of this callback is something other than what is reflected there. Index: viewer.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl/viewer.cpp,v retrieving revision 1.43.2.3 retrieving revision 1.43.2.4 diff -C2 -d -r1.43.2.3 -r1.43.2.4 *** viewer.cpp 9 Dec 2006 08:40:01 -0000 1.43.2.3 --- viewer.cpp 10 Dec 2006 07:26:23 -0000 1.43.2.4 *************** *** 1971,1975 **** * C linkage. */ ! typedef GLvoid (OPENVRML_GL_CALLBACK_* TessCB)(); /** --- 1971,1979 ---- * C linkage. */ ! # if HAVE_APPLE_OPENGL_FRAMEWORK ! typedef GLvoid (*OPENVRML_GL_CALLBACK_ TessCB)(...); ! # else ! typedef GLvoid (*OPENVRML_GL_CALLBACK_ TessCB)(GLvoid); ! # endif /** *************** *** 2043,2047 **** gluTessCallback(&tesselator, GLU_TESS_VERTEX_DATA, reinterpret_cast<TessCB>(tessExtrusionVertex)); ! gluTessCallback(&tesselator, GLU_TESS_END, glEnd); if (mask & viewer::mask_bottom) { --- 2047,2052 ---- gluTessCallback(&tesselator, GLU_TESS_VERTEX_DATA, reinterpret_cast<TessCB>(tessExtrusionVertex)); ! gluTessCallback(&tesselator, GLU_TESS_END, ! reinterpret_cast<TessCB>(glEnd)); if (mask & viewer::mask_bottom) { |
From: Braden M. <br...@us...> - 2006-12-10 07:07:31
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17813 Modified Files: ChangeLog Log Message: Apple's gcc 4.0.1 on PPC seems to have some problem with classes defined inside a function definition. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1396 retrieving revision 1.1397 diff -C2 -d -r1.1396 -r1.1397 *** ChangeLog 9 Dec 2006 08:40:37 -0000 1.1396 --- ChangeLog 10 Dec 2006 07:07:30 -0000 1.1397 *************** *** 1,2 **** --- 1,13 ---- + 2006-12-10 Braden McDaniel <br...@en...> + + Apple's gcc 4.0.1 on PPC seems to have some problem with classes + defined inside a function definition. + + * src/libopenvrml/openvrml/node.cpp + (self_ref_node::do_event_listener(const std::string &)): Moved + dummy_listener to the unnamed namespace. + (self_ref_node::do_event_emitter(const std::string &)): Moved + dummy_emitter to the unnamed namespace. + 2006-12-09 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2006-12-10 07:07:31
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17813/src/libopenvrml/openvrml Modified Files: node.cpp Log Message: Apple's gcc 4.0.1 on PPC seems to have some problem with classes defined inside a function definition. Index: node.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/node.cpp,v retrieving revision 1.89 retrieving revision 1.90 diff -C2 -d -r1.89 -r1.90 *** node.cpp 23 Oct 2006 06:39:28 -0000 1.89 --- node.cpp 10 Dec 2006 07:07:30 -0000 1.90 *************** *** 1683,1723 **** } openvrml::event_listener & self_ref_node::do_event_listener(const std::string &) OPENVRML_THROW1(openvrml::unsupported_interface) { - class dummy_listener : public openvrml::sfbool_listener { - public: - virtual ~dummy_listener() OPENVRML_NOTHROW - {} - - private: - virtual void do_process_event(const openvrml::sfbool &, double) - OPENVRML_THROW1(std::bad_alloc) - {} - }; - static dummy_listener listener; return listener; } openvrml::event_emitter & self_ref_node::do_event_emitter(const std::string &) OPENVRML_THROW1(openvrml::unsupported_interface) { - class dummy_emitter : public openvrml::sfbool_emitter { - public: - explicit dummy_emitter(const openvrml::sfbool & value): - openvrml::event_emitter(value), - openvrml::sfbool_emitter(value) - {} - - private: - virtual const std::string do_eventout_id() const OPENVRML_NOTHROW - { - return std::string(); - } - }; - openvrml::sfbool val; static dummy_emitter emitter(val); --- 1683,1723 ---- } + class OPENVRML_LOCAL dummy_listener : public openvrml::sfbool_listener { + public: + virtual ~dummy_listener() OPENVRML_NOTHROW + {} + + private: + virtual void do_process_event(const openvrml::sfbool &, double) + OPENVRML_THROW1(std::bad_alloc) + {} + }; + openvrml::event_listener & self_ref_node::do_event_listener(const std::string &) OPENVRML_THROW1(openvrml::unsupported_interface) { static dummy_listener listener; return listener; } + class OPENVRML_LOCAL dummy_emitter : public openvrml::sfbool_emitter { + public: + explicit dummy_emitter(const openvrml::sfbool & value): + openvrml::event_emitter(value), + openvrml::sfbool_emitter(value) + {} + + private: + virtual const std::string do_eventout_id() const OPENVRML_NOTHROW + { + return std::string(); + } + }; + openvrml::event_emitter & self_ref_node::do_event_emitter(const std::string &) OPENVRML_THROW1(openvrml::unsupported_interface) { openvrml::sfbool val; static dummy_emitter emitter(val); |
From: Braden M. <br...@us...> - 2006-12-10 07:07:11
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17759 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Apple's gcc 4.0.1 on PPC seems to have some problem with classes defined inside a function definition. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.73 retrieving revision 1.1310.2.74 diff -C2 -d -r1.1310.2.73 -r1.1310.2.74 *** ChangeLog 9 Dec 2006 08:40:01 -0000 1.1310.2.73 --- ChangeLog 10 Dec 2006 07:07:07 -0000 1.1310.2.74 *************** *** 1,2 **** --- 1,13 ---- + 2006-12-10 Braden McDaniel <br...@en...> + + Apple's gcc 4.0.1 on PPC seems to have some problem with classes + defined inside a function definition. + + * src/libopenvrml/openvrml/node.cpp + (self_ref_node::do_event_listener(const std::string &)): Moved + dummy_listener to the unnamed namespace. + (self_ref_node::do_event_emitter(const std::string &)): Moved + dummy_emitter to the unnamed namespace. + 2006-12-09 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2006-12-10 07:07:10
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17759/src/libopenvrml/openvrml Modified Files: Tag: OpenVRML-0_16-BRANCH node.cpp Log Message: Apple's gcc 4.0.1 on PPC seems to have some problem with classes defined inside a function definition. Index: node.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/node.cpp,v retrieving revision 1.88.2.1 retrieving revision 1.88.2.2 diff -C2 -d -r1.88.2.1 -r1.88.2.2 *** node.cpp 23 Oct 2006 06:39:17 -0000 1.88.2.1 --- node.cpp 10 Dec 2006 07:07:08 -0000 1.88.2.2 *************** *** 1683,1723 **** } openvrml::event_listener & self_ref_node::do_event_listener(const std::string &) OPENVRML_THROW1(openvrml::unsupported_interface) { - class dummy_listener : public openvrml::sfbool_listener { - public: - virtual ~dummy_listener() OPENVRML_NOTHROW - {} - - private: - virtual void do_process_event(const openvrml::sfbool &, double) - OPENVRML_THROW1(std::bad_alloc) - {} - }; - static dummy_listener listener; return listener; } openvrml::event_emitter & self_ref_node::do_event_emitter(const std::string &) OPENVRML_THROW1(openvrml::unsupported_interface) { - class dummy_emitter : public openvrml::sfbool_emitter { - public: - explicit dummy_emitter(const openvrml::sfbool & value): - openvrml::event_emitter(value), - openvrml::sfbool_emitter(value) - {} - - private: - virtual const std::string do_eventout_id() const OPENVRML_NOTHROW - { - return std::string(); - } - }; - openvrml::sfbool val; static dummy_emitter emitter(val); --- 1683,1723 ---- } + class OPENVRML_LOCAL dummy_listener : public openvrml::sfbool_listener { + public: + virtual ~dummy_listener() OPENVRML_NOTHROW + {} + + private: + virtual void do_process_event(const openvrml::sfbool &, double) + OPENVRML_THROW1(std::bad_alloc) + {} + }; + openvrml::event_listener & self_ref_node::do_event_listener(const std::string &) OPENVRML_THROW1(openvrml::unsupported_interface) { static dummy_listener listener; return listener; } + class OPENVRML_LOCAL dummy_emitter : public openvrml::sfbool_emitter { + public: + explicit dummy_emitter(const openvrml::sfbool & value): + openvrml::event_emitter(value), + openvrml::sfbool_emitter(value) + {} + + private: + virtual const std::string do_eventout_id() const OPENVRML_NOTHROW + { + return std::string(); + } + }; + openvrml::event_emitter & self_ref_node::do_event_emitter(const std::string &) OPENVRML_THROW1(openvrml::unsupported_interface) { openvrml::sfbool val; static dummy_emitter emitter(val); |
From: Braden M. <br...@us...> - 2006-12-09 08:40:40
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv14123 Modified Files: ChangeLog Log Message: Don't need to include <ioenvrml/vrml97node.h>. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1395 retrieving revision 1.1396 diff -C2 -d -r1.1395 -r1.1396 *** ChangeLog 6 Dec 2006 01:58:50 -0000 1.1395 --- ChangeLog 9 Dec 2006 08:40:37 -0000 1.1396 *************** *** 1,2 **** --- 1,7 ---- + 2006-12-09 Braden McDaniel <br...@en...> + + * src/libopenvrml-gl/openvrml/gl/viewer.cpp: Don't need to include + <openvrml/vrml97node.h>. + 2006-12-05 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2006-12-09 08:40:40
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv14123/src/libopenvrml-gl/openvrml/gl Modified Files: viewer.cpp Log Message: Don't need to include <ioenvrml/vrml97node.h>. Index: viewer.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl/viewer.cpp,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** viewer.cpp 31 Oct 2006 03:43:07 -0000 1.49 --- viewer.cpp 9 Dec 2006 08:40:38 -0000 1.50 *************** *** 45,49 **** # endif # include <openvrml/browser.h> - # include <openvrml/vrml97node.h> # include "viewer.h" --- 45,48 ---- |
From: Braden M. <br...@us...> - 2006-12-09 08:40:04
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv13714 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Don't need to include <ioenvrml/vrml97node.h>. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.72 retrieving revision 1.1310.2.73 diff -C2 -d -r1.1310.2.72 -r1.1310.2.73 *** ChangeLog 6 Dec 2006 01:58:38 -0000 1.1310.2.72 --- ChangeLog 9 Dec 2006 08:40:01 -0000 1.1310.2.73 *************** *** 1,2 **** --- 1,7 ---- + 2006-12-09 Braden McDaniel <br...@en...> + + * src/libopenvrml-gl/openvrml/gl/viewer.cpp: Don't need to include + <openvrml/vrml97node.h>. + 2006-12-05 Braden McDaniel <br...@en...> |
From: Braden M. <br...@us...> - 2006-12-09 08:40:03
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv13714/src/libopenvrml-gl/openvrml/gl Modified Files: Tag: OpenVRML-0_16-BRANCH viewer.cpp Log Message: Don't need to include <ioenvrml/vrml97node.h>. Index: viewer.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml-gl/openvrml/gl/viewer.cpp,v retrieving revision 1.43.2.2 retrieving revision 1.43.2.3 diff -C2 -d -r1.43.2.2 -r1.43.2.3 *** viewer.cpp 10 Oct 2006 21:49:10 -0000 1.43.2.2 --- viewer.cpp 9 Dec 2006 08:40:01 -0000 1.43.2.3 *************** *** 45,49 **** # endif # include <openvrml/browser.h> - # include <openvrml/vrml97node.h> # include "viewer.h" --- 45,48 ---- |
From: Braden M. <br...@us...> - 2006-12-06 01:58:53
|
Update of /cvsroot/openvrml/openvrml/mozilla-plugin/src In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25983/mozilla-plugin/src Modified Files: openvrml.cpp Log Message: Include MIME description for model/x3d+vrml. Index: openvrml.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/mozilla-plugin/src/openvrml.cpp,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** openvrml.cpp 30 Nov 2006 06:47:43 -0000 1.47 --- openvrml.cpp 6 Dec 2006 01:58:50 -0000 1.48 *************** *** 280,284 **** char * NPP_GetMIMEDescription() { ! return "model/vrml:wrl:VRML world;" "x-world/x-vrml:wrl:VRML world"; } --- 280,285 ---- char * NPP_GetMIMEDescription() { ! return "model/x3d+vrml:x3dv:X3D world;" ! "model/vrml:wrl:VRML world;" "x-world/x-vrml:wrl:VRML world"; } |
From: Braden M. <br...@us...> - 2006-12-06 01:58:52
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25983 Modified Files: ChangeLog Log Message: Include MIME description for model/x3d+vrml. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1394 retrieving revision 1.1395 diff -C2 -d -r1.1394 -r1.1395 *** ChangeLog 6 Dec 2006 01:52:58 -0000 1.1394 --- ChangeLog 6 Dec 2006 01:58:50 -0000 1.1395 *************** *** 1,4 **** --- 1,10 ---- 2006-12-05 Braden McDaniel <br...@en...> + * mozilla-plugin/src/openvrml.cpp + (NPP_GetMIMEDescription()): Include MIME description for + model/x3d+vrml. + + 2006-12-05 Braden McDaniel <br...@en...> + Set ios_base::badbit (instead of failbit) when stream construction does not produce a readable stream. |
From: Braden M. <br...@us...> - 2006-12-06 01:58:43
|
Update of /cvsroot/openvrml/openvrml/mozilla-plugin/src In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25961/mozilla-plugin/src Modified Files: Tag: OpenVRML-0_16-BRANCH openvrml.cpp Log Message: Include MIME description for model/x3d+vrml. Index: openvrml.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/mozilla-plugin/src/openvrml.cpp,v retrieving revision 1.37.2.10 retrieving revision 1.37.2.11 diff -C2 -d -r1.37.2.10 -r1.37.2.11 *** openvrml.cpp 30 Nov 2006 06:47:32 -0000 1.37.2.10 --- openvrml.cpp 6 Dec 2006 01:58:38 -0000 1.37.2.11 *************** *** 280,284 **** char * NPP_GetMIMEDescription() { ! return "model/vrml:wrl:VRML world;" "x-world/x-vrml:wrl:VRML world"; } --- 280,285 ---- char * NPP_GetMIMEDescription() { ! return "model/x3d+vrml:x3dv:X3D world;" ! "model/vrml:wrl:VRML world;" "x-world/x-vrml:wrl:VRML world"; } |
From: Braden M. <br...@us...> - 2006-12-06 01:58:43
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25961 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Include MIME description for model/x3d+vrml. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.71 retrieving revision 1.1310.2.72 diff -C2 -d -r1.1310.2.71 -r1.1310.2.72 *** ChangeLog 6 Dec 2006 01:52:48 -0000 1.1310.2.71 --- ChangeLog 6 Dec 2006 01:58:38 -0000 1.1310.2.72 *************** *** 1,4 **** --- 1,10 ---- 2006-12-05 Braden McDaniel <br...@en...> + * mozilla-plugin/src/openvrml.cpp + (NPP_GetMIMEDescription()): Include MIME description for + model/x3d+vrml. + + 2006-12-05 Braden McDaniel <br...@en...> + Set ios_base::badbit (instead of failbit) when stream construction does not produce a readable stream. |
From: Braden M. <br...@us...> - 2006-12-06 01:53:00
|
Update of /cvsroot/openvrml/openvrml/src/openvrml-gtkplug In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23635/src/openvrml-gtkplug Modified Files: gtkvrmlbrowser.cpp Log Message: Set ios_base::badbit (instead of failbit) when stream construction does not produce a readable stream. Index: gtkvrmlbrowser.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/openvrml-gtkplug/gtkvrmlbrowser.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** gtkvrmlbrowser.cpp 2 Dec 2006 07:20:21 -0000 1.4 --- gtkvrmlbrowser.cpp 6 Dec 2006 01:52:58 -0000 1.5 *************** *** 516,520 **** const int get_url_result = this->streambuf_->get_url_result(); if (get_url_result != 0) { ! this->setstate(std::ios_base::failbit); } } --- 516,520 ---- const int get_url_result = this->streambuf_->get_url_result(); if (get_url_result != 0) { ! this->setstate(std::ios_base::badbit); } } |
From: Braden M. <br...@us...> - 2006-12-06 01:53:00
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23635/src/libopenvrml/openvrml Modified Files: browser.cpp Log Message: Set ios_base::badbit (instead of failbit) when stream construction does not produce a readable stream. Index: browser.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/browser.cpp,v retrieving revision 1.197 retrieving revision 1.198 diff -C2 -d -r1.197 -r1.198 *** browser.cpp 6 Dec 2006 01:22:04 -0000 1.197 --- browser.cpp 6 Dec 2006 01:52:58 -0000 1.198 *************** *** 4666,4670 **** * if (!this->buf_.open(path.c_str(), * ios_base::in | ios_base::binary)) { ! * this->setstate(ios_base::failbit); * } * } --- 4666,4670 ---- * if (!this->buf_.open(path.c_str(), * ios_base::in | ios_base::binary)) { ! * this->setstate(ios_base::badbit); * } * } |
From: Braden M. <br...@us...> - 2006-12-06 01:53:00
|
Update of /cvsroot/openvrml/openvrml/examples In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23635/examples Modified Files: sdl_viewer.cpp Log Message: Set ios_base::badbit (instead of failbit) when stream construction does not produce a readable stream. Index: sdl_viewer.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/examples/sdl_viewer.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** sdl_viewer.cpp 6 Dec 2006 01:22:04 -0000 1.14 --- sdl_viewer.cpp 6 Dec 2006 01:52:58 -0000 1.15 *************** *** 145,149 **** if (!this->buf_.open(path.c_str(), ios_base::in | ios_base::binary)) { ! this->setstate(ios_base::failbit); } } --- 145,149 ---- if (!this->buf_.open(path.c_str(), ios_base::in | ios_base::binary)) { ! this->setstate(ios_base::badbit); } } |
From: Braden M. <br...@us...> - 2006-12-06 01:53:00
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23635 Modified Files: ChangeLog Log Message: Set ios_base::badbit (instead of failbit) when stream construction does not produce a readable stream. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1393 retrieving revision 1.1394 diff -C2 -d -r1.1393 -r1.1394 *** ChangeLog 6 Dec 2006 01:22:03 -0000 1.1393 --- ChangeLog 6 Dec 2006 01:52:58 -0000 1.1394 *************** *** 1,4 **** --- 1,20 ---- 2006-12-05 Braden McDaniel <br...@en...> + Set ios_base::badbit (instead of failbit) when stream construction + does not produce a readable stream. + + * examples/sdl_viewer.cpp + (resource_fetcher::do_get_resource(const std::string &): Set + ios_base::badbit instead of failbit. + * src/libopenvrml/openvrml/browser.cpp + (openvrml::resource_fetcher::do_get_resource(const std::string &): In the + example code in the doc-comment, set ios_base::badbit instead of + failbit. + * src/openvrml-gtkplug/gtkvrmlbrowser.cpp + (resource_fetcher::do_get_resource(const std::string &)): Set + ios_base::badbit instead of failbit. + + 2006-12-05 Braden McDaniel <br...@en...> + Pass ios_base::binary when opening arbitrary (i.e., possibly not text) files. Windows requires this. |
From: Braden M. <br...@us...> - 2006-12-06 01:52:51
|
Update of /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23602/src/libopenvrml/openvrml Modified Files: Tag: OpenVRML-0_16-BRANCH browser.cpp Log Message: Set ios_base::badbit (instead of failbit) when stream construction does not produce a readable stream. Index: browser.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/libopenvrml/openvrml/browser.cpp,v retrieving revision 1.190.2.5 retrieving revision 1.190.2.6 diff -C2 -d -r1.190.2.5 -r1.190.2.6 *** browser.cpp 6 Dec 2006 01:21:39 -0000 1.190.2.5 --- browser.cpp 6 Dec 2006 01:52:49 -0000 1.190.2.6 *************** *** 5834,5838 **** * if (!this->buf_.open(path.c_str(), * ios_base::in | ios_base::binary)) { ! * this->setstate(ios_base::failbit); * } * } --- 5834,5838 ---- * if (!this->buf_.open(path.c_str(), * ios_base::in | ios_base::binary)) { ! * this->setstate(ios_base::badbit); * } * } |
From: Braden M. <br...@us...> - 2006-12-06 01:52:51
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23602 Modified Files: Tag: OpenVRML-0_16-BRANCH ChangeLog Log Message: Set ios_base::badbit (instead of failbit) when stream construction does not produce a readable stream. Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1310.2.70 retrieving revision 1.1310.2.71 diff -C2 -d -r1.1310.2.70 -r1.1310.2.71 *** ChangeLog 6 Dec 2006 01:21:38 -0000 1.1310.2.70 --- ChangeLog 6 Dec 2006 01:52:48 -0000 1.1310.2.71 *************** *** 1,4 **** --- 1,20 ---- 2006-12-05 Braden McDaniel <br...@en...> + Set ios_base::badbit (instead of failbit) when stream construction + does not produce a readable stream. + + * examples/sdl_viewer.cpp + (browser::do_get_resource(const std::string &): Set + ios_base::badbit instead of failbit. + * src/libopenvrml/openvrml/browser.cpp + (openvrml::browser::do_get_resource(const std::string &): In the + example code in the doc-comment, set ios_base::badbit instead of + failbit. + * src/openvrml-gtkplug/gtkvrmlbrowser.cpp + (browser::do_get_resource(const std::string &)): Set + ios_base::badbit instead of failbit. + + 2006-12-05 Braden McDaniel <br...@en...> + Pass ios_base::binary when opening arbitrary (i.e., possibly not text) files. Windows requires this. |
From: Braden M. <br...@us...> - 2006-12-06 01:52:51
|
Update of /cvsroot/openvrml/openvrml/src/openvrml-gtkplug In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23602/src/openvrml-gtkplug Modified Files: Tag: OpenVRML-0_16-BRANCH gtkvrmlbrowser.cpp Log Message: Set ios_base::badbit (instead of failbit) when stream construction does not produce a readable stream. Index: gtkvrmlbrowser.cpp =================================================================== RCS file: /cvsroot/openvrml/openvrml/src/openvrml-gtkplug/gtkvrmlbrowser.cpp,v retrieving revision 1.2.2.2 retrieving revision 1.2.2.3 diff -C2 -d -r1.2.2.2 -r1.2.2.3 *** gtkvrmlbrowser.cpp 2 Dec 2006 07:20:07 -0000 1.2.2.2 --- gtkvrmlbrowser.cpp 6 Dec 2006 01:52:49 -0000 1.2.2.3 *************** *** 516,520 **** const int get_url_result = this->streambuf_->get_url_result(); if (get_url_result != 0) { ! this->setstate(std::ios_base::failbit); } } --- 516,520 ---- const int get_url_result = this->streambuf_->get_url_result(); if (get_url_result != 0) { ! this->setstate(std::ios_base::badbit); } } |