Author: Christian Lopes
Date: 2010-01-28 12:06:19 -0800 (Thu, 28 Jan 2010)
New Revision: 19064
Added:
cytoscapeweb/trunk/website/src/file/release_notes/
cytoscapeweb/trunk/website/src/file/release_notes/release_notes_0.3.1.txt
cytoscapeweb/trunk/website/src/file/release_notes/release_notes_0.3.txt
Removed:
cytoscapeweb/trunk/website/jsdoc/metadata/release.txt
Modified:
cytoscapeweb/trunk/website/build.xml
cytoscapeweb/trunk/website/src/css/content/demo.css
cytoscapeweb/trunk/website/src/js/jquery/plugins/jquery.menu.js
cytoscapeweb/trunk/website/src/php/content/contact.php
cytoscapeweb/trunk/website/src/php/content/documentation/api.php
Log:
Fixed the demo's menu width.
Changed the API builder to have more than one release note version in the
source folder.
Modified: cytoscapeweb/trunk/website/build.xml
===================================================================
--- cytoscapeweb/trunk/website/build.xml 2010-01-28 16:15:03 UTC (rev
19063)
+++ cytoscapeweb/trunk/website/build.xml 2010-01-28 20:06:19 UTC (rev
19064)
@@ -8,7 +8,7 @@
This file should be created by each user when he/she needs to
override particular values.
Do NOT place it under version control.
-->
- <property file="build.properties"/>
+ <property file="local.properties"/>
<property file="default.properties"/>
@@ -39,7 +39,8 @@
<format property="date.now" pattern="yyyyMMddHHmm"/>
</tstamp>
- <target name="build" depends="files, api">
+ <!-- Build the website so it can be deployed -->
+ <target name="build" depends="files, api">
<delete dir="${build.dir}" />
<mkdir dir="${build.dir}"/>
<zip destfile="${build.dir}/cwsite_v${build.version}_${date.now}.zip"
@@ -49,6 +50,7 @@
/>
</target>
+ <!-- Generate the API Documentation for the latest version of Cytoscape
Web -->
<target name="api">
<!-- Recreate the temporary folder -->
<delete dir="${temp.dir}" />
@@ -100,18 +102,16 @@
<fileset dir="${temp.dir}/symbols"
includes="**.Visualization.php"/>
</copy>
- <!-- Create release info and date files -->
+ <!-- Create the release date file -->
<copy todir="${api.dir}" file="${jsdoc.dir}/metadata/date.txt" />
<move file="${api.dir}/date.txt" tofile="${api.dir}/.date"/>
<replace file="${api.dir}/.date" token="${date}"
value="${date.today}"/>
- <copy todir="${api.dir}" file="${jsdoc.dir}/metadata/release.txt" />
- <move file="${api.dir}/release.txt" tofile="${api.dir}/.release_info"/>
-
<!-- Delete the temp folder -->
<delete dir="${temp.dir}" />
</target>
+ <!-- Grab required files from the other sub-projects -->
<target name="files">
<!-- Copy Flash files -->
<copy todir="${swf.dir}" overwrite="true">
Deleted: cytoscapeweb/trunk/website/jsdoc/metadata/release.txt
===================================================================
--- cytoscapeweb/trunk/website/jsdoc/metadata/release.txt 2010-01-28
16:15:03 UTC (rev 19063)
+++ cytoscapeweb/trunk/website/jsdoc/metadata/release.txt 2010-01-28
20:06:19 UTC (rev 19064)
@@ -1 +0,0 @@
-<p>This is the first alpha release of Cytoscape Web. Give it a try, and let
us know if you have any feedback or issues.</p>
\ No newline at end of file
Modified: cytoscapeweb/trunk/website/src/css/content/demo.css
===================================================================
--- cytoscapeweb/trunk/website/src/css/content/demo.css 2010-01-28 16:15:03 UTC
(rev 19063)
+++ cytoscapeweb/trunk/website/src/css/content/demo.css 2010-01-28 20:06:19 UTC
(rev 19064)
@@ -31,8 +31,9 @@
.ui-menu-title > label { padding: 0.25em 0.5em 0.25em 0.5em; }
.ui-menu-item > label { padding: 0.1em; }
.ui-menu-item label { color: #000000; z-index: 2; }
- .ui-menu-item { cursor: pointer !important; width: 100%; float: left;
clear: both; border-top: 1px solid #eaeaea !important; border-bottom: 1px solid
transparent !important; }
+ .ui-menu-item { cursor: pointer !important; width: 100%; float: left;
clear: both; border-top: 1px solid #eaeaea !important; border-bottom: 1px solid
#fafafa !important; }
.ui-top-menu > .ui-menu-item-first { border-top-right-radius: 0;
border-top-left-radius: 0; -moz-border-radius-topleft: 0;
-moz-border-radius-topright: 0; -webkit-border-top-right-radius: 0;
-webkit-border-top-left-radius: 0; }
+ .ui-top-menu li label { white-space: nowrap; }
.ui-menu-item-last { }
.ui-state-active.ui-menu-item { background: #0b94b1 !important;
border-color: #0b94b1 !important; border-left-color: #097d95 !important; }
.ui-state-active.ui-menu-item > label { color: #ffffff; }
Added: cytoscapeweb/trunk/website/src/file/release_notes/release_notes_0.3.1.txt
===================================================================
--- cytoscapeweb/trunk/website/src/file/release_notes/release_notes_0.3.1.txt
(rev 0)
+++ cytoscapeweb/trunk/website/src/file/release_notes/release_notes_0.3.1.txt
2010-01-28 20:06:19 UTC (rev 19064)
@@ -0,0 +1,9 @@
+<p>
+ This release contains only a few changes:
+ <ul>
+ <li>Added a default Passthrough Mapper for edge labels, making it
easier to display them
+ (you just need to have an edge attribute called
<code>"label"</code> in the network data and
+ set <code>edgeLabelsVisible</code> to <code>true</code>).</li>
+ <li>The minimum zoom value was decreased from 10% to 1%.</li>
+ </ul>
+</p>
\ No newline at end of file
Added: cytoscapeweb/trunk/website/src/file/release_notes/release_notes_0.3.txt
===================================================================
--- cytoscapeweb/trunk/website/src/file/release_notes/release_notes_0.3.txt
(rev 0)
+++ cytoscapeweb/trunk/website/src/file/release_notes/release_notes_0.3.txt
2010-01-28 20:06:19 UTC (rev 19064)
@@ -0,0 +1 @@
+<p>This is the first alpha release of Cytoscape Web. Give it a try, and let
us know if you have any feedback or issues.</p>
\ No newline at end of file
Modified: cytoscapeweb/trunk/website/src/js/jquery/plugins/jquery.menu.js
===================================================================
--- cytoscapeweb/trunk/website/src/js/jquery/plugins/jquery.menu.js
2010-01-28 16:15:03 UTC (rev 19063)
+++ cytoscapeweb/trunk/website/src/js/jquery/plugins/jquery.menu.js
2010-01-28 20:06:19 UTC (rev 19064)
@@ -124,10 +124,10 @@
show( li.children("ul") );
li.children("ul").each(function(){
- var maxWidth = options.menuItemMaxWidth;
+ var maxWidth = 0;
var height = 0;
- $(this).css("width", maxWidth);
+ $(this).css("width", options.menuItemMaxWidth);
$(this).children("li").each(function(){
$(this).css("display", "block").css("width", "auto");
Modified: cytoscapeweb/trunk/website/src/php/content/contact.php
===================================================================
--- cytoscapeweb/trunk/website/src/php/content/contact.php 2010-01-28
16:15:03 UTC (rev 19063)
+++ cytoscapeweb/trunk/website/src/php/content/contact.php 2010-01-28
20:06:19 UTC (rev 19064)
@@ -82,13 +82,11 @@
<div class="right">
- <h1>Guidelines</h1>
-
- <h2>Discussion Group</h2>
+ <h1>Discussion Group</h1>
<p>The Cytoscape Web <a
href="http://groups.google.com/group/cytoscapeweb-discuss"
rel="external">discussion group</a> is the main forum for users to share
questions, solutions and new ideas.</p>
- <h2>Reporting software bugs</h2>
+ <h1>Reporting software bugs</h1>
<p>The best way to report a bug to us is to <a
href="http://cbio.mskcc.org/cytoscape/bugs" rel="external">use our bug
tracker</a>. However, if you find it difficult to use the bug tracker, feel
free to use the contact form on this page to contact us about the bug.</p>
@@ -100,7 +98,7 @@
<li>a description of the bug as compared to the behaviour you
expected.</li>
</ul>
- <h2>Other feedback</h2>
+ <h1>Other feedback</h1>
<p>Any other feedback that you provide is greatly appreciated. To make
sure that we get the most out of your feedback, please make sure to provide
your name and email address so we can get back to you if need be.</p>
Modified: cytoscapeweb/trunk/website/src/php/content/documentation/api.php
===================================================================
--- cytoscapeweb/trunk/website/src/php/content/documentation/api.php
2010-01-28 16:15:03 UTC (rev 19063)
+++ cytoscapeweb/trunk/website/src/php/content/documentation/api.php
2010-01-28 20:06:19 UTC (rev 19064)
@@ -31,7 +31,7 @@
$api->date = $date;
}
- $release_info_file = fopen("$dir/$version_dir/.release_info",
"r");
+ $release_info_file = fopen("file/release_notes/release_notes_"
. $api->version . ".txt", "r");
if( $release_info_file ){
$release_info = "";
while ( ! feof($release_info_file) ) {
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.