<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Add 1 to COBOL</title>
	<atom:link href="http://add1tocobol.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://add1tocobol.com</link>
	<description>The Chuck Norris of COBOL</description>
	<lastBuildDate>Sun, 23 Jan 2011 17:05:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>OCWebEditor Project</title>
		<link>http://add1tocobol.com/blog/2010/11/18/496/</link>
		<comments>http://add1tocobol.com/blog/2010/11/18/496/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 16:36:20 +0000</pubDate>
		<dc:creator>aoirthoir</dc:creator>
				<category><![CDATA[OCKit]]></category>
		<category><![CDATA[OCWebEditor]]></category>

		<guid isPermaLink="false">http://add1tocobol.com/?p=496</guid>
		<description><![CDATA[OCWebEditor is now available for alpha testing. Head on over and check it out.  Don&#8217;t forget to read more info here about it. The intention of this project is to provide an on-line Editor/Compiler/Debugger for OpenCOBOL.  The idea was arrived at looking at Gary Cutlers OCic.  I thought that was a wonderful idea and I [...]]]></description>
			<content:encoded><![CDATA[<p><!-- p { margin-bottom: 0.08in; }a:link {  } --><a title="OCWebEditor" href="http://oceditor.plpwebs.com" target="_blank">OCWebEditor</a> is now available for alpha testing.</p>
<p>Head on over and check it out.  Don&#8217;t forget to read more info here about it.</p>
<div id="attachment_534" class="wp-caption aligncenter" style="width: 310px"><a href="http://add1tocobol.com/wp-content/uploads/2010/11/Screen-shot-2010-11-22-at-3.55.43-PM1.png"><img class="size-medium wp-image-534" src="http://add1tocobol.com/wp-content/uploads/2010/11/Screen-shot-2010-11-22-at-3.55.43-PM1-300x212.png" alt="OCWebEditor" width="300" height="212" /></a><p class="wp-caption-text">OCWebEditor ver. .01 Alpha</p></div>
<p><span id="more-496"></span></p>
<p>The intention of this project is to provide an on-line Editor/Compiler/Debugger for <a href="http://opencobol.org/" target="_blank">OpenCOBOL</a>.  The idea was arrived at looking at Gary Cutlers OCic.  I thought that was a wonderful idea and I created a very simple front-end for the compiler on the web.  During the iterations of edit/upload/compile/test I was getting more and more frustrated with all the switching from one app to another.</p>
<p>That was when I decided I needed a full COBOL IDE with the ability to compile right there on the web.  Thus the OCWebEditor was born.</p>
<p>The OCWebEditor will be done in a few phases.  Following is the current roadmap for this project.</p>
<p>Once Add1to has the project management up and running I will load the source into it.</p>
<p>PHASE 1: (Current)</p>
<ul>
<li>Editor Plug-in
<ul>
<li>Rather than struggle with creating my own editor plug-in I 		used the awesome power of the web and FOSS.  I went and found one 		that was already working.  (Why re-invent the wheel).   The current 		Plug-in is EditArea by Christophe Dolivet. It beats out many of the 		other FOSS editors in that it works, lot&#8217;s of built-in 		functionality, being supported, and most important, WELL 		documented.</li>
<li>Current features of EditArea:
<ul>
<li>Easy to integrate, only one script include and one function 			call</li>
<li>Tabulation support (allow to write well formated source 			code)</li>
<li>Customizable real-time syntax highlighting (currently: PHP, 			CSS, Javascript, Python, HTML, XML, VB, C, CPP, SQL, Pascal, 			Basic, Brainf*ck, and probably more&#8230;)
<ul>
<li>IMPORTANT TO NOTE.  THE ONLY SYNTAX HIGHLIGHTING IS FOR 				OpenCOBOL at this time.</li>
</ul>
</li>
<li>Word-wrap support : I DISABLED THIS</li>
<li>Search and replace (with regexp)</li>
<li>Auto-indenting new lines : NOT USED</li>
<li>Line numerotation</li>
<li>Multilanguage support (currently: Croatian, Czech, Danish, 			Dutch, English, Esperanto, French, German, Italian, Japanese, 			Macedonian, Polish, Portuguese, Russian, Slovak, Spanish, and 			probably more&#8230;)
<ul>
<li>NOTE: I NEED TO FIGURE OUT HOW TO MAKE THIS USEABLE ON THE 				FLY</li>
</ul>
</li>
<li>Possible PHP gzip compression (compress the core files to 			one file of ~25Ko)</li>
<li>Allow multiple instances</li>
<li>Full screen mode</li>
<li>Possible plugin integration</li>
<li>Possible save and load callback functions</li>
<li>Possible dynamic content management</li>
<li>Can work in the same environment than &#8220;prototype&#8221; 			and &#8220;mootools&#8221;&#8216;s like libraries.</li>
</ul>
</li>
</ul>
</li>
<li>Single-User design
<ul>
<li>Currently I am just getting it to work.  Plain and simple.  		This means it is designed around a single-user.  So, once I put it 		into Alpha availability you will be able to use it, but will share 		it with all users.  This means your code will be available to 		everyone using it.</li>
</ul>
</li>
<li>Compiler
<ul>
<li>The compiler will be usuable with manual addition of 		parameters.  Meaning you will be able supply any compiler switch 		you need for compiling.  e.g -Wall -x etc&#8230;</li>
<li>All output from the compiler will be dumped to the “console” 		and “log” tab of the UI.
<ul>
<li>In order to achieve this I had to redirect the console 			output to .log and .err files then read them back and display them 			for the cgi output.  Apparently the compiler does not send to 			stdout.</li>
</ul>
</li>
</ul>
</li>
<li>Load
<ul>
<li>You will be able to load the source into the editor by 		clicking on the filename in the file list.</li>
<li>You will be able to load multiple files into the editor</li>
</ul>
</li>
<li>Save
<ul>
<li>You will be able to save any changes made to the code in the 		current source tab.</li>
</ul>
</li>
<li>New Source
<ul>
<li>You will be able to create a new source file which will load 		a template designed for CGI</li>
</ul>
</li>
<li>SaveAs
<ul>
<li>You will be able to save the current source tab AS 		&lt;filename.cob&gt;</li>
</ul>
</li>
<li>Run
<ul>
<li>You will be able to run the current source tab (AFTER 		COMPILING IT) and see the output in the console tab.</li>
</ul>
</li>
</ul>
<p>Phase II</p>
<ul>
<li>Multi-User
<ul>
<li>Ability to have your own work-space/projects</li>
</ul>
</li>
<li>Source and Library
<ul>
<li>Have both a source folder and library (copy books) folder</li>
</ul>
</li>
<li>Per user configuration
<ul>
<li>Ability to configure default compiler and project settings</li>
</ul>
</li>
<li>Download source files</li>
<li>Upload source files instead of copy/paste/save_as</li>
</ul>
<p>Phase III</p>
<ul>
<li>svn integration</li>
<li>debugger (curtesy of Frederico)</li>
<li>TBD</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://add1tocobol.com/blog/2010/11/18/496/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OCKit Stages</title>
		<link>http://add1tocobol.com/blog/2010/11/12/ockit-stages/</link>
		<comments>http://add1tocobol.com/blog/2010/11/12/ockit-stages/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 13:36:09 +0000</pubDate>
		<dc:creator>aoirthoir</dc:creator>
				<category><![CDATA[OCKit]]></category>
		<category><![CDATA[bsd]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[native install]]></category>
		<category><![CDATA[puppy linux]]></category>
		<category><![CDATA[suse]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[vm]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://add1tocobol.com/?p=479</guid>
		<description><![CDATA[The OCKit is planned in stages. It&#8217;s taking a long time to put together, because there is a lot to put together, trying to get all of the pieces right. Stage 1: OCKit4Web. This is a version of OpenCOBOL and company, entirely as a hosted solution. So persons will be able to sign up for [...]]]></description>
			<content:encoded><![CDATA[<p>The OCKit is planned in stages. It&#8217;s taking a long time to put together, because there is a lot to put together, trying to get all of the pieces right.</p>
<h2>Stage 1: OCKit4Web.</h2>
<p>This is a version of OpenCOBOL and company, entirely as a hosted solution. So persons will be able to sign up for free. They will receive a shell account from me. They&#8217;ll then have a console in GNU/Linux to compile and test OpenCOBOL programs. If the tests that DamonH is doing turn out well, the entire interface may even be Web based. This version will have a great focus on Web App production.<br />
<span id="more-479"></span></p>
<h2>Stage 2: OCKitVM.</h2>
<p>This is a version of OpenCOBOL a guest inside a VirtualBox virtual machine (VM henceforth). Initially it will be Debian or Ubuntu [server] based. In the future other VMs might follow (BSD, Fedora, Suse, Puppy Linux etc). Due to licensing restrictions we will never be able to distribute a VM with Windows or Mac as the guest operating system. But the VMs we distribute will run on Windows, Mac and anywhere else VirtualBox runs.</p>
<p>VirtualBox allows many useful features to allow OpenCOBOL inside a VM and apps compiled inside that VM to seem as if they are runing native. The two primary features are Seamless Windows and the fact that the Guest can communicate with the Host. So now output from STDIN, STDOUT, STDERR and others, can be routed both ways.</p>
<p>OCKitVM will allow us to distribute a version of OpenCOBOL and company (see below) that doesn&#8217;t really require native installs. So it will &#8220;just work&#8221; regardless of the operating system if runs in. So long as VirtualBox just works that is.</p>
<h2>Stage 3: OCKitNative.</h2>
<p>  This version will be a native install for various operating systems. The first release of OCKitNative will be Ubuntu/Debian based. Fedora, BSD, OpenSolaris, Windows, Mac and others will follow. </p>
<p>This is the largest undertaking because it requires a lot of testing and answering a lot of questions. Do we install OpenCOBOL to compile with VisualC? A freeware C compiler? GCC? If VisualC for instance, then we have to get a license for VisualC so we can test properly (I don&#8217;t break software licenses). Because this is the largest of the jobs, it&#8217;s also last on the list. The original idea for OCKit didn&#8217;t even entail a native install, just an &#8220;instant on&#8221; virtual machine distribution. But demand for native installs means that eventually we&#8217;ll need to create them. To do so we need volunteers. <img src='http://add1tocobol.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>A note: Most of the conversation regarding OCKit will be taking place at http://add1tocobol.com. I have a plethora of tools there (more coming) that will allow me to track the OCKit varieties development, set roadmaps, tasks, follow bug reports and more there, that this forum doesn&#8217;t really offer us. </p>
<p>Link for this blog post at add1tocobol.com: http://add1tocobol.com/blog/2010/11/12/ockit-stages/</p>
]]></content:encoded>
			<wfw:commentRss>http://add1tocobol.com/blog/2010/11/12/ockit-stages/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ACCEPT fieldname FROM POST &#8220;fieldname&#8221;.</title>
		<link>http://add1tocobol.com/blog/2010/11/11/accept-fieldname-from-post-fieldname/</link>
		<comments>http://add1tocobol.com/blog/2010/11/11/accept-fieldname-from-post-fieldname/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 05:08:46 +0000</pubDate>
		<dc:creator>aoirthoir</dc:creator>
				<category><![CDATA[OCKit]]></category>
		<category><![CDATA[OpenCOBOL]]></category>
		<category><![CDATA[cgi]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://add1tocobol.com/?p=473</guid>
		<description><![CDATA[Currently to access GETS and POSTS from a web form in OpenCOBOL is a bit of a process. With gets we have to read the query_string and with posts we have to read from keyboard. Then we have to URL-DECODE the entire thing. Finally we have to unstring, or search the entire read, and separate [...]]]></description>
			<content:encoded><![CDATA[<p>Currently to access GETS and POSTS from a web form in OpenCOBOL is a bit of a process. With gets we have to read the query_string and with posts we have to read from keyboard. Then we have to URL-DECODE the entire thing. Finally we have to unstring, or search the entire read, and separate it out, field by field.</p>
<p>JCurrey and team at Currey Adkins have a wonderful product to assist in this and I love what they&#8217;ve done. At some future date I will be making a post about it. In the meantime I want to toss out an idea for Roger and the others helping him with the <a href="http://openocobol.org">OpenCOBOL</a> compiler.</p>
<p>We&#8217;re able currently with OC to do the following:<br />
<code>ACCEPT query_string FROM ENVIRONMENT "query_string".<br />
MOVE "somevalue" TO some-literal.<br />
ACCEPT somefield FROM ENVIRONMENT some-literal.<br />
</code></p>
<p>Essentially we&#8217;re able to accept a value from the environment into a variable. It&#8217;s fantastic and wonderful in it&#8217;s simplicity. What I would like to see is more direct web integration in the OpenCOBOL compiler. Imagine for a moment the beauty of being able to do something like:<br />
<code>ACCEPT first-name FROM POST "first-name".<br />
ACCEPT search-value FROM GET "q".<br />
ACCEPT inventory-item(count) FROM POST "inventory-item" (count).<br />
</code><br />
And other such things. </p>
<p>The compiler would have to have inbuilt the ability to read the query_string (for GETS), url-decode them, and then process them into separate variables. For the POST variables it would have to read from the keyboard, url-decode and then convert to specific variables. For the COBOLer though, this would simplify their ability to interact with web forms.</p>
<p>Thoughts?<br />
<span id="more-473"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://add1tocobol.com/blog/2010/11/11/accept-fieldname-from-post-fieldname/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>OCKit4Web</title>
		<link>http://add1tocobol.com/blog/2010/11/09/ockit4web/</link>
		<comments>http://add1tocobol.com/blog/2010/11/09/ockit4web/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 06:09:10 +0000</pubDate>
		<dc:creator>aoirthoir</dc:creator>
				<category><![CDATA[OCKit]]></category>
		<category><![CDATA[cgi]]></category>
		<category><![CDATA[dreamhost]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://add1tocobol.com/?p=463</guid>
		<description><![CDATA[This version of the OCKit4Web is known to work on Dreamhost. I am not sure if it will work on other systems or not. Over the coming weeks we are going to add a lot of conversation and features for it. For now it works with a patch to VBISAM. Instructions: tar -xzf OCKit4Web.tar.gz cd [...]]]></description>
			<content:encoded><![CDATA[<p>This version of the OCKit4Web is known to work on Dreamhost. I am not sure if it will work on other systems or not. Over the coming weeks we are going to add a lot of conversation and features for it. For now it works with a patch to VBISAM.</p>
<p><span id="more-463"></span></p>
<p>Instructions:</p>
<p>tar -xzf OCKit4Web.tar.gz<br />
cd OCKit4Web/Installs<br />
./install.sh</p>
<p>This will create the directory /home/username/usr and everything else that is needed. It will compile and install VBISAM, GMP, and OpenCOBOL into the said usr directory. Then you should be good to go. </p>
<p>The team will be adding more soon and this is just a short late night post. </p>
<p><a href='http://add1tocobol.com/wp-content/uploads/2010/11/OCKit4Web.tar.gz'>Download OCKit4Web.tar.gz</a></p>
]]></content:encoded>
			<wfw:commentRss>http://add1tocobol.com/blog/2010/11/09/ockit4web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OpenCOBOL on the web</title>
		<link>http://add1tocobol.com/blog/2010/11/08/opencobol-on-the-web/</link>
		<comments>http://add1tocobol.com/blog/2010/11/08/opencobol-on-the-web/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 20:13:02 +0000</pubDate>
		<dc:creator>aoirthoir</dc:creator>
				<category><![CDATA[OpenCOBOL]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[cgi]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://add1tocobol.com/?p=456</guid>
		<description><![CDATA[Well it certainly seems that OpenCOBOL is a viable solution for the internet. Being a compiled language adds many benefits for being a solution. First and foremost would be speed. Since it is a compiled language unlike PHP, Java, VBS, JS and adnausium, it is FAST. This is due to it not needing to be [...]]]></description>
			<content:encoded><![CDATA[<p>Well it certainly seems that OpenCOBOL is a viable solution for the internet.<br />
Being a compiled language adds many benefits for being a solution.  First and foremost would be speed.</p>
<p>Since it is a compiled language unlike PHP, Java, VBS, JS and adnausium, it is FAST.  This is due to it not needing to be run through an interpreter first.  The Second reason would be security.  Many of the internet applications and websites are rife with security holes. Most specifically SQL injection. Also known as SQLi.   This is where a hacker inserts an sql query statement into a field on your website.  When the field is submitted it is then executed by the database.  Nasty stuff.  If they know the structure of your database they can get all sorts of information.  This can usually be found by sniffing the data sent over in a post to the back-end from the PHP or Java.  With COBOL all you need to do is submit the field data from the page and let COBOL decide how to handle it.  If you use SQL as your data storage it will not matter since COBOL will call the required StoredProc that will handle getting and putting your data.  Any SQLi contained in the field data is treated exactly as that. Data.  So your hacker is just simply out of luck.   If your data is contained in COBOL files preferably in indexed files it&#8217;s even safer since COBOL doesn&#8217;t need SQL.  COBOL has been handling data in an efficient manner long before database systems were created and not much has changed since.</p>
<p>Can I use COBOL for AJAX. Most certainly.  You can pass and get data via a standard XmlHTTPost using Get or Post just like with PHP and Java.   There are many examples available for how to do this.  We should soon start having working code available for download on this site.   </p>
<p>There is not much more to say at this time about this.  Later I will write a series of tutorials guiding you in creating a web app using COBOL, HTML5, and a little JavaScript.  I will not be getting into any CSS as that will be outside the scope.  </p>
<p>Here is the roadmap at this time for these tutorials:<br />
1.Web-servers and Hosts and requirements<br />
2.Installing OpenCOBOL<br />
3.Creating the basic AJAX page with HTML5 and JavaScript<br />
4.Creating a basic COBOL cgi to use with the AJAX page<br />
5.Expanding the My Library application</p>
<p>As more items come up for the tutorial they will be added.<br />
Until then, go get OpenCOBOL from http://opencobol.org and play around if you anxious to get started.  The community is full of wonderful helpful people who love the language and want to make OpenCOBOL one of the best open source languages available.</p>
<p>(To comment click &#8220;Read More&#8221;)<br />
<span id="more-456"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://add1tocobol.com/blog/2010/11/08/opencobol-on-the-web/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Licensing Statement</title>
		<link>http://add1tocobol.com/blog/2010/11/05/licensing-statement/</link>
		<comments>http://add1tocobol.com/blog/2010/11/05/licensing-statement/#comments</comments>
		<pubDate>Sat, 06 Nov 2010 00:03:45 +0000</pubDate>
		<dc:creator>Laurel</dc:creator>
				<category><![CDATA[About the Site]]></category>

		<guid isPermaLink="false">http://add1tocobol.com/?p=306</guid>
		<description><![CDATA[This site is licensed under the Creative Commons Attribution-Share Alike 3.0 License. We&#8217;ve chosen this license to give ourselves and our readers the flexibility needed for COBOL. From the start COBOL was an open standard. Open standards need open documentation. Such open documentation needs to be usable by everyone and not restricted. So we&#8217;ve avoided [...]]]></description>
			<content:encoded><![CDATA[<p>This site is licensed under the <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-Share Alike 3.0 License</a>.  We&#8217;ve chosen this license to give ourselves and our readers the flexibility needed for COBOL. From the start COBOL was an open standard. Open standards need open documentation. Such open documentation needs to be usable by everyone and not restricted. So we&#8217;ve avoided using licenses that restrict commercial use of the works that will be posted here. CC-BY-SA meets this requirement.</p>
<p>So, what does Creative Commons mean? This quote about Creative Commons licensing is taken from <a href="http://wiki.creativecommons.org/Frequently_Asked_Questions">http://wiki.creativecommons.org/Frequently_Asked_Questions</a>:</p>
<blockquote><h3>How does a Creative Commons license operate?</h3>
<p>A Creative Commons license is based on copyright. So they apply to all works that are protected by copyright law. The kinds of works that are protected by copyright law are books, websites, blogs, photographs, films, videos, songs and other audio &amp; visual recordings, for example. Software programs are also protected by copyright but, as explained below, we do not recommend that you apply a Creative Commons license to software code.</p>
<p>Creative Commons licenses give you the ability to dictate how others may exercise your copyright rights—such as the right of others to copy your work, make derivative works or adaptations of your work, to distribute your work and/or make money from your work. They do not give you the ability to restrict anything that is otherwise permitted by exceptions or limitations to copyright—including, importantly, fair use or fair dealing—nor do they give you the ability to control anything that is not protected by copyright law, such as facts and ideas.</p>
<p>Creative Commons licenses attach to the work and authorize everyone who comes in contact with the work to use it consistent with the license. This means that if Bob has a copy of your Creative Commons-licensed work, Bob can give a copy to Carol and Carol will be authorized to use the work consistent with the Creative Commons license. You then have a license agreement separately with both Bob and Carol.</p>
<p>You should be aware that Creative Commons licenses only affect your rights under copyright. You are not licensing your trademark or patent rights, if any, when you apply a CC license to your work.</p>
<p>Creative Commons licenses are expressed in three different formats: the Commons Deed (human-readable code), the Legal Code (lawyer-readable code); and the metadata (machine readable code). You don’t need to sign anything to get a Creative Commons license—just select your license with our License Chooser.</p>
<p>One final thing you should understand about Creative Commons licenses is that they are all non-exclusive. This means that you can permit the general public to use your work under a Creative Commons license and then enter into a separate and different non-exclusive license with someone else, for example, in exchange for money.</p></blockquote>
<p>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img style="border-width: 0" src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" alt="Creative Commons License" /></a><br />
<strong>So what does CC by SA mean?</strong><br />
This quote is from <a href="http://creativecommons.org/about/licenses/meet-the-licenses">http://creativecommons.org/about/licenses/meet-the-licenses</a>:</p>
<blockquote><h3>Attribution Share Alike (by-sa)</h3>
<p>Choose by-sa license This license lets others remix, tweak, and build upon your work even for commercial reasons, as long as they credit you and license their new creations under the identical terms. This license is often compared to open source software licenses. All new works based on yours will carry the same license, so any derivatives will also allow commercial use.</p></blockquote>
<p><span id="more-306"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://add1tocobol.com/blog/2010/11/05/licensing-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chat Live Updated</title>
		<link>http://add1tocobol.com/blog/2010/11/05/chat-live-updated/</link>
		<comments>http://add1tocobol.com/blog/2010/11/05/chat-live-updated/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 23:03:09 +0000</pubDate>
		<dc:creator>aoirthoir</dc:creator>
				<category><![CDATA[About the Site]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://add1tocobol.com/?p=403</guid>
		<description><![CDATA[Today we dug into the Afterburner theme and created a new page template for chat. We&#8217;re hoping that this leads to a better experience for those chatting with us via the web interface. In playing around with it today, I definitely found it to be better for myself. So here&#8217;s what we did. Eliminated the [...]]]></description>
			<content:encoded><![CDATA[<p>Today we dug into the Afterburner theme and created a new page template for chat. We&#8217;re hoping that this leads to a better experience for those chatting with us via the web interface. In playing around with it today, I definitely found it to be better for myself. So here&#8217;s what we did.</p>
<ol>
<li>Eliminated the right and left side panel.</li>
<li>Widened the chat widget to the full width of the site.</li>
<li>Eliminated Author info, Comments and so on. Chat just needs chat and nothing more.</li>
<li>Made the chat area taller.</li>
<li>Put a green border around the chat to distinguish it more clearly from the surrounding page.</li>
<li>Reduced clutter in the title, and extra un-needed padding.</li>
</ol>
<p>That of course gives us some ideas for the future. So some ideas I am tossing around include:</p>
<ol>
<li>Creating Mozilla, Chrome and other &#8220;apps&#8221; out of our chat page, or just out chat room entirely and eliminating ALL of the non-chat related clutter.</li>
<li>Somehow publically logging the chats, right on the main chat link. That way anyone that missed out can catch up.</li>
</ol>
<p>If anyone has any suggestions please post below in the comments section.<br />
<span id="more-403"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://add1tocobol.com/blog/2010/11/05/chat-live-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Publishing Privileges on Add1toCOBOL.com</title>
		<link>http://add1tocobol.com/blog/2010/11/04/publishing-privileges-on-add1tocobol-com/</link>
		<comments>http://add1tocobol.com/blog/2010/11/04/publishing-privileges-on-add1tocobol-com/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 06:47:37 +0000</pubDate>
		<dc:creator>Laurel</dc:creator>
				<category><![CDATA[About the Site]]></category>
		<category><![CDATA[authoring]]></category>
		<category><![CDATA[permissions]]></category>
		<category><![CDATA[users]]></category>

		<guid isPermaLink="false">http://add1tocobol.com/?p=299</guid>
		<description><![CDATA[Just a quick note about your publishing privileges on this WordPress site.  When you sign up on this site, you will be automatically granted the privileges of a Contributor on the main site, an Author on the Forum and an Editor on the Wiki.  What do these terms mean? Well, a Contributor can submit posts, [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick note about your publishing privileges on this WordPress site.  When you sign up on this site, you will be automatically granted the privileges of a Contributor on the main site, an Author on the Forum and an Editor on the Wiki.  What do these terms mean?</p>
<p>Well, a Contributor can submit posts, pages, comments and other content for review by an editor. Once an Editor has approved their submission, it will be published. This permission level is good for new friends who&#8217;ve just joined our site.</p>
<p>Authors on the other hand, can publish their own submissions without waiting for approval from an Editor. For the main site, we generally will make someone an Author once we get to know them better.</p>
<p>Finally Editors can publish their own submissions and edit <strong>anything</strong> anyone else has submitted. Editors for the main site will be rarer.</p>
<p>Why the difference? Well, we want the main content to be approved content. It&#8217;s our public face after all.</p>
<p>But Forums and Wikis have different rules.  A Forum is a kind of free-for-all, everyone is free to post whatever they want. This is good for asking questions, having discussions and so on. While a Wiki is specifically made so that everyone can post and edit any of the content.</p>
<p>These permissions will help us to keep spam to a minimum, while allowing great flexibility for everyone in our community. So if you want to post, or share articles, just sign up. If anyone has any questions about the permissions, feel free to contact us. You can email Aoirthoir via Add 1 to COBOL dot com or call him at 440.941.3396.</p>
<p><span id="more-299"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://add1tocobol.com/blog/2010/11/04/publishing-privileges-on-add1tocobol-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add1toCOBOL New Site Goes Live!</title>
		<link>http://add1tocobol.com/blog/2010/11/02/add1tocobol-new-site-goes-live/</link>
		<comments>http://add1tocobol.com/blog/2010/11/02/add1tocobol-new-site-goes-live/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 04:51:48 +0000</pubDate>
		<dc:creator>aoirthoir</dc:creator>
				<category><![CDATA[About the Site]]></category>
		<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://add1tocobol.com/?p=147</guid>
		<description><![CDATA[We've spent the last few weeks working...]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve spent the last few weeks working, looking, searching, installing, testing and it&#8217;s paid off. We finally have a new site. I&#8217;ll update this post in  a few hours detailing the specifics of the site, software, goals and so on. So stay tuned!<br />
<span id="more-147"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://add1tocobol.com/blog/2010/11/02/add1tocobol-new-site-goes-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add 1 to COBOL &amp; OpenCOBOL, we&#8217;re your team for modern COBOL in the Internet age.</title>
		<link>http://add1tocobol.com/blog/2010/11/01/add-1-to-cobol-opencobol-we-are-your-team-for-modern-cobol-in-the-internet-age/</link>
		<comments>http://add1tocobol.com/blog/2010/11/01/add-1-to-cobol-opencobol-we-are-your-team-for-modern-cobol-in-the-internet-age/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 07:10:37 +0000</pubDate>
		<dc:creator>aoirthoir</dc:creator>
				<category><![CDATA[Showcase]]></category>

		<guid isPermaLink="false">http://add1tocobol.com/?p=114</guid>
		<description><![CDATA[Free and Open Source + Web &#38; MySQL Enabled + Educational Resources + Cross Platform + More! 1 Webify your COBOL Apps OpenCOBOL and Add 1 to COBOL provide the perfect combination to bring your COBOL Apps to the Internet. 2 OCKit The OpenCOBOL Kit (currently in development) will be your &#8220;instant on&#8221; OpenCOBOL compiler. We&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<h3>Free and Open Source <strong>+</strong> Web &amp; MySQL Enabled <strong>+</strong> Educational Resources <strong>+</strong> Cross Platform <strong>+</strong> More!</h3>
<div class="dp33">
<div class="pad">
<div class="num">1</div>
<h2><a href="/projects/libraries/web-and-cgi/">Webify your COBOL Apps</a></h2>
<p><strong>OpenCOBOL </strong>and<strong> Add 1 to COBOL</strong> provide the perfect combination to bring your COBOL Apps to the Internet.</p>
</div>
</div>
<div class="dp33">
<div class="pad">
<div class="num">2</div>
<h2><a href="/ockit/">OCKit</a></h2>
<p>The OpenCOBOL Kit (currently in development) will be your &#8220;instant on&#8221; OpenCOBOL compiler. We&#8217;ll be packing it with everything you&#8217;ll need to develop modern COBOL apps with the OpenCOBOL compiler.</p>
</div>
</div>
<div class="dp33">
<div class="pad">
<div class="num">3</div>
<h2><a href="/contributors">Lively Community of Volunteers</a></h2>
<p>In the spirit of FOSS, we share documentation, COBOL code, programs, libraries, tools, debuggers, samples, help and much much more. We hope you&#8217;ll join us!</p>
</div>
</div>
<p><span id="more-114"></span></p>
<p>Duis viverra nibh a felis condimentum pretium. Nullam tristique lacus non purus. Donec vel felis. Etiam et sapien. Pellentesque nec quam a justo tincidunt laoreet. Aenean id enim. Donec lorem arcu, eleifend venenatis, rhoncus mollis, semper at, dui. Praesent velit tellus, adipiscing et, blandit convallis, dictum at, dui. Integer suscipit tortor in orci. Phasellus consequat. Quisque dictum convallis pede.</p>
<p>Mauris viverra scelerisque mauris. Nulla facilisis, elit malesuada pretium egestas, dolor arcu commodo est, at egestas massa tortor ut ante. Etiam eget libero. Aenean pretium, tellus sed sodales semper, turpis purus aliquet orci, pulvinar ornare odio tortor sit amet dui.</p>
<p>Aenean id orci. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Vivamus magna. Mauris tincidunt iaculis enim. Duis a mi vitae sapien dapibus tincidunt. Proin metus.</p>
<p>Proin cursus, libero non auctor faucibus, urna mi vestibulum orci, sit amet fermentum nibh purus eet enim. Aenean aliquet ligula nec nulla. Praesent sit amet lorem vitae massa hendrerit auctor. Sed sit amet urna. Aenean sapien nunc, imperdiet a, pharetra in, consequat eu, neque. Phasellus vel sem gravida augue consequat tempor. Curabitur eget mauris at pede varius facilisis.</p>
]]></content:encoded>
			<wfw:commentRss>http://add1tocobol.com/blog/2010/11/01/add-1-to-cobol-opencobol-we-are-your-team-for-modern-cobol-in-the-internet-age/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

