Skip to content

Instantly share code, notes, and snippets.

@kentfredric
Created January 27, 2011 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kentfredric/798736 to your computer and use it in GitHub Desktop.
Save kentfredric/798736 to your computer and use it in GitHub Desktop.
--- /dev/fd/63 2011-01-28 05:27:57.604138149 +1300
+++ /dev/fd/62 2011-01-28 05:27:57.605138097 +1300
@@ -1,3 +1,1357 @@
+commit 2e83d6bcd22c0d63c474306bb0ad4347c2447b17
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sat Dec 18 08:26:12 2010 -0500
+
+ sf.net bug #3139697 fixed imag2d error on Mac OS X
+
+ The imag2d() routine was using FreeGLUT-specific macros:
+ GLUT_ACTION_ON_WINDOW_CLOSE and GLUT_ACTION_CONTINUE_EXECUTION
+ which was a problem on OS X which does not support them.
+ Added check for FreeGLUT to conditionalize their use.
+
+ Graphics/Graphics2D.pm | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit 2956eab032c3ef5408ad50d9cb248eb1ccc8bb0b
+Author: Doug Hunt <dhunt@arcana.cosmic.ucar.edu>
+Date: Wed Dec 15 14:55:56 2010 -0700
+
+ Merged PDL version of Graphics/PLplot with the stand-alone package from CPAN, version 0.53.
+ Fixed segfault in plplot.t by avoiding the problem: pdl($pdl->sclr). Calls to
+ pdl() with arguments that are themselves PDLs still fails.
+
+ Graphics/PLplot/Changes | 49 +++++++++++++++++++++++++++++++++++++++++++
+ Graphics/PLplot/Makefile.PL | 18 +++++++++++++++-
+ Graphics/PLplot/plplot.pd | 48 +++++++++++++++++++++++++++++++++++++++--
+ t/plplot.t | 38 +++++++++++++++++---------------
+ 4 files changed, 131 insertions(+), 22 deletions(-)
+
+commit b1376a7cb9e1ab315f3b4c5555e4b76dd53e4d46
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sat Dec 11 15:11:33 2010 -0500
+
+ Update PDL::IO::FlexRaw POD for writeflex
+
+ IO/FlexRaw/FlexRaw.pm | 28 +++++++++++++++++-----------
+ 1 files changed, 17 insertions(+), 11 deletions(-)
+
+commit b44ecaac0efc81aadc66fdff825c6358f142ad7a
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sat Dec 11 14:21:25 2010 -0500
+
+ Add open MODE support to writeflex "filename"
+
+ writeflex is documented to take as argument either a "filename"
+ or a FILEHANDLE however if passed something like ">filename" as
+ the file argument, it would quietly (and unexpectedly) open the
+ file ">$name" which would then be ">>filename" and the data would
+ be appended to the file rather than overwriting it.
+
+ This modifies the "filename" option to be used explicitly if
+ passed a perl open type MODE+filename expression which might
+ avoid someone's utter confusion in the future...
+
+ IO/FlexRaw/FlexRaw.pm | 3 ++-
+ 1 files changed, 2 insertions(+), 1 deletions(-)
+
+commit f7f49ebb6b7e868b35d43177c5799ad480de54f0
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Fri Dec 10 13:44:19 2010 -0500
+
+ Add working Makefile.PL for Alien::Proj4
+
+ This is based on the existing probes for PDL::GIS::Proj
+ and PDL::Transform::Proj4 and is being converted to use
+ Devel::CheckLib as the test engine. Once the tests are
+ working, the plan is to roll it up into an Alien::Proj4
+ module.
+
+ inc/Alien/Proj4/Makefile.PL | 94 +++++++++++++++++++++++++++++++++++++++++++
+ 1 files changed, 94 insertions(+), 0 deletions(-)
+
+commit 1018f6b6743cc70d45a86b350f49e3ab48eae776
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Dec 9 13:52:22 2010 -0500
+
+ Fix inc/Devel/CheckLib ASPerl issues
+
+ There were problems with Devel::CheckLib and ActiveState Perl.
+
+ (1) require Devel::CheckLib fails with an error about
+ %Config::Confg being a read only value
+
+ (2) backslashes in the windows paths were deleted making
+ the resulting @flags incorrect and unusable.
+
+ This fix makes an explicit working copy of the needed %Config
+ entries in the _findcc() routine which should resolve the
+ compile failure. It also sets the $keep option to the
+ quotewords() routine to true which appears to fix the bad
+ win32 paths in the option @flags. The fixes will be pushed
+ upstream but are here in the local copy so things work.
+
+ inc/Devel/CheckLib.pm | 5 +++--
+ 1 files changed, 3 insertions(+), 2 deletions(-)
+
+commit 976a4615e8df5bfd344efc74ad3f7c905a2b421b
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Fri Dec 3 14:00:35 2010 -0500
+
+ Update VERSION to 2.4.7_008 for development
+
+ Basic/PDL.pm | 2 +-
+ Known_problems | 2 +-
+ Release_Notes | 32 ++++++++++++++++++++++++++++++++
+ 3 files changed, 34 insertions(+), 2 deletions(-)
+
+commit 74726314c26b9a906087c7be062d323384e91f68
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Fri Dec 3 13:57:38 2010 -0500
+
+ Update Known_problems and README for CPAN
+
+ Known_problems | 3 ++-
+ README | 1 +
+ 2 files changed, 3 insertions(+), 1 deletions(-)
+
+commit f06102311eeff6b3f274f537845f7c0b099eda1e
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Nov 30 10:43:46 2010 -0500
+
+ Create inc/ folder for local module copies
+
+ I ran the use-devel-checklib command to create
+ a PDL/inc folder for local modules used by PDL.
+ It starts with a copy of Devel::CheckLib with
+ the package line munged so it will not be indexed
+ by PAUSE/CPAN indexers.
+
+ The intent is to use this local inc/ folder to
+ develop the needed Alien::XXX modules for PDL
+ portability. We can munge the package lines so
+ that they are not indexed until they are stable
+ and ready for release. The first step will be
+ to implement detection functionality. The next
+ step would be to implement install functionality.
+
+ MANIFEST | 1 +
+ Makefile.PL | 11 ++
+ inc/Devel/CheckLib.pm | 452 +++++++++++++++++++++++++++++++++++++++++++++++++
+ 3 files changed, 464 insertions(+), 0 deletions(-)
+
+commit 73eafc35f8992705f042f5864169449195def8b0
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Nov 30 10:38:48 2010 -0500
+
+ Update Perldl2/TODO list for clarity
+
+ Some tasks were done and others were confusing. I
+ hope this rework helps with organizing any PDL-2.4.8
+ release priorities with the pdl2 shell.
+
+ Perldl2/TODO | 204 +++++++++++++++++++++++++--------------------------------
+ 1 files changed, 90 insertions(+), 114 deletions(-)
+
+commit fe981e602557a8ea0e667975c02148b532bc4d71
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Mon Nov 29 10:27:55 2010 -0500
+
+ Update Known_problems and Release_Notes
+
+ Known_problems | 7 -------
+ Release_Notes | 26 +++++++++++++++++++++++++-
+ 2 files changed, 25 insertions(+), 8 deletions(-)
+
+commit 7f2764bae6655564dff4c27d229d178e89e5ea30
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sun Nov 28 18:58:22 2010 -0500
+
+ Add do_print command to pdl2 shell
+
+ Now you don't have to type $_REPL->do_print to
+ change the print output mode.
+
+ Perldl2/Plugin/PrintControl.pm | 3 +++
+ Perldl2/Profile/Perldl2.pm | 4 ++++
+ Perldl2/TODO | 4 ----
+ 3 files changed, 7 insertions(+), 4 deletions(-)
+
+commit 249a5410ae778df784e5668e0d114ad8511ab01e
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sun Nov 28 02:03:44 2010 -0500
+
+ Update lu_decomp/lu_decomp2 documentation
+
+ Now that lu_decomp is threaded, there is not as much
+ use for lu_decomp2. lu_decomp2 has runs faster but
+ is more likely to fail in the decomposition process.
+
+ Basic/MatrixOps/matrixops.pd | 43 ++++++++++++-----------------------------
+ 1 files changed, 13 insertions(+), 30 deletions(-)
+
+commit e2eed63217830e7e762defba908ec3421237b864
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sat Nov 27 19:16:06 2010 -0500
+
+ Make pdldoc display all matches
+
+ This changes the default for pdldoc and the help command
+ from showing only the first matching topic to showing
+ them all in order. The numeric selection syntax topic[$n]
+ still works, you can just page through if you want now...
+ without another help command.
+
+ Doc/Doc/Perldl.pm | 71 ++++++++++++++++++++++++++++++----------------------
+ 1 files changed, 41 insertions(+), 30 deletions(-)
+
+commit 77f54aeec496dee35e0b10ce9f935f8a24ef9c04
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sat Nov 27 17:55:52 2010 -0500
+
+ Fix pdl2 fallback to perldl on win32 systems
+
+ This is sf.net #3056142. The problem appears
+ to be with running exec on win32 and the weak
+ cmd shell environment. The file handles of
+ the original pdl2 script did not seem to get
+ passed to the newly exec-d perldl but opened
+ again instead. That resulted in interleaved
+ IO between the two instances.
+
+ The fix was to replace the exec call by a
+ do filename call instead so perl handles the
+ new program rather than the shell getting
+ involved.
+
+ Perldl2/pdl2 | 11 ++++-------
+ 1 files changed, 4 insertions(+), 7 deletions(-)
+
+commit 5a18339b35b4214ed94a1d3dab258acc492394ae
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sat Nov 27 16:45:52 2010 -0500
+
+ Fix PDL::hist usage documentation
+
+ The use of unix manpage-style [] for optional arguments
+ is confusing for perl where [] are valid language constructs.
+
+ Basic/Core/Basic.pm | 17 ++++++++++++++---
+ 1 files changed, 14 insertions(+), 3 deletions(-)
+
+commit 9367ca2000f2056bbb43f702e99d73a55ce824ce
+Author: sisyphus_ <sisyphus1@optusnet.com.au>
+Date: Tue Nov 16 11:57:12 2010 +1100
+
+ t/plplot.t - fix up line endings
+
+ Were window-ized from last commit
+
+ t/plplot.t | 1048 ++++++++++++++++++++++++++++++------------------------------
+ 1 files changed, 524 insertions(+), 524 deletions(-)
+
+commit 2514a2b059e5e8812e89e34c51ed0963a595a36c
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sun Nov 14 14:36:51 2010 -0500
+
+ Rename $PDL::FlexRaw::writeflexhdr/verbose
+
+ Fixed the case where the $verbose and $writeflexhdr parameters
+ in the PDL::IO::FlexRaw package were actually defined in the
+ PDL::FlexRaw namespace. This looks like legacy from when these
+ routines were at the top level PDL namespace. Now they are
+ proper PDL::IO::FlexRaw variables.
+
+ IO/FlexRaw/FlexRaw.pm | 16 ++++++++--------
+ 1 files changed, 8 insertions(+), 8 deletions(-)
+
+commit ed1d5bef4e2230c10acfc15a5d71d6187d0d3044
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sun Nov 14 14:04:54 2010 -0500
+
+ Add writeflexhdr() support to writeflex
+
+ If the $PDL::FlexRaw::writeflexhdr is true (false by default)
+ and the file argument to writeflex() is a *file name" and not
+ a handle, writeflexhdr() will be called automatically. I
+ think this should be the default but for back compatability
+ we have the $PDL::FlexRaw::writeflexhdr setting.
+
+ IO/FlexRaw/FlexRaw.pm | 88 +++++++++++++++++++++++++++++++-----------------
+ 1 files changed, 57 insertions(+), 31 deletions(-)
+
+commit 378b97edd477ca065d870ed25548e175df23be6e
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Fri Nov 12 17:29:06 2010 -0500
+
+ Change info memory display units to KB and MB
+
+ There was confusion with the previous Kb and Mb since
+ that notation usually means bits or baud rather than
+ bytes. The capital B is clearer.
+
+ Basic/Core/Core.pm.PL | 4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+commit 8c6b33be717951051f0fa47955df1b29882a2b8a
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Fri Nov 12 15:15:18 2010 -0500
+
+ Make t/dumper.t diag output conditional
+
+ Now that the bug appears to be fixed, we don't
+ need the diagnostics to print unless there is
+ a problem...
+
+ t/dumper.t | 4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+commit ad0edd267b0370996a7f01f968456c1496e69c11
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Fri Nov 12 10:53:08 2010 -0500
+
+ Update VERSION to 2.4.7_007 for development
+
+ Basic/PDL.pm | 2 +-
+ Known_problems | 2 +-
+ Release_Notes | 33 +++++++++++++++++++++++++++++++++
+ 3 files changed, 35 insertions(+), 2 deletions(-)
+
+commit 51f1246eb4eeac9efdcff5140777abea66afb116
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Fri Nov 12 10:49:31 2010 -0500
+
+ Update READMEs for CPAN 2.4.7_006 release
+
+ Known_problems | 19 +++----------------
+ README | 2 +-
+ TODO | 15 ++++++++-------
+ 3 files changed, 12 insertions(+), 24 deletions(-)
+
+commit 5368b77235b6cb8a795d75397dbf5f3f9e1c9f4e
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 11 21:41:10 2010 -0500
+
+ Add POD for wmpeg status return values.
+
+ IO/Pnm/Pic.pm | 27 +++++++++++++++------------
+ 1 files changed, 15 insertions(+), 12 deletions(-)
+
+commit 9bdea705cef06c2e788212cae9107e59651d502e
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 11 21:32:38 2010 -0500
+
+ Update Known_problems/Release_Notes for #3057542
+
+ Known_problems | 1 -
+ Release_Notes | 4 ++++
+ 2 files changed, 4 insertions(+), 1 deletions(-)
+
+commit c7ed1fb2b46e9b597ce9052fdac1e7e4243efe8e
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 11 21:25:56 2010 -0500
+
+ Make wmpeg() return/complain if no ffmpeg
+
+ Now check if an ffmpeg executable is in PATH before
+ trying to open a pipe command to generate the output.
+ I'm not sure what is going on with the error return
+ from the open call but this seems to work ok.
+
+ IO/Pnm/Pic.pm | 8 ++++++++
+ 1 files changed, 8 insertions(+), 0 deletions(-)
+
+commit 027ca9c56ad6a13d1074702094a859b5fd5c413b
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 11 18:24:54 2010 -0500
+
+ Move mapflex tests out of TODO in flexraw.t
+
+ Once these tests pass, the problem is resolved.
+ They seem to pass already but just making sure...
+
+ t/flexraw.t | 85 ++++++++++++++++++++++++++++++-----------------------------
+ 1 files changed, 43 insertions(+), 42 deletions(-)
+
+commit d43f2be9213bd10296c8eace9c80b0d092a7fb2c
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 11 18:16:46 2010 -0500
+
+ Update Known_problems and Release_Notes w progress
+
+ Known_problems | 11 -----------
+ Release_Notes | 11 ++++++++++-
+ 2 files changed, 10 insertions(+), 12 deletions(-)
+
+commit e28e335bcb841fafbe5bec2c601295e3fb50af9f
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 11 18:14:48 2010 -0500
+
+ Create $PDL::toolongtoprint package parameter
+
+ This determines the largest pdl that will be printed
+ by the pdl->string routines. Default is 10000. Added
+ POD to Core.pm for all the PDL global params defined
+ there.
+
+ Basic/Complex/complex.pd | 2 +-
+ Basic/Core/Core.pm.PL | 59 +++++++++++++++++++++++++++++++++++++++++++--
+ 2 files changed, 57 insertions(+), 4 deletions(-)
+
+commit f527679a006136524899f34ffff7d16a9450df8a
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 11 18:12:19 2010 -0500
+
+ proj_transform.t skips all if bad PROJ4 detected
+
+ t/proj_transform.t | 6 +++++-
+ 1 files changed, 5 insertions(+), 1 deletions(-)
+
+commit 21b54e604af9e4e6bc7cf0959b90a310054fd4a0
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 11 17:02:03 2010 -0500
+
+ proj_transform2.t skips all if bad PROJ4 detected
+
+ Probably should mark the PDL Proj bindings as not correctly
+ built but the warnings here might suggest a solution for
+ users with this problem.
+
+ t/proj_transform2.t | 14 +++++++++-----
+ 1 files changed, 9 insertions(+), 5 deletions(-)
+
+commit 39e64e6182872cbff18f82e8626ce875f69921c2
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 11 16:20:47 2010 -0500
+
+ VERSION->2.4.7_006 for more development
+
+ Basic/PDL.pm | 2 +-
+ Known_problems | 7 ++++++-
+ Release_Notes | 36 ++++++++++++++++++++++++++++++++++--
+ 3 files changed, 41 insertions(+), 4 deletions(-)
+
+commit 706361bd525585480ac5edbb7d395fb5d157cc79
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 11 15:46:17 2010 -0500
+
+ Extend pattern used by IO/Dumper.pm to handle pdls
+
+ It appears that for some systems, in addition to the
+ value being returns as a signed number, there are cases
+ where the value was returned as a '' string rather than
+ a number. Now we catch and translate that as well.
+
+ IO/Dumper.pm | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit 51313b9189390f4f6f85a335fd5243725de7b205
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 11 15:42:31 2010 -0500
+
+ Fix mapflex bugs (SF.net #3031068)
+
+ Added ref counting to the base piddle mmapped for mapflew
+ so that when *all* the piddles in the file are freed, *then*
+ the base piddle will be freed. Made working variables in
+ mapflex() lexical to avoid dangling refs. Fixed t/flexraw.t
+ bugs so all tests pass.
+
+ Basic/Core/Core.xs.PL | 2 ++
+ IO/FlexRaw/FlexRaw.pm | 4 ++--
+ t/flexraw.t | 6 ++++--
+ 3 files changed, 8 insertions(+), 4 deletions(-)
+
+commit 5480068c98dd0fade8981958f53610852ddbedc0
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 11 13:47:15 2010 -0500
+
+ Fix ReadOnly default to 0 for mapflex (per docs)
+
+ IO/FlexRaw/FlexRaw.pm | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit e20b034b3ced3a6cf299b4b4856820943e617cc9
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Nov 9 13:11:13 2010 -0500
+
+ Update VERSION to 2.4.7_005 for development
+
+ Basic/PDL.pm | 2 +-
+ Known_problems | 2 +-
+ Release_Notes | 34 ++++++++++++++++++++++++++++++++++
+ 3 files changed, 36 insertions(+), 2 deletions(-)
+
+commit 51cc3c07fe986791ed85b04b4b5f4236dd44346b
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Nov 9 10:44:38 2010 -0500
+
+ Update Known_problems and Release_Notes for CPAN
+
+ Known_problems | 3 ++-
+ Release_Notes | 18 +++++++++++++++++-
+ 2 files changed, 19 insertions(+), 2 deletions(-)
+
+commit 964018777aa9c45b93a995214f050f5f562921b7
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Nov 9 10:43:31 2010 -0500
+
+ Fix PDL::address to use IV rather than int for ptr
+
+ Modify the XS_PDL_address routine in Core.xs to convert
+ the pdl pointer to an IV rather than an int. Adjusted
+ PDL::address in Core.pm to format the resulting value
+ correctly.
+
+ Basic/Core/Core.pm.PL | 5 ++++-
+ Basic/Core/Core.xs.PL | 4 ++--
+ 2 files changed, 6 insertions(+), 3 deletions(-)
+
+commit 9022872101e0e57d509de8a91fc883911c43291a
+Merge: 0856670 3054ab1
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Mon Nov 8 22:06:07 2010 -0500
+
+ Merge branch 'master' of ssh://pdl.git.sourceforge.net/gitroot/pdl/pdl
+
+commit 0856670a69fdcabb525c9cb704ea5e2183843839
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Mon Nov 8 22:04:51 2010 -0500
+
+ Add include <stdlib.h> to declare malloc routine
+
+ Lib/Image2D/resample.h | 1 +
+ 1 files changed, 1 insertions(+), 0 deletions(-)
+
+commit 3054ab16d93ae70e9172e71d317d5422d778d631
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Mon Nov 8 11:01:36 2010 -0500
+
+ Fix readenvi.pdl header support
+
+ Fix a bug in the ENVI header list value processing
+ and add support for the header_offset. readenv()
+ now has a imbedded_header key which is a byte piddle
+ of the first header_offset bytes.
+
+ IO/ENVI/readenvi.pdl | 91 +++++++++++++++++++++++++++----------------------
+ 1 files changed, 50 insertions(+), 41 deletions(-)
+
+commit f7ad0228e57597e6b8621ec742c2a4b015f0c140
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sat Nov 6 23:48:31 2010 -0400
+
+ Refactor t/complex.t to use Test::More
+
+ t/complex.t | 37 +++++++++++++++----------------------
+ 1 files changed, 15 insertions(+), 22 deletions(-)
+
+commit d8980779b41cbb6400d6f0b8941b383629d22d2c
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sat Nov 6 17:44:56 2010 -0400
+
+ Update VERSION and Release_Notes for more devel
+
+ Basic/PDL.pm | 2 +-
+ Release_Notes | 34 ++++++++++++++++++++++++++++++++++
+ 2 files changed, 35 insertions(+), 1 deletions(-)
+
+commit 9af22cefc265de6177a54bef276786f9ff835529
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sat Nov 6 17:42:28 2010 -0400
+
+ Add type check to FlexRaw.pm headers
+
+ It was passing strings to PDL::howbig for one case
+ which generated an error.
+
+ IO/FlexRaw/FlexRaw.pm | 3 +++
+ 1 files changed, 3 insertions(+), 0 deletions(-)
+
+commit e112c2e032b1ed53cb5b84dbb9922a96075c8e6a
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sat Nov 6 17:39:54 2010 -0400
+
+ Update Known_problems and Release_Notes for CPAN
+
+ Known_problems | 23 +++++++----------------
+ Release_Notes | 21 +++++++++++++++++++--
+ 2 files changed, 26 insertions(+), 18 deletions(-)
+
+commit db2b83d1d25b0b9f575e1ec0dc7c81ba50a900a8
+Author: Craig DeForest <zowie@dhcp-10-120.boulder.swri.edu>
+Date: Thu Nov 4 13:50:08 2010 -0600
+
+ re-add changes originally commited to "lib" instead of "Lib" - problems with
+ nonlinear header transform support in t_fits (now announces it's ignoring them),
+ and a typo in PCi_j interpretation.
+
+ Lib/Transform/transform.pd | 9 +++++----
+ 1 files changed, 5 insertions(+), 4 deletions(-)
+
+commit eae79722b9a64d84a0a1422c578025143db7a2c6
+Author: Craig DeForest <zowie@z7.boulder.swri.edu>
+Date: Thu Nov 4 13:43:01 2010 -0600
+
+ Deleted bad commit typo due to evil Mac case-insensitivity
+
+ lib/Transform/Cartography/Cartography.pm | 2909 ------------------------
+ lib/Transform/transform.pd | 3644 ------------------------------
+ 2 files changed, 0 insertions(+), 6553 deletions(-)
+
+commit 06f129f88d72fae13870b50bee3f7f6f827808ba
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 4 09:14:30 2010 -0400
+
+ Minor change to try to fix bad commit
+
+ win32 doesn't have a case sensitive file system so
+ the use of incorrect case for git is a problem.
+ I'm not sure how it worked anyway unless the push
+ was from another case insensitive platform and the
+ path name was corrupted to lower case...
+
+ lib/Transform/transform.pd | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit 7f517382c0324a3f6d92f75a0348b95a881e50d1
+Merge: 1327520 7c580b0
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Nov 4 08:58:49 2010 -0400
+
+ Merge branch 'master' of ssh://pdl.git.sourceforge.net/gitroot/pdl/pdl
+
+commit 7c580b035410f9073b4437dc7e11cedd6aef0425
+Merge: c10f108 de98972
+Author: Craig DeForest <zowie@Clio.local>
+Date: Thu Nov 4 02:54:29 2010 -0600
+
+ Merge branch 'master' of ssh://pdl.git.sourceforge.net/gitroot/pdl/pdl
+
+commit c10f1087d09f0e3649b289b7b75aa8bd0a18585c
+Author: Craig DeForest <zowie@Clio.local>
+Date: Thu Nov 4 02:53:42 2010 -0600
+
+ Repair t_fits (oops) - stub for nonlinear transformations was causing it to return 1 instead of the transformation.
+
+ lib/Transform/transform.pd | 3644 ++++++++++++++++++++++++++++++++++++++++++++
+ 1 files changed, 3644 insertions(+), 0 deletions(-)
+
+commit 9cf9e49b396f854aeedd6889cd5a854fa2030e22
+Author: Craig DeForest <zowie@Clio.local>
+Date: Thu Nov 4 01:12:06 2010 -0600
+
+ Add synonym t_zenithal to t_vertical in Cartography.pm
+
+ Lib/Transform/Cartography/Cartography.pm | 9 +++++++--
+ 1 files changed, 7 insertions(+), 2 deletions(-)
+
+commit 6fd867b32707b91f3cc36c814d944a92d0a9b503
+Author: Craig DeForest <zowie@Clio.local>
+Date: Thu Nov 4 01:11:28 2010 -0600
+
+ Correct typo in test description (picky, picky)
+
+ t/core.t | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit 0e2908562177b778df43c6aa1cc3eabcede068dd
+Author: Craig DeForest <zowie@Clio.local>
+Date: Thu Nov 4 01:11:09 2010 -0600
+
+ Add t_cubic to transform.pd; add t_zenithal synonym to t_vertical
+ in Cartography.pm
+
+ Lib/Transform/transform.pd | 181 ++-
+ lib/Transform/Cartography/Cartography.pm | 2909 ++++++++++++++++++++++++++++++
+ 2 files changed, 3082 insertions(+), 8 deletions(-)
+
+commit de989722228d5e6f7e65a0660fe10a7f23fd1770
+Merge: a3a95e4 ff3ca09
+Author: Derek Lamb <lambd@users.sourceforge.net>
+Date: Wed Nov 3 21:43:52 2010 -0600
+
+ Merge branch 'master' of ssh://lambd@pdl.git.sourceforge.net/gitroot/pdl/pdl
+
+commit 132752061dd08d92996627ba377fae3570b16cc4
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Wed Nov 3 13:13:42 2010 -0400
+
+ Add parens to pdl constructor call
+
+ This makes cut and paste easier into the pdl2 shell
+ as the default multiline support there does not handle
+ continued strings well.
+
+ Example/IO/wmpeg.pl | 8 ++++----
+ 1 files changed, 4 insertions(+), 4 deletions(-)
+
+commit ff3ca09de00f681753c3b8ed62210a8fa41d2765
+Merge: 80db076 5766720
+Author: Craig DeForest <zowie@Clio.local>
+Date: Wed Nov 3 03:00:46 2010 -0600
+
+ Merge branch 'master' of ssh://pdl.git.sourceforge.net/gitroot/pdl/pdl
+
+commit 80db076828b31c92aba9cef3773b73ca01db9c05
+Author: Craig DeForest <zowie@Clio.local>
+Date: Wed Nov 3 02:58:28 2010 -0600
+
+ Fixed error messages in obscure cases.
+
+ IO/Dumper.pm | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit c1e833bfc3da7e61589c973c077e8c82d6dfc36a
+Author: Craig DeForest <zowie@Clio.local>
+Date: Wed Nov 3 02:57:25 2010 -0600
+
+ Finally fixed the constructor bug -- passes all tests, seems to never crash.
+
+ Basic/Core/pdlcore.c.PL | 356 ++++++++++++++++++++++++++++++++++++----------
+ 1 files changed, 278 insertions(+), 78 deletions(-)
+
+commit a3a95e43ff79d4ec4bd86f7e338f32ed1cce84b7
+Author: Derek Lamb <lambd@users.sourceforge.net>
+Date: Tue Nov 2 23:28:19 2010 -0600
+
+ Fix minor typo in Modules.pod
+
+ Basic/Pod/Modules.pod | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit 576672029512eeba861cdfcb374137d24069b531
+Author: Derek Lamb <lambd@users.sourceforge.net>
+Date: Tue Nov 2 22:58:38 2010 -0600
+
+ Fix POD formatting and typos in complex.pd
+
+ Basic/Complex/complex.pd | 6 +++---
+ 1 files changed, 3 insertions(+), 3 deletions(-)
+
+commit cf573670b5eb6ae3de41c1bbb91458090d12a8dd
+Merge: 7924750 bc637c5
+Author: cosmic operator <cosmicops@arcana.cosmic.ucar.edu>
+Date: Wed Oct 27 12:51:10 2010 -0600
+
+ Merge remote branch 'origin/master'
+
+commit 792475011ec9f5ed73ef8f0a37160c2337342c32
+Author: cosmic operator <cosmicops@arcana.cosmic.ucar.edu>
+Date: Wed Oct 27 11:59:57 2010 -0600
+
+ Jason Lin's change to GSL/INTERP to turn off the default GSL error handler.
+ This permits errors in interpolation codes to be caught by a perl exception
+ handler.
+
+ Lib/GSL/INTERP/gslerr.h | 4 +++-
+ t/gsl_interp.t | 9 ++++++++-
+ 2 files changed, 11 insertions(+), 2 deletions(-)
+
+commit bc637c5ce981b1ce8f0948459110a3813a1b9b02
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Oct 26 17:56:46 2010 -0400
+
+ Update Perldl2/TODO with more issues
+
+ These are mostly some compatability items and nice-to-haves
+ that could be useful in pdl2.
+
+ Perldl2/TODO | 30 +++++++++++++++++++++++++++++-
+ 1 files changed, 29 insertions(+), 1 deletions(-)
+
+commit 4905e4b79819d2217fbe4105364693eb5c7f6a6e
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Oct 26 17:56:14 2010 -0400
+
+ Update cygwin tmalloc.pl with optional sleep arg
+
+ cygwin/tmalloc.pl | 1 +
+ 1 files changed, 1 insertions(+), 0 deletions(-)
+
+commit 7cdec40665013178ef2a187e7640e9b3cf60b359
+Author: sisyphus <sisyphus1@optusnet.com.au>
+Date: Fri Oct 15 17:56:06 2010 +1100
+
+ t/plplot.t - replace "perl" with "$^X" in system commands
+
+ Win32 only - makes it easier for my Win32 ppm build script
+ to successfully create ppm packages for the various perl
+ builds ... please pardon the self-indulgence.
+
+ t/plplot.t | 1048 ++++++++++++++++++++++++++++++------------------------------
+ 1 files changed, 524 insertions(+), 524 deletions(-)
+
+commit 8113c93dca843b9bacf0123b10aa8055fb17e351
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Oct 12 19:50:24 2010 -0400
+
+ Update cygwin/INSTALL and README files
+
+ With some information from a clean build for cygwin 1.5.25....
+
+ cygwin/INSTALL | 7 +++++--
+ cygwin/README | 6 ++++++
+ 2 files changed, 11 insertions(+), 2 deletions(-)
+
+commit 047ae5bd137ba89d0590f8ba06308960fa7b7404
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Oct 7 12:43:47 2010 -0400
+
+ Update Perldl2/TODO
+
+ Perldl2/TODO | 39 ++++++++++++++++++++++++++-------------
+ 1 files changed, 26 insertions(+), 13 deletions(-)
+
+commit 91fbba5b956166516da855b8ac6f2c67da0a8c7a
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Oct 7 09:17:24 2010 -0400
+
+ Replace print by diag to avoid messing up test
+
+ t/core.t | 10 ++++------
+ 1 files changed, 4 insertions(+), 6 deletions(-)
+
+commit 87d2f486a149197861e9256b26aa1a9699701ab2
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Wed Oct 6 10:53:34 2010 -0400
+
+ Add diag to t/dumper.t and update Perldl2/TODO
+
+ Perldl2/TODO | 5 ++++-
+ t/dumper.t | 1 +
+ 2 files changed, 5 insertions(+), 1 deletions(-)
+
+commit 9ec22f7bf228af9220d79d2166794785eb1ab918
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Oct 5 19:20:38 2010 -0400
+
+ Consolidate skip tests for t/flexraw_fortran.t
+
+ Now they are all in one multi-choice conditional. Also
+ added a check for too long $PDL::Config{TEMPDIR} and we
+ give up on this f77-format based test.
+
+ t/flexraw_fortran.t | 22 +++++++++++++---------
+ 1 files changed, 13 insertions(+), 9 deletions(-)
+
+commit b3b9eed214441560f3e797e3abf50cbcbe85085a
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Oct 5 10:04:58 2010 -0400
+
+ Missed some fixes for line length problems
+
+ Now all uses of the possibly very long temp
+ file names are on a single fortran line.
+ The remaining work is to add test skips if
+ the fortran files still can't be compiled and
+ run to create the data...
+
+ t/flexraw_fortran.t | 12 ++++++++----
+ 1 files changed, 8 insertions(+), 4 deletions(-)
+
+commit f6e608e221fbf17fa4731065b00724e795a6336b
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Oct 5 10:04:33 2010 -0400
+
+ Update Known_problems with t/dumper.t info
+
+ Known_problems | 4 ++++
+ 1 files changed, 4 insertions(+), 0 deletions(-)
+
+commit 48ce66f2bdf5efe4845870f2f297d7126318d5be
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Oct 5 09:05:21 2010 -0400
+
+ Update Perldl2/TODO with completions stuff
+
+ Recording the various idiosyncracies of Term::ReadLine::Perl
+ completion versus Term::ReadLine::Gnu completion, especially
+ as regards working on win32.
+
+ Perldl2/TODO | 15 ++++++++++++++-
+ 1 files changed, 14 insertions(+), 1 deletions(-)
+
+commit ba381bb024e3554787836b2fe08eef4e4346ef9d
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sun Oct 3 19:21:37 2010 -0400
+
+ Add POD to utils/perldlpp.pl
+
+ At least we document the usage until someone gets around to
+ implementing the make option for install-time filtering...
+
+ utils/perldlpp.pl | 42 ++++++++++++++++++++++++++++++++++++++++++
+ 1 files changed, 42 insertions(+), 0 deletions(-)
+
+commit a681fc7b11b97639471367b1cf4fb999a7da3c54
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sun Oct 3 17:00:45 2010 -0400
+
+ Update VERSION and READMEs to 2.4.7_003
+
+ ...for more development.
+
+ Basic/PDL.pm | 2 +-
+ Known_problems | 3 ++-
+ Release_Notes | 33 +++++++++++++++++++++++++++++++++
+ 3 files changed, 36 insertions(+), 2 deletions(-)
+
+commit bbda12d8bab868e3b5ad3d1e6451568891260bb9
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sun Oct 3 16:39:02 2010 -0400
+
+ Updata Release_Notes for 2.4.7_002 release
+
+ Release_Notes | 16 +++++++++-------
+ 1 files changed, 9 insertions(+), 7 deletions(-)
+
+commit 7b05a3c81c981eeac63b756f37e03b6c516ea6f1
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sun Oct 3 16:30:58 2010 -0400
+
+ Make t/flexraw.t a "TODO" test
+
+ Trying to come up with a standard for using CPAN Testers
+ to help diagnose PDL bugs. The Test::More TODO capability
+ allows one to have tests corresponding to development TODOs.
+ Unless the $TODO is defined, then the test acts as normal.
+
+ By default, $TODO is defined if SKIP_KNOWN_PROBLEMS is set
+ in either the environment or the perldl.conf file. However,
+ it isn't useful to generate fail messages for bugs that are
+ not being worked on (e.g. without a developer assigned to
+ the ticket).
+
+ If no developer is assigned, the default is to set the
+ local $TODO always. If the ticket has an assigned developer,
+ then the setting will obey the SKIP_KNOWN_PROBLEMS options:
+ on for official releases, off for development releases.
+
+ If you are an assigned developer and wish to have test FAILs
+ ignored for your TODO items, just edit the local $TODO line
+ and remove/comment out the test for SKIP_KNOWN_PROBLEMS.
+
+ t/flexraw.t | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit 2393740f286f40334fecf9a269859cef0e881f40
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sun Oct 3 16:13:19 2010 -0400
+
+ Add back SKIP_KNOWN_PROBLEMS detection with TODO
+
+ Using the Test::More TODO capability, you can switch
+ from test mode to todo mode for the Known_problems by
+ setting the SKIP_KNOWN_PROBLEMS environment variable
+ or perldl.conf config option.
+
+ Release_Notes | 6 +++++-
+ t/complex.t | 3 ++-
+ t/config.t | 2 +-
+ t/constructor.t | 2 +-
+ t/core.t | 4 ++--
+ t/flexraw.t | 2 +-
+ 6 files changed, 12 insertions(+), 7 deletions(-)
+
+commit 7175ee0fecd3e0b75d8882f50fb8794c07779af5
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sun Oct 3 15:22:28 2010 -0400
+
+ Replace SKIP with TODO for Known_problems in tests
+
+ Thanks to David Mertens for originally pointing out that
+ Test::More capability. Now that I had time to go back and
+ investigate further, it seems to do exactly what I wanted
+ for the SKIP_KNOWN_PROBLEMS---but better.
+
+ t/complex.t | 9 ++----
+ t/config.t | 8 +----
+ t/constructor.t | 6 ++--
+ t/core.t | 34 +++++++++++++--------
+ t/flexraw.t | 90 ++++++++++++++++++++++++++++---------------------------
+ 5 files changed, 75 insertions(+), 72 deletions(-)
+
+commit 688c93c12169f2ca10399e72a62d4247fa0bbfc7
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sun Oct 3 13:29:12 2010 -0400
+
+ Update VERSION to 2.4.7_002 for more development
+
+ Basic/PDL.pm | 2 +-
+ Known_problems | 2 +-
+ Release_Notes | 33 +++++++++++++++++++++++++++++++++
+ 3 files changed, 35 insertions(+), 2 deletions(-)
+
+commit acf0c2c7f1bc1a555d6f151c64cffe52a4ad82d5
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sun Oct 3 12:46:33 2010 -0400
+
+ Update README and prep for 2.4.7_001 release.
+
+ DEVELOPMENT | 2 +
+ Known_problems | 32 +++++++++++++++++++++--------
+ MANIFEST | 1 +
+ README | 20 ++++++++++++------
+ Release_Notes | 57 ++++++++++++++++++++++++++++++++++++++++++++++++----
+ utils/perldlpp.pl | 14 +++++++++++++
+ 6 files changed, 105 insertions(+), 21 deletions(-)
+
+commit e06ca58d121f8d51cc7040802d361e505ad0f540
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sun Oct 3 09:12:28 2010 -0400
+
+ rm header between separate t/fastraw.t tests
+
+ t/fastraw.t | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit 55cbeaefc4c7b009db123e9bffbd2724d7b226bc
+Merge: 2f72dff d543632
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sat Oct 2 10:18:18 2010 -0400
+
+ Merge branch 'master' of ssh://marshallch@pdl.git.sourceforge.net/gitroot/pdl/pdl
+
+commit 2f72dff24851bf4c2eee42aa8e881d7f4dea5229
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Sat Oct 2 10:05:06 2010 -0400
+
+ Rearrange code to reduce line size
+
+ The current codefold routine fails to correctly continue
+ lines containing quoted strings. I've moved the filename
+ to a line by itself to give it the maximum possible number
+ of characters to work with.
+
+ t/flexraw_fortran.t | 3 ++-
+ 1 files changed, 2 insertions(+), 1 deletions(-)
+
+commit d543632b0d8ad56e6bbf95888a1cf03f0da27bb6
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Fri Oct 1 08:38:40 2010 -0400
+
+ Add PERLDOC_PAGER check for pdldoc pager
+
+ Now the pager used by the pdldoc command is: the value
+ of PERLDOC_PAGER if defined, then the value of PAGER if
+ defined, and finally the value of $Config{pager}.
+
+ NOTE: we should probably add some detection for whether
+ or not the indicated pager program is actually present.
+
+ Doc/Doc/Config.pm.PL | 1 +
+ 1 files changed, 1 insertions(+), 0 deletions(-)
+
+commit f17c6bfdf4c37d1ceb129065dd3b2044d66767b6
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Sep 28 12:42:19 2010 -0400
+
+ Fix typo in imag2d docs in Graphics.pm
+
+ Graphics/Graphics2D.pm | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit ac2d45a8b82a47b2b433cb0fc0bee7104db38cc7
+Merge: 39c30ff fa06ea1
+Author: Craig DeForest <zowie@dhcp-10-120.boulder.swri.edu>
+Date: Tue Sep 28 09:18:54 2010 -0600
+
+ Merge branch 'master' of ssh://pdl.git.sourceforge.net/gitroot/pdl/pdl
+
+commit 39c30ff4a9d3ba03186b9add9e14ec7aa41ec66a
+Author: Craig DeForest <zowie@dhcp-10-120.boulder.swri.edu>
+Date: Tue Sep 28 09:18:25 2010 -0600
+
+ updated FITS.pm to handle BSCALE/BZERO correctly for tile-compressed images
+
+ IO/FITS/FITS.pm | 37 +++++++++++++++++++++++++------------
+ 1 files changed, 25 insertions(+), 12 deletions(-)
+
+commit fa06ea12dfb12a63da25eebb15d36691dd48af91
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Mon Sep 27 10:42:52 2010 -0400
+
+ Fix uniqind bug #3076570
+
+ If uniqind were given a degenerate pdl as input (all the same
+ value), it should return the single value and not Empty.
+
+ Basic/Primitive/primitive.pd | 8 +++++++-
+ t/primitive.t | 13 ++++++++++++-
+ 2 files changed, 19 insertions(+), 2 deletions(-)
+
+commit 2a3f1f716915754571aeb65c851e1b2c493a7c8f
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Sep 21 18:09:03 2010 -0400
+
+ Update TODO and Perldl2/TODO
+
+ This is a partial clean up of the current lists in light
+ of the current development status and what is needed or
+ desired.
+
+ Perldl2/TODO | 6 ++-
+ TODO | 99 ++++++++++++++++++++-------------------------------------
+ 2 files changed, 39 insertions(+), 66 deletions(-)
+
+commit cbb82658491fe7302f9231faaae5db432fbbeb83
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Mon Sep 20 18:14:50 2010 -0400
+
+ Add xtra space from TAB completion to known probs
+
+ Known_problems | 6 ++++++
+ 1 files changed, 6 insertions(+), 0 deletions(-)
+
+commit f40a497ef8938d68ed3dbe9d51c23dcc0968c48f
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Sep 14 09:02:40 2010 -0400
+
+ Update Known_problems with current bugs
+
+ Known_problems | 3 ++-
+ 1 files changed, 2 insertions(+), 1 deletions(-)
+
+commit 826edf1f913b713adff4c99be24bae28846d69c1
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Sep 14 08:09:46 2010 -0400
+
+ Clean up t/fastraw.t files on exit
+
+ t/fastraw.t | 3 +++
+ 1 files changed, 3 insertions(+), 0 deletions(-)
+
+commit 287ec94034786db4b86c6402423772f0c12db057
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Sep 14 08:04:32 2010 -0400
+
+ Add $$ to randomize headerfile name
+
+ Some CPAN testers have reported problems with creating
+ the file which may be due to other instances of the
+ smoker being run.
+
+ t/fastraw.t | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit 6b3b856fa96ccd8e41f784754402191abb70de1c
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Sep 14 08:03:53 2010 -0400
+
+ Add TODO notes in logo3d.pdl comments
+
+ Perldl2/logo3d.pdl | 10 ++++++++--
+ 1 files changed, 8 insertions(+), 2 deletions(-)
+
+commit 05abb2c89f6402695b6f450fc7bf9b9b9680bf3f
+Merge: ee4ae3d f46596f
+Author: Craig DeForest <zowie@Clio.local>
+Date: Sun Sep 12 15:37:33 2010 -0600
+
+ Merge branch 'master' of ssh://pdl.git.sourceforge.net/gitroot/pdl/pdl
+
+commit f46596f6681e37b5000a6cc2e5aa99e523a732e9
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Fri Sep 3 12:57:01 2010 -0400
+
+ Fix minor POD glitch in Graphics2D.pm
+
+ Graphics/Graphics2D.pm | 5 +++--
+ 1 files changed, 3 insertions(+), 2 deletions(-)
+
+commit c7cf78cc37dea525a18bae5406e3234f1151e593
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Fri Sep 3 12:44:17 2010 -0400
+
+ Changed PDL> to pdl> in pdl2 POD for consistency
+
+ Perldl2/Plugin/NiceSlice.pm | 8 ++++----
+ Perldl2/Plugin/PrintControl.pm | 10 +++++-----
+ Perldl2/pdl2 | 4 ++--
+ 3 files changed, 11 insertions(+), 11 deletions(-)
+
+commit 305563b12e96bd71fb6eb263707f4431bc73426d
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Aug 31 13:05:43 2010 -0400
+
+ Add win32 workaround for pdl2->perldl exec
+
+ Now win32 just exits pdl2 with a warning to run perldl
+ rather than trying the broken exec.
+
+ Perldl2/pdl2 | 8 ++++++--
+ 1 files changed, 6 insertions(+), 2 deletions(-)
+
+commit c092edacc1806a092c343e62a691e23d20f26b3a
+Merge: b50537d 6d0a15e
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Tue Aug 31 10:05:20 2010 -0400
+
+ Merge branch 'master' of ssh://pdl.git.sourceforge.net/gitroot/pdl/pdl
+
+commit 6d0a15eb742f460ef79345a219a801ce94d58829
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Mon Aug 30 12:41:20 2010 -0400
+
+ Add pdl2->perldl win32 bug to Known_problems
+
+ On win32, you need to call perldl explicitly since win32
+ exec (i.e. fork) isn't equivalent to the unix exec in perl.
+
+ Known_problems | 12 +++++++++++-
+ 1 files changed, 11 insertions(+), 1 deletions(-)
+
+commit 57caff9d8b35555878f553120cabc06d4fa11154
+Author: sisyphus <sisyphus1@optusnet.com.au>
+Date: Mon Aug 23 16:05:39 2010 +1000
+
+ Demos/Cartography_demo.pm - /xw replaced by /GW (MS Windows only)
+
+ There were 2 hardcoded occurrences of /xw that need to be
+ replaced with /GW for MS Windows. (There are still problems
+ with this demo as PGPLOT is apparently incapable of opening
+ a second grwnd.exe window - even if the first grwnd.exe
+ window has been closed.)
+
+ Demos/Cartography_demo.pm | 10 +++++++---
+ 1 files changed, 7 insertions(+), 3 deletions(-)
+
+commit d6a9f9af23a1cee6905a725a3b40b6bdabaee029
+Author: Henning Glawe <glaweh@debian.org>
+Date: Sun Aug 22 18:59:57 2010 +0200
+
+ fix 2 POD errors (=item outside =over..=back)
+
+ IO/FastRaw/FastRaw.pm | 6 ++++++
+ 1 files changed, 6 insertions(+), 0 deletions(-)
+
+commit ddd75e02ddd6c3d5c02221c6acc035dedf74e262
+Author: sisyphus <sisyphus1@optusnet.com.au>
+Date: Sun Aug 22 21:18:27 2010 +1000
+
+ Demos/Transform_demo.pm - /xw replaced by /GW (MS Windows only)
+
+ There were 3 hardcoded occurrences of /xw that need to be
+ replaced with /GW for MS Windows. (There are still problems
+ with this demo as PGPLOT is apparently incapable of opening
+ a second grwnd.exe window - even if the first grwnd.exe
+ window has been closed.)
+
+ Demos/Transform_demo.pm | 8 +++++---
+ 1 files changed, 5 insertions(+), 3 deletions(-)
+
+commit b50537dda498b5b86d422247d6581072705a1057
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Thu Aug 19 14:52:40 2010 -0400
+
+ Update Known_problems, etc for development
+
+ Fix references to $PDL::VERSION value and unset the
+ SKIP_KNOWN_PROBLEMS option in the perldl.conf. Now
+ that this is back to a development tree, we want
+ problems to show until fixed.
+
+ Known_problems | 2 +-
+ Release_Notes | 16 ++++++++++++++++
+ perldl.conf | 2 +-
+ 3 files changed, 18 insertions(+), 2 deletions(-)
+
+commit 0a882cbc5e0d02804e0e58d2be0e4ab7db19361d
+Author: Henning Glawe <glaweh@debian.org>
+Date: Thu Aug 19 14:05:30 2010 +0200
+
+ debian changelog from 2.4.7+dfsg-1 upload
+
+ debian/changelog | 5 +++--
+ 1 files changed, 3 insertions(+), 2 deletions(-)
+
+commit 5867398315d3c245e059d78b308c9728a11dce6b
+Author: Henning Glawe <glaweh@debian.org>
+Date: Thu Aug 19 11:55:39 2010 +0200
+
+ sync old changelog entries with debian pkg
+
+ leave only the most recent version entry without +dfsg suffix
+
+ debian/changelog | 9 +++++----
+ 1 files changed, 5 insertions(+), 4 deletions(-)
+
+commit e8be4ad4a8a0382f4d130142390e6b2c41c06728
+Author: Henning Glawe <glaweh@debian.org>
+Date: Thu Aug 19 11:49:52 2010 +0200
+
+ force-set locale to C during the test suite runs
+
+ debian/rules | 4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+commit cfbb93ee5e89c787557c11d01082c8e0896586e9
+Author: Henning Glawe <glaweh@debian.org>
+Date: Thu Aug 19 11:38:13 2010 +0200
+
+ change testsuite running logic
+
+ - make one non-verbose and one verbose run
+ - mark both runs with begin/end block statements
+ - filter 'make test' output with debian/filter-test.pl
+
+ debian/rules | 7 ++++++-
+ 1 files changed, 6 insertions(+), 1 deletions(-)
+
+commit 0cdf9334b96e902112bef164ca08f04df8e26732
+Author: Henning Glawe <glaweh@debian.org>
+Date: Thu Aug 19 10:17:11 2010 +0200
+
+ script filtering relevant parts of test suite runs
+
+ debian/filter-test.pl | 23 +++++++++++++++++++++++
+ 1 files changed, 23 insertions(+), 0 deletions(-)
+
+commit 6ef22feb99ff24234aa3625fe10d8de11a978e73
+Author: Henning Glawe <glaweh@debian.org>
+Date: Thu Aug 19 10:16:22 2010 +0200
+
+ unexport DISPLAY in debian/rules
+
+ debian/rules | 3 ++-
+ 1 files changed, 2 insertions(+), 1 deletions(-)
+
+commit 199f87dc2106bddeec2af8e075754b817b6da4f4
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Wed Aug 18 21:39:24 2010 -0400
+
+ Modify some files so the CPAN indexer doesn't barf
+
+ There is no easy way to tell the CPAN indexer not to index
+ a package in a distribution. Supposedly, if you split the
+ offending package declaration across 2 lines then the indexer
+ will not index it and thus no warning.
+
+ Basic/Gen/Inline/MakePdlppInstallable.pm | 4 +++-
+ Graphics/TriD/TriD/VRML.pm | 4 +++-
+ 2 files changed, 6 insertions(+), 2 deletions(-)
+
+commit 59dbbd4bf474af1e9aaf48bb575b43ea7e90e4fc
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Wed Aug 18 20:57:09 2010 -0400
+
+ Update VERSION to 2.4.7_001 for new development
+
+ Basic/PDL.pm | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+commit fcec32c20bf203239500507672c0c82ab9b95369
+Author: Chris Marshall <devel.chm.01@gmail.com>
+Date: Wed Aug 18 20:55:52 2010 -0400
+
+ Final pre-PDL-2.4.7 edits...
+
+ Basic/PDL.pm | 2 +-
+ Release_Notes | 48 ++++++++++++++++++++++++--
+ TODO | 106 ++++++++++++++++++++++++++-----------------------------
+ cygwin/INSTALL | 23 +++++++-----
+ 4 files changed, 109 insertions(+), 70 deletions(-)
+
commit 6155d20969a9307ae234e71efa87377d58d400b8
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Wed Aug 18 17:48:01 2010 -0400
@@ -335,7 +1689,7 @@
1 files changed, 13 insertions(+), 6 deletions(-)
commit 1b44f2ceec0d69ab8d429ed4b6a97325923ae415
-Merge: a6c0fe6... 3bd74f8...
+Merge: a6c0fe6 3bd74f8
Author: Daniel Carrera <dcarrera@gmail.com>
Date: Sat Aug 14 15:24:00 2010 +0200
@@ -403,7 +1757,7 @@
2 files changed, 11 insertions(+), 3 deletions(-)
commit 95d13842030ddb488cc32f081205a513d9df64c1
-Merge: 9d13be7... 0833506...
+Merge: 9d13be7 0833506
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Fri Aug 13 20:07:49 2010 -0400
@@ -432,7 +1786,7 @@
1 files changed, 6 insertions(+), 5 deletions(-)
commit 0833506d056417f267c1fc16ae615ec4e2c79adf
-Merge: aabc2a7... e26d3f1...
+Merge: aabc2a7 e26d3f1
Author: Daniel Carrera <dcarrera@gmail.com>
Date: Sat Aug 14 01:43:42 2010 +0200
@@ -511,7 +1865,7 @@
1 files changed, 3 insertions(+), 3 deletions(-)
commit 65e61fb4383f8ef7b8c81daad4fa3f2b60297c38
-Merge: 1b8c7f5... 0e2bcaa...
+Merge: 1b8c7f5 0e2bcaa
Author: Daniel Carrera <dcarrera@gmail.com>
Date: Fri Aug 13 21:17:00 2010 +0200
@@ -559,7 +1913,7 @@
1 files changed, 1 insertions(+), 1 deletions(-)
commit e889192e3a28ce3a7b2964bb02170a4672ef4ab2
-Merge: ecfc596... bf50b41...
+Merge: ecfc596 bf50b41
Author: Daniel Carrera <dcarrera@gmail.com>
Date: Fri Aug 13 17:13:04 2010 +0200
@@ -576,7 +1930,7 @@
2 files changed, 503 insertions(+), 0 deletions(-)
commit bf50b41f70d0dafdbdfecf925a806c3745e08620
-Merge: 62eae7e... eb48bab...
+Merge: 62eae7e eb48bab
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Fri Aug 13 09:35:47 2010 -0400
@@ -654,7 +2008,7 @@
1 files changed, 1 insertions(+), 1 deletions(-)
commit 998656aacc7694378ca3e7b220a1e94392a0115b
-Merge: 105239f... 1d98566...
+Merge: 105239f 1d98566
Author: Daniel Carrera <dcarrera@gmail.com>
Date: Fri Aug 13 02:23:23 2010 +0200
@@ -1013,6 +2367,42 @@
win32/INSTALL | 108 +++++++++++++++-----------------------------------------
1 files changed, 29 insertions(+), 79 deletions(-)
+commit ee4ae3db83a2c58a353162518bc627d298bd9620
+Merge: 24e935e 0a1aa5b
+Author: Craig DeForest <zowie@Clio.local>
+Date: Sun Aug 1 02:41:48 2010 -0600
+
+ Merge branch 'master' of ssh://pdl.git.sourceforge.net/gitroot/pdl/pdl
+
+commit 24e935e8af5f77254bef8ad1f9eb028acc8e8789
+Author: Craig DeForest <zowie@Clio.local>
+Date: Sun Aug 1 02:36:49 2010 -0600
+
+ Finally, a fix to the pdl permissive-constructor bug. Two separate problems:
+ * an off-by-one error in indexing the dim list of the target led to
+ indexing the -1 element of the dim list in certain cases; this generally
+ caused heisenbugs by forcing the null padding loop to wander off into
+ hyperspace;
+ * Most of the time av_fetch returns a valid element; sometimes it
+ returns a pointer to 0, and sometimes it returns 0. We were always
+ dereferencing it, so in the rare cases where it returned 0 we were
+ throwing a bus error.
+
+ Tests:
+
+ The multiple-PDLs-in-a-list bug:
+ $c[0][0] = pdl([1]);
+ $c[1][0] = pdl([2]);
+ $d = pdl(@c);
+
+ The unrelated crash-on-undef-first-element bug:
+ $c[0][0] = pdl([1]);
+ $c[1][0] = pdl([2]);
+ $c[2][2] = 5;
+
+ Basic/Core/pdlcore.c.PL | 59 ++++++++++++++++++++++++++++++----------------
+ 1 files changed, 38 insertions(+), 21 deletions(-)
+
commit 0a1aa5bbbeeb3e77d7d17d0ba3297e2da5a16eff
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Sat Jul 31 15:12:41 2010 -0400
@@ -1526,8 +2916,27 @@
TODO | 519 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 519 insertions(+), 0 deletions(-)
+commit 4f7d19dfd5187075be2b235a1ce034e7cc6ce54b
+Author: Craig DeForest <zowie@Clio.local>
+Date: Sun Jul 18 09:48:01 2010 +0200
+
+ More minor doc tweaks in rfits()
+
+ IO/FITS/FITS.pm | 9 +++++++--
+ 1 files changed, 7 insertions(+), 2 deletions(-)
+
+commit 94c6f196614ce5017a6e5a03f07e64605209aaf9
+Author: Craig DeForest <zowie@Clio.local>
+Date: Sun Jul 18 09:45:52 2010 +0200
+
+ Updated documentation for FITS compressed format; fixed an edge case in Rice compression.
+
+ IO/FITS/FITS.pm | 7 +++----
+ Lib/Compression/compression.pd | 2 +-
+ 2 files changed, 4 insertions(+), 5 deletions(-)
+
commit a0a803e9ebe27759e283f4d31bf8430530baef52
-Merge: 95fc475... 74c034e...
+Merge: 95fc475 74c034e
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Sat Jul 17 20:38:29 2010 -0400
@@ -1568,7 +2977,7 @@
2 files changed, 25 insertions(+), 0 deletions(-)
commit 0e3bd24be00f0402c550b8fb1ceb591522fac22a
-Merge: f5dca19... 702a41f...
+Merge: f5dca19 702a41f
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Thu Jul 15 18:07:58 2010 -0400
@@ -1652,7 +3061,7 @@
1 files changed, 1 insertions(+), 1 deletions(-)
commit ca9427a203bf187d9923690e9dab4d7f6eb00642
-Merge: 7451ff4... 8527c77...
+Merge: 7451ff4 8527c77
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Tue Jul 13 22:20:38 2010 -0400
@@ -1695,7 +3104,7 @@
2 files changed, 7 insertions(+), 4 deletions(-)
commit 030351960f77947ed7e7bcbe0beeb41b7ec5697d
-Merge: 1819dfe... c751ef6...
+Merge: 1819dfe c751ef6
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Sun Jul 11 10:16:36 2010 -0400
@@ -2698,7 +4107,7 @@
1 files changed, 2 insertions(+), 1 deletions(-)
commit 9423fef79712c83bcc1db2b2877b07d3de91a59a
-Merge: 4943472... 79b6146...
+Merge: 4943472 79b6146
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Thu Jun 10 20:08:42 2010 -0400
@@ -2863,7 +4272,7 @@
1 files changed, 1 insertions(+), 5 deletions(-)
commit 6da87ac6c32cfd0d7b620e72ee6591f061c2dc40
-Merge: 2b812b2... b9cffa4...
+Merge: 2b812b2 b9cffa4
Author: Matthew Kenworthy <mattk@Matthew-Kenworthys-MacBook-Pro.local>
Date: Tue Jun 1 23:33:33 2010 +0200
@@ -3611,7 +5020,7 @@
5 files changed, 1680 insertions(+), 1714 deletions(-)
commit 5789093253079406e974cd391de9900d94e7b6ce
-Merge: 19cbde7... 92a971f...
+Merge: 19cbde7 92a971f
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Mon May 17 06:27:26 2010 -0400
@@ -3664,7 +5073,7 @@
1 files changed, 5 insertions(+), 5 deletions(-)
commit 15d78ce70aa721cfd0c670ef8d9e4aa29c78f6ac
-Merge: 0b98645... e3c50c1...
+Merge: 0b98645 e3c50c1
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Sun May 16 15:33:57 2010 -0400
@@ -3739,7 +5148,7 @@
2 files changed, 1 insertions(+), 433 deletions(-)
commit 31e0c88be9a8381da4cf6f978a6642f3d8b7890d
-Merge: a21804a... e2001f6...
+Merge: a21804a e2001f6
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Sat May 15 13:37:01 2010 -0400
@@ -4110,7 +5519,7 @@
1 files changed, 11 insertions(+), 12 deletions(-)
commit 5df9e244450b07bb118ee25a3f30445c3626c94f
-Merge: 4ff1dcd... 25cfae8...
+Merge: 4ff1dcd 25cfae8
Author: David Mertens <dcmertens@gmail.com>
Date: Mon May 10 20:54:29 2010 -0500
@@ -4359,7 +5768,7 @@
1 files changed, 26 insertions(+), 1 deletions(-)
commit f5a1aba6ff80c628b8383b0eca9198164f85d819
-Merge: 53f4a4e... 31c8016...
+Merge: 53f4a4e 31c8016
Author: David Mertens <david@david-desktop.(none)>
Date: Thu May 6 11:44:28 2010 -0500
@@ -4553,7 +5962,7 @@
2 files changed, 28 insertions(+), 16 deletions(-)
commit cbf21ab20848ee1241930cf3e1fad282093ff02b
-Merge: 071eb86... d4a1fc4...
+Merge: 071eb86 d4a1fc4
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Fri Apr 30 17:36:20 2010 -0400
@@ -4637,14 +6046,14 @@
28 files changed, 4 insertions(+), 60 deletions(-)
commit 31ed9b68203076d17c3dacae10f938208d42795f
-Merge: 266f1f8... 19047be...
+Merge: 266f1f8 19047be
Author: Derek Lamb <lambd@users.sourceforge.net>
Date: Fri Apr 30 13:36:09 2010 -0400
Merge branch 'master' of ssh://lambd@pdl.git.sourceforge.net/gitroot/pdl/pdl
commit 19047beba630700b30ecd89fa6e2048859a30ea7
-Merge: bb96a70... ba65d3d...
+Merge: bb96a70 ba65d3d
Author: Craig DeForest <zowie@Clio.local>
Date: Thu Apr 29 23:59:22 2010 -0600
@@ -4660,7 +6069,7 @@
1 files changed, 93 insertions(+), 79 deletions(-)
commit bb96a70629fc75e4e1e40cb89aa824924da80f2a
-Merge: 17430ad... 7501237...
+Merge: 17430ad 7501237
Author: Craig DeForest <zowie@Clio.local>
Date: Thu Apr 29 23:51:20 2010 -0600
@@ -4821,7 +6230,7 @@
1 files changed, 3 insertions(+), 0 deletions(-)
commit 81d3b73f93cacb4c2f1969ca8e391dcc2e5223ba
-Merge: 66a90be... 47f525d...
+Merge: 66a90be 47f525d
Author: Craig DeForest <zowie@Clio.local>
Date: Sat Apr 24 00:41:10 2010 -0700
@@ -4860,7 +6269,7 @@
1 files changed, 15 insertions(+), 1 deletions(-)
commit 4bef4ee7afc61660064d79e012ac94a9efb197ff
-Merge: 94eaa00... 4f23e3f...
+Merge: 94eaa00 4f23e3f
Author: Craig DeForest <zowie@pcp057117pcs.wireless.calpoly.edu>
Date: Wed Apr 21 16:21:16 2010 -0700
@@ -4970,7 +6379,7 @@
3 files changed, 40 insertions(+), 7 deletions(-)
commit ad7d299b075e133f6b97425f08ca4f01bcb5b17b
-Merge: 3334ff5... 4061e08...
+Merge: 3334ff5 4061e08
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Sun Apr 18 17:55:50 2010 -0400
@@ -5590,7 +6999,7 @@
2 files changed, 122 insertions(+), 25 deletions(-)
commit 5011f4d63e91d6857b6132e74e9c16afcb07b432
-Merge: 54532da... ff8da8b...
+Merge: 54532da ff8da8b
Author: David Mertens <david@david-desktop.(none)>
Date: Thu Feb 11 17:43:20 2010 -0600
@@ -5630,7 +7039,7 @@
1 files changed, 1 insertions(+), 1 deletions(-)
commit edd3668e64379c6a0ad7acbfa471713e7918b3b3
-Merge: 806c75e... a6f4018...
+Merge: 806c75e a6f4018
Author: David Mertens <david@david-laptop.(none)>
Date: Thu Feb 11 09:15:34 2010 -0600
@@ -5670,7 +7079,7 @@
1 files changed, 1 insertions(+), 1 deletions(-)
commit aa7f2a2bac6e446c99491e4bcf660cad0123ea7d
-Merge: 114701c... 7afd98a...
+Merge: 114701c 7afd98a
Author: data.collection <data.collection@BELVNB0361NV007.nae.ds.army.mil>
Date: Wed Feb 10 14:41:20 2010 -0500
@@ -5956,7 +7365,7 @@
1 files changed, 2 insertions(+), 2 deletions(-)
commit 109e4e916e3c3380f6f6bcfff3a9876f92d9826a
-Merge: 812c36e... 2e38dad...
+Merge: 812c36e 2e38dad
Author: David Mertens <david@david-desktop.(none)>
Date: Wed Jan 20 15:28:05 2010 -0600
@@ -5972,7 +7381,7 @@
1 files changed, 22 insertions(+), 23 deletions(-)
commit 2e38dadc8ce6fbc499fbd0db8af570f0efe666f1
-Merge: 7a56efd... d34aae6...
+Merge: 7a56efd d34aae6
Author: Derek Lamb <lambd@users.sourceforge.net>
Date: Wed Jan 20 15:50:58 2010 -0500
@@ -6148,7 +7557,7 @@
1 files changed, 2 insertions(+), 0 deletions(-)
commit 5dea5c793e92e75cb419746d3d55d4906a60bc62
-Merge: e738fa2... 87a1e84...
+Merge: e738fa2 87a1e84
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Wed Jan 6 13:31:21 2010 -0500
@@ -6185,7 +7594,7 @@
1 files changed, 2 insertions(+), 1 deletions(-)
commit 7acbb1a20e4163650b6e62d26cf63f1a4c1b043e
-Merge: 30d1c7b... 0ccd029...
+Merge: 30d1c7b 0ccd029
Author: David Mertens <david@david-laptop.(none)>
Date: Tue Jan 5 13:37:00 2010 -0600
@@ -6229,7 +7638,7 @@
1 files changed, 1 insertions(+), 1 deletions(-)
commit d0b54635a76de7e1625f6088445415630da00125
-Merge: a2da5ac... 3aaab11...
+Merge: a2da5ac 3aaab11
Author: David Mertens <david@david-desktop.(none)>
Date: Tue Jan 5 07:48:57 2010 -0600
@@ -6528,7 +7937,7 @@
1 files changed, 6 insertions(+), 0 deletions(-)
commit 117d1cdc9b1efeafd12d063315c3c01dda8d7da8
-Merge: 35321ff... bb3d913...
+Merge: 35321ff bb3d913
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Wed Dec 30 21:30:31 2009 -0500
@@ -6566,7 +7975,7 @@
2 files changed, 37 insertions(+), 1 deletions(-)
commit 35321ff5103616716b6b02c2cf8ca1258c2559c0
-Merge: 25cf2c6... 7c31c35...
+Merge: 25cf2c6 7c31c35
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Mon Dec 28 20:16:51 2009 -0500
@@ -6595,7 +8004,7 @@
1 files changed, 42 insertions(+), 43 deletions(-)
commit f11bd26d75d4241e9102fabfc64591bfc0c3f77d
-Merge: d0bd1af... ae53283...
+Merge: d0bd1af ae53283
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Mon Dec 28 10:42:32 2009 -0500
@@ -6996,14 +8405,14 @@
1 files changed, 1 insertions(+), 1 deletions(-)
commit a2da5ac4c70c66abd7d5205481256ff2aeb98c94
-Merge: 2df55ef... 319c72b...
+Merge: 2df55ef 319c72b
Author: David Mertens <david@david-desktop.(none)>
Date: Mon Dec 14 12:56:45 2009 -0600
Merge branch 'master' of git://pdl.git.sourceforge.net/gitroot/pdl/pdl
commit d0bd1af56add57a397e3dd16019bcc3d59dedbc9
-Merge: 9fb93f8... 319c72b...
+Merge: 9fb93f8 319c72b
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Fri Dec 11 10:07:39 2009 -0500
@@ -7084,8 +8493,8 @@
Update to v3.14 of ppport.h portability
- Basic/Core/ppport.h | 3870 +++++++++++++++++++++++++++++++++++++++++++++++++--
- 1 files changed, 3722 insertions(+), 148 deletions(-)
+ Basic/Core/ppport.h | 3888 ++++++++++++++++++++++++++++++++++++++++++++++++---
+ 1 files changed, 3731 insertions(+), 157 deletions(-)
commit affe0cc052580600bfc5bd93245fd0d14a9de6a2
Author: Chris Marshall <devel.chm.01@gmail.com>
@@ -7527,7 +8936,7 @@
1 files changed, 0 insertions(+), 38 deletions(-)
commit bd209c53d51fde9b0a73463657083518b2a6f4bc
-Merge: da9b755... 6b71df5...
+Merge: da9b755 6b71df5
Author: Henning Glawe <glaweh@debian.org>
Date: Fri Oct 23 10:57:18 2009 +0200
@@ -7818,7 +9227,7 @@
2 files changed, 5 insertions(+), 1 deletions(-)
commit 2df55ef32ba5b858841dea766e91b99a033c7e17
-Merge: dd4e079... e93558b...
+Merge: dd4e079 e93558b
Author: David Mertens <david@david-desktop.(none)>
Date: Wed Oct 14 17:06:24 2009 -0500
@@ -7948,7 +9357,7 @@
1 files changed, 1 insertions(+), 1 deletions(-)
commit 6ded129679883ead13525027aca72a91630e0b72
-Merge: 246324f... b5243ae...
+Merge: 246324f b5243ae
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Wed Oct 7 17:35:09 2009 -0400
@@ -8784,7 +10193,7 @@
6 files changed, 69 insertions(+), 114 deletions(-)
commit 1f9a74d944f8fcf09e3d8bbf5f87133bf1d0867b
-Merge: 5fedb91... 2e3fcf6...
+Merge: 5fedb91 2e3fcf6
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Wed Sep 23 16:44:00 2009 -0400
@@ -8800,7 +10209,7 @@
1 files changed, 1 insertions(+), 1 deletions(-)
commit 5fedb919b3b95e42b0acb39b62df45d25693a3e0
-Merge: dd01556... 7677f77...
+Merge: dd01556 7677f77
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Wed Sep 23 16:10:48 2009 -0400
@@ -8819,7 +10228,7 @@
1 files changed, 13 insertions(+), 0 deletions(-)
commit dd01556cd99467dba79c1c4f24456e2e8dd91627
-Merge: 9b6b1f9... 3084dba...
+Merge: 9b6b1f9 3084dba
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Wed Sep 23 14:27:36 2009 -0400
@@ -8837,7 +10246,7 @@
3 files changed, 10 insertions(+), 8 deletions(-)
commit 9b6b1f9d1f4a2880ab179e430211af2856f71dab
-Merge: 205d5b9... 6743108...
+Merge: 205d5b9 6743108
Author: Chris Marshall <devel.chm.01@gmail.com>
Date: Wed Sep 23 14:24:21 2009 -0400
@@ -9635,7 +11044,7 @@
1 files changed, 2 insertions(+), 2 deletions(-)
commit 100a3114b05e4afeb156485d94f89320861b697a
-Merge: 1401619... 2146da8...
+Merge: 1401619 2146da8
Author: Chris Marshall <chm@alum.mit.edu>
Date: Fri Jul 10 11:25:57 2009 -0400
@@ -9673,7 +11082,7 @@
1 files changed, 4 insertions(+), 2 deletions(-)
commit 822c0e08c0243b054d6f87dcd61841083d745c46
-Merge: b1270b4... 5b15c19...
+Merge: b1270b4 5b15c19
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Thu Jul 9 21:53:00 2009 -0400
@@ -9710,7 +11119,7 @@
1 files changed, 1 insertions(+), 1 deletions(-)
commit b1270b46b05019ab859b7e730eeef8a5cde34a09
-Merge: b1c7bd8... 479e8a3...
+Merge: b1c7bd8 479e8a3
Author: Chris Marshall <marshallch@users.sourceforge.net>
Date: Tue Jun 30 23:17:12 2009 -0400
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment