You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by pa...@apache.org on 2009/09/06 23:34:16 UTC

svn commit: r811901 - in /felix/trunk/shell.tui: NOTICE doc/apache-felix-shell-tui.html doc/changelog.txt pom.xml

Author: pauls
Date: Sun Sep  6 21:34:16 2009
New Revision: 811901

URL: http://svn.apache.org/viewvc?rev=811901&view=rev
Log:
Update dependencies for release

Modified:
    felix/trunk/shell.tui/NOTICE
    felix/trunk/shell.tui/doc/apache-felix-shell-tui.html
    felix/trunk/shell.tui/doc/changelog.txt
    felix/trunk/shell.tui/pom.xml

Modified: felix/trunk/shell.tui/NOTICE
URL: http://svn.apache.org/viewvc/felix/trunk/shell.tui/NOTICE?rev=811901&r1=811900&r2=811901&view=diff
==============================================================================
--- felix/trunk/shell.tui/NOTICE (original)
+++ felix/trunk/shell.tui/NOTICE Sun Sep  6 21:34:16 2009
@@ -1,5 +1,5 @@
 Apache Felix Shell Textual Interface
-Copyright 2006-2008 The Apache Software Foundation
+Copyright 2006-2009 The Apache Software Foundation
 
 I. Included Software
 

Modified: felix/trunk/shell.tui/doc/apache-felix-shell-tui.html
URL: http://svn.apache.org/viewvc/felix/trunk/shell.tui/doc/apache-felix-shell-tui.html?rev=811901&r1=811900&r2=811901&view=diff
==============================================================================
--- felix/trunk/shell.tui/doc/apache-felix-shell-tui.html (original)
+++ felix/trunk/shell.tui/doc/apache-felix-shell-tui.html Sun Sep  6 21:34:16 2009
@@ -25,14 +25,16 @@
 </p></li></ul> </div>
     <div class="main">
 <h1><a name="ApacheFelixShellTUI-ApacheFelixShellTUI"></a>Apache Felix Shell TUI</h1>
+<p>The Apache Felix Shell TUI (Textual User Interface) sub-project provides a simple, text-based user interface for the <a href="/confluence/display/FELIX/Apache+Felix+Shell+Service" title="Apache Felix Shell Service">Apache Felix Shell Service</a>. This bundle is not of much use by itself and should always be used in conjunction with the shell service bundle. The shell service and shell TUI bundles are used by the standard Felix launcher to provide a means for interacting with the launched Felix framework instance. The shell TUI bundle is not required to use the shell service; it is possible to use it programmatically, via a GUI interface, or a remote access interface.</p>
+
+<p>Shell TUI supports one configuration property:</p>
+
+<ul>
+	<li><tt>shell.tui.checkinput</tt> &#45; This is a simple workaround for a JRE bug which can appear when running Shell TUI inside Eclipse; the default value is <tt>false</tt>. Note that if this workaround is enabled, when running from the command line under Windows, character input is not echoed back to the screen.</li>
+</ul>
+
+
+<p>To set this property, add it to the <tt>conf/config.properties</tt> file of your Felix installation.</p>
 
-<p>The Apache Felix Shell TUI (Textual User Interface) sub-project provides a simple, text-based user interface for the <a href="http://felix.apache.org/site/apache-felix-shell-service.html" title="Apache Felix Shell Service">Apache Felix Shell Service</a>.
-This bundle is not of much use by itself and should always be used in
-conjunction with the shell service bundle. The shell service and shell
-TUI bundles are used by the standard Felix launcher to provide a means
-for interacting with the launched Felix framework instance. The shell
-TUI bundle is not required to use the shell service; it is possible to
-use a GUI interface or remote access interface for interacting with the
-shell service.</p>
     </div>
   </body></html>

Modified: felix/trunk/shell.tui/doc/changelog.txt
URL: http://svn.apache.org/viewvc/felix/trunk/shell.tui/doc/changelog.txt?rev=811901&r1=811900&r2=811901&view=diff
==============================================================================
--- felix/trunk/shell.tui/doc/changelog.txt (original)
+++ felix/trunk/shell.tui/doc/changelog.txt Sun Sep  6 21:34:16 2009
@@ -1,3 +1,13 @@
+Changes from 1.2.0 to 1.4.0
+---------------------------
+
+** Bug
+    * [FELIX-619] - Shell.TUI causes "new java.io.ServerSocket()" to hang
+    * [FELIX-1137] - [PATCH] Shell TUI pom has incorrect Bundle-DocURL tag
+
+** Improvments
+    * Update to shell 1.4.0
+
 Changes from 1.0.2 to 1.2.0
 ---------------------------
 

Modified: felix/trunk/shell.tui/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/shell.tui/pom.xml?rev=811901&r1=811900&r2=811901&view=diff
==============================================================================
--- felix/trunk/shell.tui/pom.xml (original)
+++ felix/trunk/shell.tui/pom.xml Sun Sep  6 21:34:16 2009
@@ -19,8 +19,8 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
     <groupId>org.apache.felix</groupId>
-    <artifactId>felix</artifactId>
-    <version>1.0.4</version>
+    <artifactId>felix-parent</artifactId>
+    <version>1.2.0</version>
     <relativePath>../pom/pom.xml</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
@@ -33,12 +33,12 @@
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.osgi.core</artifactId>
-      <version>1.2.0</version>
+      <version>1.4.0</version>
     </dependency>
     <dependency>
       <groupId>${pom.groupId}</groupId>
       <artifactId>org.apache.felix.shell</artifactId>
-      <version>1.3.0-SNAPSHOT</version>
+      <version>1.4.0</version>
     </dependency>
   </dependencies>
   <build>