__color__,ticket,summary,component,version,milestone,type,owner,status,created,_changetime,_description,_reporter
3,1,gnuplot turns off terminal echoing in GHCi,component1,,,defect,somebody,new,2011-12-23T09:58:06Z+0000,2011-12-23T09:58:06Z+0000,"In some configurations, if you call 'plotFunc' from ghci then you can no longer see what you type in ghci. It seems that 'gnuplot' turns off Echo mode. I do not know why this happens and what I can do against it. Calling ':! reset' does not help. But ':reload' helps. These commands have to be typed in blindly, of course. However, after reload in GHCi all local bindings are gone.
",Lemming
3,2,"Could not find module ""Paths_gnuplot""",component1,,,defect,somebody,new,2012-03-01T22:31:16Z+0000,2012-03-01T22:31:16Z+0000,"Trying to run the Demo.hs, and getting an error:
{{{
\gnuplot-0.5\src\Demo.hs:26:18:
    Could not find module `Paths_gnuplot':
      Use -v to see a list of the files searched for.
Failed, modules loaded: none.
Prelude>
}}}

Using Windows 7 with Haskell platform, and gnuplot 4.6rc1 for windows.",guest
3,3,"Could not find module ""Graphics.Gnuplot.Execute""",component1,,,defect,somebody,new,2012-03-01T22:32:47Z+0000,2012-03-01T22:32:47Z+0000,"Trying to run Demo.hs. After removing the ""import qualified Paths_gnuplot as Path"" and any places  that use it to fix (http://trac.haskell.org/gnuplot/ticket/2) - I am getting the error:

{{{
Graphics\Gnuplot\Advanced.hs:80:18:
    Could not find module `Graphics.Gnuplot.Execute':
      It is a member of the hidden package `gnuplot-0.4.2'.
      it is a hidden module in the package `gnuplot-0.4.2'
      it is a hidden module in the package `gnuplot-0.5'
      Use -v to see a list of the files searched for.
Failed, modules loaded: none.
}}}


Using Windows 7 with Haskell platform, and gnuplot 4.6rc1 for windows.

This is really frustrating...",guest
3,4,Graphics.Gnuplot.Frame.OptionSet.View error + FIX,component1,,,defect,somebody,new,2012-04-27T00:10:56Z+0100,2012-04-27T00:10:56Z+0100,"gnuplot expects view options in the form ""view a,b,c,d"" but OptionSet.View returns ""view a b c d"" this throws error


{{{
set view 1.0 1.0 1.0 1.0
             ^
""curve.gp"", line 3: ',' expected
}}}


FIX
Swap this line


{{{
OptionSet.add Option.view [show rotateX, show rotateZ, show scale, show scaleZ]
}}}


with something like


{{{
OptionSet.add Option.view [show rotateX ++ "","" ++ show rotateZ ++ "","" ++ show scale ++ "","" ++ show scaleZ]
}}}

Sofware Used
[[BR]]
-gnuplot 4.4 patchlevel 4 (Gentoo revision r1)[[BR]]
-gnuplot Haskell 0.5[[BR]]
-Glasgow Haskell Compiler, Version 6.10.4",guest
