Skip to content

Commit

Permalink
closing release 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tomekkup committed Nov 5, 2012
1 parent 8709f8e commit f911c86
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 87 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -6,7 +6,7 @@ Helenos is a web based GUI Cassandra client that helps you to explore data and m

## Current version

1.2-beta1
1.2

## Download

Expand Down
18 changes: 18 additions & 0 deletions nb-configuration.xml
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<project-shared-configuration>
<!--
This file contains additional configuration written by modules in the NetBeans IDE.
The configuration is intended to be shared among all the users of project and
therefore it is assumed to be part of version control checkout.
Without this configuration present, some functionality in the IDE may be limited or fail altogether.
-->
<properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1">
<!--
Properties that influence various parts of the IDE, especially code formatting and the like.
You can copy and paste the single properties, into the pom.xml file and the IDE will pick them up.
That way multiple projects can share the same settings (useful for formatting rules for example).
Any value defined here will override the pom.xml file value but is only applicable to the current project.
-->
<netbeans.compile.on.save>all</netbeans.compile.on.save>
</properties>
</project-shared-configuration>
4 changes: 3 additions & 1 deletion pom.xml
Expand Up @@ -5,7 +5,7 @@

<groupId>com.kuprowski</groupId>
<artifactId>helenos</artifactId>
<version>1.2-beta1</version>
<version>1.2</version>
<packaging>war</packaging>
<name>helenos</name>
<developers>
Expand Down Expand Up @@ -260,6 +260,7 @@
<artifactId>exec-maven-plugin</artifactId>
<version>${maven.plugin.exec.version}</version>
<executions>
<!--
<execution>
<id>clean-frontend</id>
<phase>clean</phase>
Expand All @@ -272,6 +273,7 @@
<commandlineArgs>generate.py clean</commandlineArgs>
</configuration>
</execution>
-->
<execution>
<id>build-frontend</id>
<phase>prepare-package</phase>
Expand Down
2 changes: 2 additions & 0 deletions run.bat
@@ -0,0 +1,2 @@
SET MAVEN_OPTS=-Xrunjdwp:transport=dt_socket,address=4000,server=y,suspend=n
mvn -o tomcat7:run
1 change: 1 addition & 0 deletions src/main/frontend/build.bat
@@ -0,0 +1 @@
generate.py build-withver
Expand Up @@ -26,6 +26,7 @@ qx.Class.define("helenos.components.tab.browse.PredicatePage",
__keyFromTF : null,
__keyToTF : null,
__keyMode : 'predicate',
__keysLimit : null,

__nameStartTF : null,
__nameEndTF : null,
Expand All @@ -35,6 +36,7 @@ qx.Class.define("helenos.components.tab.browse.PredicatePage",
__rangeColNamesCP : null,
__rangeFromToCP : null,
__reversedCB : null,
__colsLimit : null,

_tree : null,

Expand Down
Expand Up @@ -10,15 +10,14 @@ DEPRECATED !!!
************************************************************************ */
qx.Class.define("helenos.types.query.AbstractQuery",
{



members : {
keyspace : null,
columnFamily : null,
keyClass : null,
nameClass : null
},

construct : function()
{
this.base(arguments);
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/web.xml
Expand Up @@ -25,7 +25,7 @@
</context-param>
<context-param>
<param-name>db.url</param-name>
<param-value>jdbc:h2:~/helenos;INIT=CREATE SCHEMA IF NOT EXISTS helenos AUTHORIZATION helenos\;CREATE TABLE IF NOT EXISTS CLUSTERCONFIG(ALIAS VARCHAR(128) PRIMARY KEY,HOSTS VARCHAR(255), CLUSTERNAME VARCHAR(255), ACTIVE BOOLEAN)\;</param-value>
<param-value>jdbc:h2:~/helenos;INIT=CREATE SCHEMA IF NOT EXISTS helenos AUTHORIZATION helenos\;CREATE TABLE IF NOT EXISTS CLUSTERCONFIG(ALIAS VARCHAR(128) PRIMARY KEY,HOSTS VARCHAR(255), CLUSTERNAME VARCHAR(255), ACTIVE BOOLEAN);DB_CLOSE_ON_EXIT=FALSE\;</param-value>
</context-param>
<context-param>
<param-name>db.user</param-name>
Expand Down
81 changes: 0 additions & 81 deletions todo.txt

This file was deleted.

0 comments on commit f911c86

Please sign in to comment.