-
bruce_a_martin committed patchset 13 of module cb2xml to the COBOL copybook to XML converter CVS repository, changing 2 files.
2009-09-29 07:59:19 UTC by bruce_a_martin
-
bruce_a_martin committed patchset 12 of module cb2xml to the COBOL copybook to XML converter CVS repository, changing 1 files.
2009-09-29 07:57:28 UTC by bruce_a_martin
-
bruce_a_martin committed patchset 11 of module cb2xml to the COBOL copybook to XML converter CVS repository, changing 7 files.
2009-09-08 06:33:39 UTC by bruce_a_martin
-
cb2xml currently calculates Actual Length correctly for most common picture clauses. I will be uploading further fixes
for Comp-1, Comp-2 and Sync keywords.
2009-09-03 23:44:35 UTC by bruce_a_martin
-
ptrthomas added bruce_a_martin to the COBOL copybook to XML converter project.
2009-07-17 17:27:45 UTC by ptrthomas
-
It is parsed but there is nothing that puts it in the generated XML.
2009-07-17 12:38:47 UTC by francisu
-
Somehow I didn't manage to add two attachments, so I'll just post the changes in "CopyBookAnalyzer.java" as a comment:
public void caseTAlphanumericLiteral(TAlphanumericLiteral node) {
String nodeText = node.getText();
if (nodeText.startsWith("X")) {
node.setText(nodeText.replace('\"', '\''));
} else {
if (nodeText.indexOf("\"") != -1) {...
2009-07-14 13:35:14 UTC by tobiasbaum
-
I needed support for hexadecimal character literals (e.g. X'0A' or X"0D0A") so I added it to the grammar and adjusted the xml output.
2009-07-14 13:29:37 UTC by tobiasbaum
-
I think that it can be done based on COMP-3: just parse COMP-6 founded in copybooks similar to COMP-3 so that items based on this has all requires attributes like "usage", "decimal", "display-length" properly set.
Example:
03 SUJ001 PIC 9(6) COMP-6.
now creates:
2009-05-30 12:10:38 UTC by p4w3l
-
At the moment Jean (nwfrog) is looking at the project more than Peter is.
I will have a bit of a look at what you have done.
I played a around with generating Java classes as part of the recordeditor but did not get to Production Stage (See http://record-editor.sourceforge.net/xmple03.htm#Header_10 for an example of Generating a class).
While generating a class for a Typical interface...
2009-05-28 09:11:21 UTC by bruce_a_martin