jreporter-devel Mailing List for Java Report Library
Status: Beta
Brought to you by:
trbauer
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|
From: Travis B. <tr...@us...> - 2001-07-19 20:23:21
|
Hi everyone, As we discussed in an earlier conversation, I have now switched JReporter over to use the Ant build system rather than make. It involved reorganizing the source tree a bit. It now looks much cleaner. The changes are in the CVS. Email me if you have any troubles. -- ---------------------------------------------------------------- Travis Bauer | CS Grad Student | IU |www.cs.indiana.edu/~trbauer ---------------------------------------------------------------- |
From: Travis B. <tr...@us...> - 2001-07-13 15:14:26
|
could you give the complete command you used to try to check the repository out? Can you secure shell into sourceforge and go to that directory? -- ---------------------------------------------------------------- Travis Bauer | CS Grad Student | IU |www.cs.indiana.edu/~trbauer ---------------------------------------------------------------- Goedson Teixeira Paixao (gop...@dc...) wrote: > > Hi, > > I'm having trouble when I try to access the CVS repository. Whe I issue a > cvs co, I get the following error message: > Could not chdir to home directory /home/users/g/go/goedson: No such file > or directory > cvs [server aborted]: can't chdir(/home/users/g/go/goedson): No such file > or directory > > > Anyone have any Idea? > > _______________________________________________ > Jreporter-devel mailing list > Jre...@li... > http://lists.sourceforge.net/lists/listinfo/jreporter-devel |
From: Goedson T. P. <gop...@dc...> - 2001-07-13 15:09:01
|
Hi, I'm having trouble when I try to access the CVS repository. Whe I issue a cvs co, I get the following error message: Could not chdir to home directory /home/users/g/go/goedson: No such file or directory cvs [server aborted]: can't chdir(/home/users/g/go/goedson): No such file or directory Anyone have any Idea? |
From: Travis B. <tr...@us...> - 2001-07-13 11:19:17
|
Hello, Does anyone have any idea what the following might be? -- ---------------------------------------------------------------- Travis Bauer | CS Grad Student | IU |www.cs.indiana.edu/~trbauer ---------------------------------------------------------------- ----- Forwarded message from miguel angel rojas aquino <mro...@ma...> ----- > Message-ID: <3B4...@ma...> > Date: Thu, 12 Jul 2001 12:28:25 -0500 > From: miguel angel rojas aquino <mro...@ma...> > To: tr...@us... > Subject: jreporter in jbuilder > > hi, great work!! > > i'm trying to run the jreport classes inside jbuilder4 for linux, but it > gives me the following messages: > > Rendering record: 1 > error printing: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 > getRecord: java.lang.ArrayIndexOutOfBoundsException: 8 > getRecord: rs=org.postgresql.jdbc2.ResultSet@e94daba > > > i can run the sample SQLReport from the comand line, but trying to run > the same example inside jbuilder gives me the message mentioned. > > hope you can help me, and sorry about my english. > > best regards. ----- End forwarded message ----- |
From: Travis B. <tr...@us...> - 2001-06-20 23:06:40
|
Goedson's preview code is now in the repository and it works. When you run jreporter.examples.ReportExamples, you will see the report dialog, then you will see the preview. I have commented out the portion that actually prints the report on paper. We'll have to improve that class so that it can show off all the features that are being implemented :) I'm going to be gone for a few days, but will reorganize the source code tree and set it up to use ant when I get back. I like Goedson's suggested hierarchy and I think we should go with something similar to what he has set up. All the edited code is in the CVS. Have fun and see you next week. Travis |
From: Bob B. <Bob...@ap...> - 2001-06-20 15:28:19
|
Hi, While I haven't seen the new code yet, I tend towards Sun's coding standards: http://java.sun.com/docs/codeconv/ Not so much because I think it's better than Kernigan and Richie or any other convention, but because it's what most Java programmers use. As for using Ant as a build tool, I think it, like virtually everything from Apache, is world class. My experiences with it have been very positive, including managing the build of a very large EJB system last Summer. Bob -----Original Message----- From: Travis Bauer [mailto:tr...@in...] Sent: Wednesday, June 20, 2001 7:00 AM To: jre...@li... Cc: Bob...@ap... Subject: Re: Java Report Library Thanks for the tarball. I was able to get the print preview window up and view the sample report on screen. It looks like we have a strong start. I'm am trying to incorporate your changes into the current source tree. I have put the jreporter.preview library into the cvs and have modified the ReportExamples.java to pop up a preview window. However, when running jreporter.ReportExamples in the new source tree, after showing the page setup dialog, it briefly flashes a window (presumably the preview window) and then the program ends without giving any error message. What files have you modified other than the jreporter.preview java files and jreport.examples.ReportExamples.java? Regarding the changes to the layout of the source code, I'm open to using ant and doing some reorganization. Bob, what do you think? But I'd like to get your changes working with the current tree before we make any other changes. Travis Goedson Teixeira Paixao (gop...@dc...) wrote: > > Here gos the tarball with my current previewer code. The class of interest is > jreporter.preview.ReportViewer. The code is still very basic but it is already > possible to view a report in the screen. The jreporter.examples.ReportExamples > in this source tree opens a preview window after the configuration dialog. You > should be able to run it with the comand java -cp ./build:../jlfgr-1_0.jar > jreporter.examples.ReportExamples from the build directory after running ant > compile-examples. > > The basic idea when I designed the ReportViewer was to have an off-screen > image of the current page (for performance reasons) and paint this image to > the screen whenever requested. When some property of the ReportViewer changes > (go to next page, for example) the report is requested to print itself to > this off-screen image. > > If you have any doubts, please e-mail me. > > Best regards, > Goedson |
From: Goedson T. P. <gop...@dc...> - 2001-06-20 14:34:27
|
On Wed, Jun 20, 2001 at 09:00:27AM -0500, Travis Bauer wrote: > Thanks for the tarball. I was able to get the print preview window up and > view the sample report on screen. It looks like we have a strong start. > > I'm am trying to incorporate your changes into the current source tree. > I have put the jreporter.preview library into the cvs and have modified > the ReportExamples.java to pop up a preview window. However, when > running jreporter.ReportExamples in the new source tree, after > showing the page setup dialog, it briefly > flashes a window (presumably the preview window) and then the program ends > without giving any error message. What files have you modified other than > the jreporter.preview java files and jreport.examples.ReportExamples.java? These should be the only changes. Have you put jlfgr-1_0.jar in the classpath? It's needed for the icons used in the preview window. It's the only thing I can think that may be wrong. If you send me your current tree with the changes, I can try to run it here an try to find the problem. > > Regarding the changes to the layout of the source code, I'm open to using > ant and doing some reorganization. Bob, what do you think? But I'd like > to get your changes working with the current tree before we make any other > changes. I agree. We should make one change at a time. |
From: Travis B. <tr...@in...> - 2001-06-20 14:00:30
|
Thanks for the tarball. I was able to get the print preview window up and view the sample report on screen. It looks like we have a strong start. I'm am trying to incorporate your changes into the current source tree. I have put the jreporter.preview library into the cvs and have modified the ReportExamples.java to pop up a preview window. However, when running jreporter.ReportExamples in the new source tree, after showing the page setup dialog, it briefly flashes a window (presumably the preview window) and then the program ends without giving any error message. What files have you modified other than the jreporter.preview java files and jreport.examples.ReportExamples.java? Regarding the changes to the layout of the source code, I'm open to using ant and doing some reorganization. Bob, what do you think? But I'd like to get your changes working with the current tree before we make any other changes. Travis Goedson Teixeira Paixao (gop...@dc...) wrote: > > Here gos the tarball with my current previewer code. The class of interest is > jreporter.preview.ReportViewer. The code is still very basic but it is already > possible to view a report in the screen. The jreporter.examples.ReportExamples > in this source tree opens a preview window after the configuration dialog. You > should be able to run it with the comand java -cp ./build:../jlfgr-1_0.jar > jreporter.examples.ReportExamples from the build directory after running ant > compile-examples. > > The basic idea when I designed the ReportViewer was to have an off-screen > image of the current page (for performance reasons) and paint this image to > the screen whenever requested. When some property of the ReportViewer changes > (go to next page, for example) the report is requested to print itself to > this off-screen image. > > If you have any doubts, please e-mail me. > > Best regards, > Goedson |