Index: trunk/grails-app/views/appConfig/create.gsp
===================================================================
--- trunk/grails-app/views/appConfig/create.gsp	(revision 264)
+++ trunk/grails-app/views/appConfig/create.gsp	(revision 265)
@@ -31,5 +31,14 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:appConfigInstance,field:'name','errors')}">
-                                    <input type="text" maxlength="50" id="name" name="name" value="${fieldValue(bean:appConfigInstance,field:'name')}"/>
+                                    <input type="text" maxlength="100" id="name" name="name" value="${fieldValue(bean:appConfigInstance,field:'name')}"/>
+                                </td>
+                            </tr> 
+                        
+                            <tr class="prop">
+                                <td valign="top" class="name">
+                                    <label for="value">Value:</label>
+                                </td>
+                                <td valign="top" class="value ${hasErrors(bean:appConfigInstance,field:'value','errors')}">
+                                    <textarea rows="5" cols="40" name="value">${fieldValue(bean:appConfigInstance, field:'value')}</textarea>
                                 </td>
                             </tr> 
@@ -40,14 +49,5 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:appConfigInstance,field:'description','errors')}">
-                                    <input type="text" maxlength="100" id="description" name="description" value="${fieldValue(bean:appConfigInstance,field:'description')}"/>
-                                </td>
-                            </tr> 
-                        
-                            <tr class="prop">
-                                <td valign="top" class="name">
-                                    <label for="value">Value:</label>
-                                </td>
-                                <td valign="top" class="value ${hasErrors(bean:appConfigInstance,field:'value','errors')}">
-                                    <input type="text" id="value" name="value" value="${fieldValue(bean:appConfigInstance,field:'value')}"/>
+                                    <textarea rows="5" cols="40" name="description">${fieldValue(bean:appConfigInstance, field:'description')}</textarea>
                                 </td>
                             </tr> 
Index: trunk/grails-app/views/appConfig/edit.gsp
===================================================================
--- trunk/grails-app/views/appConfig/edit.gsp	(revision 264)
+++ trunk/grails-app/views/appConfig/edit.gsp	(revision 265)
@@ -34,5 +34,14 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:appConfigInstance,field:'name','errors')}">
-                                    <input type="text" maxlength="50" id="name" name="name" value="${fieldValue(bean:appConfigInstance,field:'name')}"/>
+                                    <input type="text" maxlength="100" id="name" name="name" value="${fieldValue(bean:appConfigInstance,field:'name')}"/>
+                                </td>
+                            </tr> 
+                        
+                            <tr class="prop">
+                                <td valign="top" class="name">
+                                    <label for="value">Value:</label>
+                                </td>
+                                <td valign="top" class="value ${hasErrors(bean:appConfigInstance,field:'value','errors')}">
+                                    <textarea rows="5" cols="40" name="value">${fieldValue(bean:appConfigInstance, field:'value')}</textarea>
                                 </td>
                             </tr> 
@@ -43,14 +52,5 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:appConfigInstance,field:'description','errors')}">
-                                    <input type="text" maxlength="100" id="description" name="description" value="${fieldValue(bean:appConfigInstance,field:'description')}"/>
-                                </td>
-                            </tr> 
-                        
-                            <tr class="prop">
-                                <td valign="top" class="name">
-                                    <label for="value">Value:</label>
-                                </td>
-                                <td valign="top" class="value ${hasErrors(bean:appConfigInstance,field:'value','errors')}">
-                                    <input type="text" id="value" name="value" value="${fieldValue(bean:appConfigInstance,field:'value')}"/>
+                                    <textarea rows="5" cols="40" name="description">${fieldValue(bean:appConfigInstance, field:'description')}</textarea>
                                 </td>
                             </tr> 
Index: trunk/grails-app/views/appConfig/list.gsp
===================================================================
--- trunk/grails-app/views/appConfig/list.gsp	(revision 264)
+++ trunk/grails-app/views/appConfig/list.gsp	(revision 265)
@@ -25,7 +25,7 @@
                    	        <g:sortableColumn property="name" title="Name" />
                         
+                   	        <g:sortableColumn property="value" title="Value" />
+                        
                    	        <g:sortableColumn property="description" title="Description" />
-                        
-                   	        <g:sortableColumn property="value" title="Value" />
                         
                         </tr>
@@ -39,7 +39,7 @@
                             <td>${fieldValue(bean:appConfigInstance, field:'name')}</td>
                         
+                            <td>${fieldValue(bean:appConfigInstance, field:'value')}</td>
+                        
                             <td>${fieldValue(bean:appConfigInstance, field:'description')}</td>
-                        
-                            <td>${fieldValue(bean:appConfigInstance, field:'value')}</td>
                         
                         </tr>
Index: trunk/grails-app/views/appConfig/show.gsp
===================================================================
--- trunk/grails-app/views/appConfig/show.gsp	(revision 264)
+++ trunk/grails-app/views/appConfig/show.gsp	(revision 265)
@@ -37,14 +37,14 @@
                     
                         <tr class="prop">
-                            <td valign="top" class="name">Description:</td>
+                            <td valign="top" class="name">Value:</td>
                             
-                            <td valign="top" class="value">${fieldValue(bean:appConfigInstance, field:'description')}</td>
+                            <td valign="top" class="value">${fieldValue(bean:appConfigInstance, field:'value')}</td>
                             
                         </tr>
                     
                         <tr class="prop">
-                            <td valign="top" class="name">Value:</td>
+                            <td valign="top" class="name">Description:</td>
                             
-                            <td valign="top" class="value">${fieldValue(bean:appConfigInstance, field:'value')}</td>
+                            <td valign="top" class="value">${fieldValue(bean:appConfigInstance, field:'description')}</td>
                             
                         </tr>
