Skip to content
Snippets Groups Projects
Commit 3ad12166 authored by tjc's avatar tjc
Browse files

set style to raw as default is now html

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@2137 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 55c1fba6
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/DbfetchEntrySource.java,v 1.2 2004-12-03 17:47:04 tjc Exp $
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/DbfetchEntrySource.java,v 1.3 2004-12-16 10:44:33 tjc Exp $
*/
package uk.ac.sanger.artemis.components;
......@@ -44,7 +44,7 @@ import javax.swing.*;
* server.
*
* @author Kim Rutherford <kmr@sanger.ac.uk>
* @version $Id: DbfetchEntrySource.java,v 1.2 2004-12-03 17:47:04 tjc Exp $
* @version $Id: DbfetchEntrySource.java,v 1.3 2004-12-16 10:44:33 tjc Exp $
**/
public class DbfetchEntrySource
......@@ -90,26 +90,26 @@ public class DbfetchEntrySource
final LogReadListener read_event_logger = new LogReadListener (embl_id);
final EntryInformation entry_information =
new SimpleEntryInformation (Options.getArtemisEntryInformation ());
new SimpleEntryInformation(Options.getArtemisEntryInformation ());
// final MessageDialog message_frame =
// new MessageDialog (getFrame (),
// "reading entry - please wait", false);
final String url_string =
"http://www.ebi.ac.uk/cgi-bin/dbfetch?db=EMBL&id=" + embl_id;
"http://www.ebi.ac.uk/cgi-bin/dbfetch?db=EMBL&id=" + embl_id +"&style=raw";
final Document url_document =
DocumentFactory.makeDocument (url_string);
DocumentFactory.makeDocument(url_string);
try
{
final uk.ac.sanger.artemis.io.Entry new_embl_entry =
DocumentEntryFactory.makeDocumentEntry (entry_information,
url_document,
read_event_logger);
DocumentEntryFactory.makeDocumentEntry(entry_information,
url_document,
read_event_logger);
if (read_event_logger.seenMessage ()) {
if (read_event_logger.seenMessage()) {
final YesNoDialog yes_no_dialog =
new YesNoDialog (frame,
"there were warnings while reading - view now?");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment