Changeset 4483
- Timestamp:
- Sep 7, 2008, 11:59:52 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r4473 r4483 26 26 27 27 <project 28 name="BASE 2"28 name="BASE" 29 29 default="dev" 30 30 basedir="." 31 31 > 32 32 <description> 33 Build file for BASE 2. The main targets are ('dev' is default):33 Build file for BASE. The main targets are ('dev' is default): 34 34 35 35 Clean up: -
trunk/config/dist/web.xml
r4474 r4483 30 30 <display-name>BASE</display-name> 31 31 <description> 32 The BASE 2web application.32 The BASE web application. 33 33 </description> 34 34 -
trunk/credits.txt
r4473 r4483 3 3 Copyright (C) 2006 Jari Hakkinen 4 4 Copyright (C) 2007 Johan Enell, Jari Hakkinen, Nicklas Nordborg 5 Copyright (C) 2008 Jari Hakkinen, Nicklas Nordborg 5 6 6 7 Files are copyright by their respective authors. The contributions to … … 37 38 38 39 39 The list of people who has contributed to the BASE 2 project, in40 alphabetical order:40 The list of people who has contributed to the BASE version 2 project, 41 in alphabetical order: 41 42 42 43 Samuel Andersson -
trunk/lib/docbook/preprocess/dweiss-docbook-extensions.dtd
r3944 r4483 66 66 <!ENTITY % gbStart "<guibutton>"> 67 67 <!ENTITY % gbEnd "</guibutton>"> 68 <!-- Most used buttons in BASE 2-->68 <!-- Most used buttons in BASE --> 69 69 <!ENTITY gbBrowse "%gbStart;Browse%gbEnd;"> 70 70 <!ENTITY gbCancel "%gbStart;Cancel%gbEnd;"> -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/Page.java
r4478 r4483 3 3 4 4 Copyright (C) 2005 Nicklas Nordborg 5 Copyright (C) 2006 Johan Enell, Jari Hakkinen, Nicklas Nordborg5 Copyright (C) 2006, 2008 Johan Enell, Jari Hakkinen, Nicklas Nordborg 6 6 7 7 This file is part of BASE - BioArray Software Environment. … … 43 43 <pre> 44 44 <%@ taglib prefix="base" uri="/WEB-INF/base.tld" %> 45 <base:page type="default" title="Welcome to BASE 2">45 <base:page type="default" title="Welcome to BASE"> 46 46 <base:head> 47 47 <!-- scripts and other head things... --> -
trunk/src/clients/web/net/sf/basedb/clients/web/taglib/table/package.html
r4478 r4483 4 4 Copyright (C) 2005 Nicklas Nordborg 5 5 Copyright (C) 2006 Jari Hakkinen, Gregory Vincic 6 Copyright (C) 2007, 2008 Jari Hakkinen 6 7 7 8 This file is part of BASE - BioArray Software Environment. … … 64 65 <tbl:cell column="newsDate">2005-04-08</tbl:cell> 65 66 <tbl:cell column="endDate">2005-04-15</tbl:cell> 66 <tbl:cell column="description">Welcome to your new BASE 2server.</tbl:cell>67 <tbl:cell column="description">Welcome to your new BASE server.</tbl:cell> 67 68 </tbl:row> 68 69 <tbl:row> -
trunk/src/core/net/sf/basedb/core/Application.java
r4479 r4483 4 4 Copyright (C) 2005 Samuel Andersson, Johan Enell, Jari Hakkinen, Nicklas Nordborg 5 5 Copyright (C) 2006 Johan Enell, Jari Hakkinen, Nicklas Nordborg 6 Copyright (C) 2007 Johan Enell, Nicklas Nordborg 6 Copyright (C) 2007 Johan Enell, Jari Hakkinen, Nicklas Nordborg, Martin Svensson 7 Copyright (C) 2006 Jari Hakkinen, Nicklas Nordborg 7 8 8 9 This file is part of BASE - BioArray Software Environment. … … 255 256 256 257 /** 257 Get the BASE 2core logger.258 Get the BASE core logger. 258 259 */ 259 260 static org.apache.log4j.Logger getLogger() … … 263 264 264 265 /** 265 Get the host name of the server running BASE 2.266 Get the host name of the server running BASE. 266 267 */ 267 268 public static String getHostName() -
trunk/src/core/net/sf/basedb/core/Install.java
r4479 r4483 5 5 Copyright (C) 2006 Johan Enell, Jari Hakkinen, Nicklas Nordborg, Martin Svensson, Gregory Vincic 6 6 Copyright (C) 2007 Johan Enell, Nicklas Nordborg, Martin Svensson 7 Copyright (C) 2008 Jari Hakkinen, Nicklas Nordborg, Martin Svensson 7 8 8 9 This file is part of BASE - BioArray Software Environment. … … 581 582 // News 582 583 if (progress != null) progress.display((int)(20*progress_factor), "--Creating news..."); 583 createNews("BASE 2 Server installed", "Welcome to your new BASE 2server.");584 createNews("BASE Server installed", "Welcome to your new BASE server."); 584 585 585 586 // Plugins -
trunk/src/core/net/sf/basedb/core/package.html
r4479 r4483 3 3 4 4 Copyright (C) 2005 Nicklas Nordborg 5 Copyright (C) 2006 Jari Hakkinen5 Copyright (C) 2006, 2007, 2008 Jari Hakkinen 6 6 7 7 This file is part of BASE - BioArray Software Environment. … … 25 25 <body> 26 26 <p> 27 This package contains the core business logic of BASE 2.27 This package contains the core business logic of BASE. 28 28 </p> 29 29 -
trunk/src/core/net/sf/basedb/util/zip/FilePacker.java
r4479 r4483 3 3 4 4 Copyright (C) 2007 Nicklas Nordborg, Martin Svensson 5 Copyright (C) 2008 Jari Hakkinen 5 6 6 7 This file is part of BASE - BioArray Software Environment. … … 31 32 /** 32 33 This interface should be implemented by classes that can pack files and directories 33 from BASE 2file system. The implementing class must also have a public no-argument34 from BASE file system. The implementing class must also have a public no-argument 34 35 constructor. The implementing classes are used by the 35 36 {@link net.sf.basedb.plugins.PackedFileExporter} plug-in. Each class should -
trunk/www/info/about.jsp
r4476 r4483 82 82 <font size="-1"> 83 83 © 2005, 2006, 2007, 2008 The BASE team <br/> See 84 <a href=http://base.thep.lu.se/browser/trunk/credits.txt>BASE 285 credits</a> for contribution information.84 <a href=http://base.thep.lu.se/browser/trunk/credits.txt>BASE 85 version 2 credits</a> for contribution information. 86 86 87 87 <p> BASE is released under the
Note: See TracChangeset
for help on using the changeset viewer.