<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent posts to news</title><link href="https://sourceforge.net/p/idrs/news/" rel="alternate"/><link href="https://sourceforge.net/p/idrs/news/feed.atom" rel="self"/><id>https://sourceforge.net/p/idrs/news/</id><updated>2002-09-17T22:55:03Z</updated><subtitle>Recent posts to news</subtitle><entry><title>Next Release in Short Oder</title><link href="https://sourceforge.net/p/idrs/news/2002/09/next-release-in-short-oder/" rel="alternate"/><published>2002-09-17T22:55:03Z</published><updated>2002-09-17T22:55:03Z</updated><author><name>Marc Boorshtein</name><uri>https://sourceforge.net/u/bigman921/</uri></author><id>https://sourceforge.net9746038d295b09d865902e1ba078be364e177d79</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;A new release is in the making.  It will include many bug fixes, as well as a few new features.  These features will be datapaging, transactions and better form handling.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Path To 2.0</title><link href="https://sourceforge.net/p/idrs/news/2002/06/path-to-20/" rel="alternate"/><published>2002-06-19T21:03:25Z</published><updated>2002-06-19T21:03:25Z</updated><author><name>Marc Boorshtein</name><uri>https://sourceforge.net/u/bigman921/</uri></author><id>https://sourceforge.netb2276c8029c61d0180f628486a9cc773491c566e</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;The path to IDRS 2.0 and a full fledged web development platform is as follows:&lt;/p&gt;
&lt;p&gt;2.0 alpha 4&lt;br /&gt;
To be realsed in the next couple of days will include:&lt;br /&gt;
1.  Encrypted Passwords&lt;br /&gt;
2.  New form building and handling techniques through the &amp;lt;formInput&amp;gt; tags&lt;br /&gt;
3.  A plugable resource managment system with the inclusion of the Jakarta-Commons pooling system&lt;br /&gt;
4.  The ability to sperate databases better with supporting for sepperating the authentication db and the docs db.&lt;br /&gt;
5.  More tutorials, including a new tutorial on creating business  logic in the idrs&lt;br /&gt;
6.  An easier setup wth the inclusion of all jars to be used by the idrs and a base web.xml file&lt;br /&gt;
7.  The release of the new idrs web site&lt;/p&gt;
&lt;p&gt;2.0 alpha 5:&lt;br /&gt;
To be released in early to mid july&lt;br /&gt;
1.  Plugable Authentication Support&lt;br /&gt;
2.  Better form handling support, along with a new tutorial to cover form creation&lt;/p&gt;
&lt;p&gt;2.0 alpha 6:&lt;br /&gt;
To be released late July/early August:&lt;br /&gt;
1.  EJB Support&lt;br /&gt;
A.  Passing a context to a local object&lt;br /&gt;
B.  Caling a method of a sesison bean directly&lt;br /&gt;
C.  Use of RowSets and returned ibject with standard RML tags.&lt;/p&gt;
&lt;p&gt;2.0 alpha 7:&lt;br /&gt;
To be released late august/early spetember&lt;br /&gt;
1.  Re-integrate data-paging support and bring the system to backward compatability with idrs 1.x&lt;/p&gt;
&lt;p&gt;2.0 Betas&lt;/p&gt;
&lt;p&gt;2.0 Final&lt;/p&gt;
&lt;p&gt;Marc Boorshtein&lt;br /&gt;
IDRS Team Leader&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>New RML tags added, in CVS</title><link href="https://sourceforge.net/p/idrs/news/2002/04/new-rml-tags-added-in-cvs/" rel="alternate"/><published>2002-04-13T16:21:47Z</published><updated>2002-04-13T16:21:47Z</updated><author><name>Marc Boorshtein</name><uri>https://sourceforge.net/u/bigman921/</uri></author><id>https://sourceforge.netf1e2f4f7300b9c23995406ca6e7de0cfadf2a3ea</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Hello everyone.  I am prooud to announce that two new RML tags have been&lt;br /&gt;
added to help working with HTML forms.&lt;/p&gt;
&lt;p&gt;The first tag is the &amp;lt;yesno&amp;gt; tag.  This tag allows for the easy creation&lt;br /&gt;
of Yes/No option choices.  The tag not only generates a set of input&lt;br /&gt;
tags, but also allows for the value of that tag to come from a request&lt;br /&gt;
parameter, a database field or an object property.  It will also allow&lt;br /&gt;
for the value to allways come from a parameter first when it should be&lt;br /&gt;
comming from a db or property.  This makes form processesing much easier&lt;br /&gt;
as there is no need to manually check or load form values.  for&lt;br /&gt;
instance, the following tag:&lt;/p&gt;
&lt;p&gt;&amp;lt;$ x=0; $&amp;gt;&lt;br /&gt;
&amp;lt;yesno name=&amp;quot;= \&amp;amp;quot;yesnodb\&amp;amp;quot; + x &amp;quot; srcType=&amp;quot;db&amp;quot; paramFirst=&amp;quot;true&amp;quot;&lt;br /&gt;
&amp;gt;yesno.val&amp;lt;/yesno&amp;gt;&lt;/p&gt;
&lt;p&gt;with no request parameter named &amp;quot;yesnodb0&amp;quot; and a value of &amp;quot;true&amp;quot; for&lt;br /&gt;
yesno.val will generate :&lt;/p&gt;
&lt;p&gt;&amp;lt;input type=&amp;quot;radio&amp;quot; name=&amp;quot;yesnodb0&amp;quot; value=&amp;quot;true&amp;quot; CHECKED&amp;gt; Yes &amp;lt;input&lt;br /&gt;
type=&amp;quot;radio&amp;quot; name=&amp;quot;yesnodb0&amp;quot; value=&amp;quot;false&amp;quot;&amp;gt; No&lt;/p&gt;
&lt;p&gt;and with a request parameter named &amp;quot;yesnodb0&amp;quot; set to &amp;quot;false&amp;quot; and a value&lt;br /&gt;
of &amp;quot;true&amp;quot; for yesno.val will generate :&lt;/p&gt;
&lt;p&gt;&amp;lt;input type=&amp;quot;radio&amp;quot; name=&amp;quot;yesnodb0&amp;quot; value=&amp;quot;true&amp;quot; &amp;gt; Yes &amp;lt;input&lt;br /&gt;
type=&amp;quot;radio&amp;quot; name=&amp;quot;yesnodb0&amp;quot; value=&amp;quot;false&amp;quot; CHECKED&amp;gt; No&lt;/p&gt;
&lt;p&gt;As you can see, this is the first set towordsmaking form handling a two&lt;br /&gt;
page process, one for entering information and one for handling it.  If&lt;br /&gt;
there is an error, the request can simply be forwarded back to the entry&lt;br /&gt;
page with all the entered data intact.&lt;/p&gt;
&lt;p&gt;The second tag is alonf the same lines, but is more gener purpose.  THis&lt;br /&gt;
tag is the &amp;lt;formInput&amp;gt; tag.  It acts like &amp;lt;yesno&amp;gt;, except that it allows&lt;br /&gt;
for the generation of any input type -&lt;br /&gt;
text,password,checkbox,radio,hidden and textarea - all with the same&lt;br /&gt;
type of functionality of &amp;lt;yesno&amp;gt;.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>IDRS Preparing New Website</title><link href="https://sourceforge.net/p/idrs/news/2002/04/idrs-preparing-new-website/" rel="alternate"/><published>2002-04-02T23:30:57Z</published><updated>2002-04-02T23:30:57Z</updated><author><name>Marc Boorshtein</name><uri>https://sourceforge.net/u/bigman921/</uri></author><id>https://sourceforge.net59b796721dbfbc2e82693caef4caf0933908a213</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;The IDRS is currently building a new website.  This new web site will have a better interface and new information.  check out the continuing project at &lt;a href="http://idrs.sourceforge.net/newsite/"&gt;http://idrs.sourceforge.net/newsite/&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>new online CVS</title><link href="https://sourceforge.net/p/idrs/news/2000/12/new-online-cvs/" rel="alternate"/><published>2000-12-02T16:26:45Z</published><updated>2000-12-02T16:26:45Z</updated><author><name>Marc Boorshtein</name><uri>https://sourceforge.net/u/bigman921/</uri></author><id>https://sourceforge.netc6d4689bd6b22d92ad5d7f39c67f8736a8b7938d</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;The current development code for the idrs is now in cvs!  The module is Idrs (not IDRS or idrs, sorry).&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>IDRS 1.5 Released!</title><link href="https://sourceforge.net/p/idrs/news/2000/11/idrs-15-released/" rel="alternate"/><published>2000-11-15T07:44:20Z</published><updated>2000-11-15T07:44:20Z</updated><author><name>Marc Boorshtein</name><uri>https://sourceforge.net/u/bigman921/</uri></author><id>https://sourceforge.net9760ca0e2d888bdecf9b2d25bb5d8e08938de338</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;The latest IDRS is out!!! Included in the new version is improved stability, data input, embeded scripting and a whole bunch of other features!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.sourceforge.net/projects/idrs/"&gt;http://www.sourceforge.net/projects/idrs/&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>IDRS 1.4 Released</title><link href="https://sourceforge.net/p/idrs/news/2000/08/idrs-14-released/" rel="alternate"/><published>2000-08-21T04:31:29Z</published><updated>2000-08-21T04:31:29Z</updated><author><name>Marc Boorshtein</name><uri>https://sourceforge.net/u/bigman921/</uri></author><id>https://sourceforge.net793a9f3b71b739fc5ae3bc759bb48f613337a72e</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;IDRS 1.4 has been released!  This latest version includes the ability to break up data over multiple pages and the ability to use java classes inside of RML pages.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>IDRS 1.4 this week</title><link href="https://sourceforge.net/p/idrs/news/2000/08/idrs-14-this-week/" rel="alternate"/><published>2000-08-01T13:14:14Z</published><updated>2000-08-01T13:14:14Z</updated><author><name>Marc Boorshtein</name><uri>https://sourceforge.net/u/bigman921/</uri></author><id>https://sourceforge.net858fffad2cce3cfec6f65d0814fefc8c1ecc61ad</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;I knwo it's been a while since the last release of the IDRS, but this one is worth the wait.  The new IDRS has two new major features:  the ability to extend functionality through java classes and the ability to setup automatic data-caching and paging.  The next release will be later this week.&lt;/p&gt;
&lt;p&gt;Marc Boorshtein&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>New Release: IDRS_1.3</title><link href="https://sourceforge.net/p/idrs/news/2000/06/new-release-idrs13/" rel="alternate"/><published>2000-06-12T02:36:56Z</published><updated>2000-06-12T02:36:56Z</updated><author><name>Marc Boorshtein</name><uri>https://sourceforge.net/u/bigman921/</uri></author><id>https://sourceforge.net6dd42629cb02336fb88c7746de49bd888c7d24ca</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;The newest release of the IDRS is here!&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Next Release Comming Soon</title><link href="https://sourceforge.net/p/idrs/news/2000/06/next-release-comming-soon/" rel="alternate"/><published>2000-06-09T02:22:11Z</published><updated>2000-06-09T02:22:11Z</updated><author><name>Marc Boorshtein</name><uri>https://sourceforge.net/u/bigman921/</uri></author><id>https://sourceforge.netb0b07fcd1e7454c60dad26baef635729f966b8a4</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;The next release of the IDRS will come next monday (6/12/00)&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>