forked from BIOFAB/Studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Further development of the Sequence Checker. Added the RNA Folder and…
… Device Editor. I'm disabling access to the Device Editor for now.
- Loading branch information
Cesar A. Rodriguez
committed
Jun 4, 2011
1 parent
6ddc7af
commit 2fb088b
Showing
30 changed files
with
446 additions
and
169 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,5 @@ [email protected] | |
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. | ||
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. | ||
nbproject/build-impl.xml.data.CRC32=60fd2e8b | ||
nbproject/build-impl.xml.script.CRC32=52ab0b3c | ||
nbproject/build-impl.xml.stylesheet.CRC32=8419264d@1.24.3.1 | ||
nbproject/build-impl.xml.script.CRC32=58f56806 | ||
nbproject/build-impl.xml.stylesheet.CRC32=8ca9f0e6@1.31.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project-private xmlns="http://www.netbeans.org/ns/project-private/1"/> | ||
<project-private xmlns="http://www.netbeans.org/ns/project-private/1"> | ||
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/1"/> | ||
</project-private> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* | ||
* | ||
* | ||
*/ | ||
|
||
Ext.define('DeviceEditor', | ||
{ | ||
extend: 'Ext.panel.Panel', | ||
title: 'Device Editor', | ||
layout: 'fit', | ||
tpl: '', | ||
closable: true, | ||
autoScroll: true, | ||
html: '<iframe style="overflow:auto;width:100%;height:100%;" frameborder="0" src="http://j5.jbei.org/bin/deviceeditor.pl"></iframe>', | ||
|
||
constructor: function() { | ||
|
||
this.items = []; | ||
this.callParent(); | ||
} | ||
} | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* | ||
* | ||
* | ||
*/ | ||
|
||
Ext.define('RnaFolder', | ||
{ | ||
extend: 'Ext.panel.Panel', | ||
title: 'RNA Folder', | ||
layout: 'fit', | ||
tpl: '', | ||
closable: true, | ||
autoScroll: true, | ||
html: '<iframe style="overflow:auto;width:100%;height:100%;" frameborder="0" src="http://biofab.jbei.org/webtools/rnafold.html"></iframe>', | ||
|
||
constructor: function() { | ||
|
||
this.items = []; | ||
this.callParent(); | ||
} | ||
} | ||
); |
Oops, something went wrong.