Aquileo | Recent changes to Project Stingray - Schema-Based File Readerhttps://sourceforge.net/p/stingrayreader/Recent changes to Project Stingray - Schema-Based File ReaderenSun, 28 Oct 2018 15:29:41 -0000- Aquileo | Moving to GitHubhttps://sourceforge.net/p/stingrayreader/blog/2018/10/moving-to-github/<div class="markdown_content"><p>It's about time to move to Git Hub. The SourceForge workflow has (finally) started to feel too complex. Details to follow. <br/>
See <a href="https://github.com/slott56" rel="nofollow">https://github.com/slott56</a> for further developments.<br/>
Also see <a href="https://slott-softwarearchitect.blogspot.com" rel="nofollow">https://slott-softwarearchitect.blogspot.com</a> for some announcements.</p></div>Steven F. LottSun, 28 Oct 2018 15:29:41 -0000https://sourceforge.net166dc67197938a5683e78dfb5c17f99d13864b4b
- Aquileo | #26 group-level COMP-3 not properly passing USAGE to sub-elementshttps://sourceforge.net/p/stingrayreader/tickets/26/?limit=50#c922<div class="markdown_content"><p>Interesting. Can you provide a language reference link that shows this to be valid COBOL. The 4.2 language reference doesn't seem to permit this. It's an interesting technique, and I didn't know the language permitted it.</p></div>Steven F. LottThu, 18 Oct 2018 11:33:44 -0000https://sourceforge.netf010fa4e3152aa52bc873eb280616861fc92be48
- Aquileo | group-level COMP-3 not properly passing USAGE to sub-elementshttps://sourceforge.net/p/stingrayreader/tickets/26/<div class="markdown_content"><div class="codehilite"><pre><span></span> 01 TEST-COMP3-GROUP COMP-3.
05 ELEMENT1 PIC S9(6)V999.
05 ELEMENT2 PIC S9(6)V999.
05 ELEMENT3 PIC S9(6)V999.
05 ELEMENT4 PIC S9(6)V999.
</pre></div>
<p>should parse equivalent to:</p>
<div class="codehilite"><pre><span></span> 01 TEST-COMP3-GROUP.
05 ELEMENT1 PIC S9(6)V999 COMP-3.
05 ELEMENT2 PIC S9(6)V999 COMP-3.
05 ELEMENT3 PIC S9(6)V999 COMP-3.
05 ELEMENT4 PIC S9(6)V999 COMP-3.
</pre></div>
<p>However, first block parses as:<br/>
Attribute( name='TEST-COMP3-GROUP', position=0, offset=0, size=40, dimensionality=() )<br/>
Attribute( name='ELEMENT1', position=1, offset=0, size=9, dimensionality=() )<br/>
Attribute( name='ELEMENT2', position=2, offset=9, size=9, dimensionality=() )<br/>
Attribute( name='ELEMENT3', position=3, offset=18, size=9, dimensionality=() )<br/>
Attribute( name='ELEMENT4', position=4, offset=27, size=9, dimensionality=() )</p>
<p>vs</p>
<p>Attribute( name='TEST-COMP3-GROUP', position=0, offset=0, size=20, dimensionality=() )<br/>
Attribute( name='ELEMENT1', position=1, offset=0, size=5, dimensionality=() )<br/>
Attribute( name='ELEMENT2', position=2, offset=5, size=5, dimensionality=() )<br/>
Attribute( name='ELEMENT3', position=3, offset=10, size=5, dimensionality=() )<br/>
Attribute( name='ELEMENT4', position=4, offset=15, size=5, dimensionality=() )</p></div>RHarrisWed, 17 Oct 2018 21:52:50 -0000https://sourceforge.neta649eeb15bc77bcce0c8290d07894092f6c81323
- Aquileo | #25 change to cobol.defs.DDE incompatible with python 3.4https://sourceforge.net/p/stingrayreader/tickets/25/?limit=50#5ce0<div class="markdown_content"><ul>
<li><strong>Milestone</strong>: Release 4.4.7 --> Release 4.4.8</li>
</ul></div>Steven F. LottSat, 07 Nov 2015 14:50:02 -0000https://sourceforge.net5f43938ba4b649b6d1ab3270acfc71e63511f6e3
- Aquileo | #25 change to cobol.defs.DDE incompatible with python 3.4https://sourceforge.net/p/stingrayreader/tickets/25/?limit=25#a480<div class="markdown_content"><ul>
<li>Description has changed:</li>
</ul>
<p>Diff:</p>
<div class="codehilite"><pre><span class="gd">--- old</span>
<span class="gi">+++ new</span>
<span class="gu">@@ -1,14 +1,17 @@</span>
When running unit tests with python 3.4,
cobol/defs.py, line 988:
<span class="gi">+</span>
return "{:s} {:s} {:s}".format( self.level, self.name, map(str,self.children) )
is causing the error:
<span class="gi">+</span>
</pre></div>
<p>TypeError: non-empty format string passed to object.<strong>format</strong><br/>
changing that line to:<br/>
+<br/>
return "{:s} {:s} {!s}".format( self.level, self.name, map(str,self.children) )<br/>
<br/>
</p></div>RHarrisMon, 26 Oct 2015 17:15:24 -0000https://sourceforge.net20b60cc147f0d0e0dced438b9587be12ba420ef4
- Aquileo | change to cobol.defs.DDE incompatible with python 3.4https://sourceforge.net/p/stingrayreader/tickets/25/<div class="markdown_content"><p>When running unit tests with python 3.4,</p>
<p>cobol/defs.py, line 988:<br/>
return "{:s} {:s} {:s}".format( self.level, self.name, map(str,self.children) )<br/>
is causing the error:<br/>
TypeError: non-empty format string passed to object.<strong>format</strong><br/>
changing that line to:<br/>
return "{:s} {:s} {!s}".format( self.level, self.name, map(str,self.children) )<br/>
resolves the unit test errors.</p></div>RHarrisMon, 26 Oct 2015 17:15:02 -0000https://sourceforge.net307b60746015441ce2e0ae6424d24d7d27acf44d
- Aquileo | change to cobol.defs.DDE incompatible with python 3.4https://sourceforge.net/p/stingrayreader/tickets/25/<div class="markdown_content"><p>Ticket 25 has been modified: change to cobol.defs.DDE incompatible with python 3.4<br/>
Edited By: RHarris (rlh6f)<br/>
Description updated:<br/>
--- description-old</p>
<p>+++ description-new</p>
<p>@@ -1,14 +1,17 @@</p>
<p>When running unit tests with python 3.4,</p>
<p>cobol/defs.py, line 988:<br/>
+<br/>
return "{:s} {:s} {:s}".format( self.level, self.name, map(str,self.children) )<br/>
is causing the error:<br/>
+<br/>
TypeError: non-empty format string passed to object.<strong>format</strong><br/>
changing that line to:<br/>
+<br/>
return "{:s} {:s} {!s}".format( self.level, self.name, map(str,self.children) )</p></div>RHarrisMon, 26 Oct 2015 17:15:02 -0000https://sourceforge.net728dd6dd1d45c820e9af0aa1bb453576b0c81832
- Aquileo | change to cobol.defs.DDE incompatible with python 3.4https://sourceforge.net/p/stingrayreader/tickets/25/<div class="markdown_content"><p>Ticket 25 has been modified: change to cobol.defs.DDE incompatible with python 3.4<br/>
Edited By: Steven F. Lott (slott56)<br/>
_milestone updated: u'Release 4.4.7' => u'Release 4.4.8'</p></div>RHarrisMon, 26 Oct 2015 17:15:02 -0000https://sourceforge.netd018ef0fee1316ac63ce6002860ab6cb5f9daf1f
- Aquileo | #2 Build Instructions Wronghttps://sourceforge.net/p/stingrayreader/tickets/2/?limit=50#2654<div class="markdown_content"><ul>
<li><strong>status</strong>: open --> closed</li>
</ul></div>Steven F. LottTue, 09 Jun 2015 23:46:28 -0000https://sourceforge.nete912643c986adae7bfbdd900bcd46e5ac6b3527a
- Aquileo | #5 Windows Build Failurehttps://sourceforge.net/p/stingrayreader/tickets/5/?limit=50#9e1e<div class="markdown_content"><ul>
<li><strong>status</strong>: open --> wont-fix</li>
</ul></div>Steven F. LottTue, 09 Jun 2015 23:45:58 -0000https://sourceforge.netbed005ceee6f0a915468b33b6691e928012559d7