[758] | 1 | $Id: README 760 2008-09-15 16:31:41Z jari $ |
---|
| 2 | |
---|
| 3 | = About `se.lu.onk.BaseFile` = |
---|
| 4 | |
---|
| 5 | The `se.lu.onk.BaseFile` package is a utility class used by many of |
---|
| 6 | the se.lu.onk plug-ins. Simply add the jar file supplied by this |
---|
| 7 | package to the classpath for the plug-in you want to run or |
---|
| 8 | compile. See specific plug-ins for further details on how to use this |
---|
| 9 | package. |
---|
| 10 | |
---|
| 11 | `se.lu.onk.BaseFile` is free software. See the file license.txt for |
---|
| 12 | copying conditions. |
---|
| 13 | |
---|
| 14 | The package was created by Johan Enell and is currently maintained by |
---|
| 15 | Jari Häkkinen. |
---|
| 16 | |
---|
[760] | 17 | |
---|
[758] | 18 | == Downloading == |
---|
| 19 | |
---|
| 20 | `se.lu.onk.BaseFile` can be obtained from |
---|
| 21 | |
---|
| 22 | http://baseplugins.thep.lu.se/wiki/PluginDownload |
---|
| 23 | |
---|
| 24 | |
---|
| 25 | == Installing and compiling == |
---|
| 26 | |
---|
[760] | 27 | If you downloaded a binary package, read the instructions for the |
---|
[758] | 28 | plug-in you are going to use together with this package. The plug-in |
---|
| 29 | instructions should explain how to use this package. |
---|
| 30 | |
---|
| 31 | If you want to modify and compile this package you must check it out |
---|
| 32 | from the repository, change to the package directory and issue `ant`; |
---|
| 33 | {{{ |
---|
| 34 | svn co http://baseplugins.thep.lu.se/svn/plugins/base1/se.lu.onk.BaseFile/trunk se.lu.onk.BaseFile |
---|
| 35 | cd se.lu.onk.BaseFile |
---|
| 36 | ant |
---|
| 37 | }}} |
---|
| 38 | This will create a jar file `dist/basefile.jar`. If you want to change |
---|
| 39 | a released version you should replace `trunk` with `tags/release` in |
---|
| 40 | the above example. |
---|
| 41 | |
---|
| 42 | |
---|
| 43 | == Bug Reporting == |
---|
| 44 | |
---|
| 45 | You can report `se.lu.onk.BaseFile` bugs on |
---|
| 46 | |
---|
| 47 | http://baseplugins.thep.lu.se/newticket |
---|
| 48 | |
---|
| 49 | Use user `base` and password `base`. |
---|
| 50 | |
---|
| 51 | |
---|
| 52 | == Subversion Access == |
---|
| 53 | |
---|
| 54 | The `se.lu.onk.BaseFile` source repository is available via anonymous |
---|
| 55 | subversion access, issue: |
---|
| 56 | |
---|
| 57 | `svn co http://baseplugins.thep.lu.se/svn/plugins/base1/se.lu.onk.BaseFile/trunk se.lu.onk.BaseFile` |
---|
| 58 | |
---|
[760] | 59 | There is no guarantees about the contents or quality of the latest code |
---|
[758] | 60 | in the subversion repository: it is not unheard of for code that is |
---|
| 61 | known to be broken to be committed to the repository. Use at your own |
---|
[760] | 62 | risk. You may prefer to check out a released version instead. |
---|
[758] | 63 | |
---|
| 64 | |
---|
| 65 | ---------------------------------------------------------------------- |
---|
| 66 | {{{ |
---|
| 67 | Copyright (C) 2008 Jari Häkkinen |
---|
| 68 | |
---|
| 69 | This file is part of the se.lu.onk.BaseFile package, a utility package |
---|
| 70 | for reading files generated by BASE. The package is available at |
---|
| 71 | http://baseplugins.thep.lu.se/ and BASE web site is |
---|
| 72 | http://base.thep.lu.se |
---|
| 73 | |
---|
| 74 | This is free software; you can redistribute it and/or modify it under |
---|
| 75 | the terms of the GNU General Public License as published by the Free |
---|
| 76 | Software Foundation; either version 3 of the License, or (at your |
---|
| 77 | option) any later version. |
---|
| 78 | |
---|
| 79 | This package is distributed in the hope that it will be useful, but |
---|
| 80 | WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 81 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 82 | General Public License for more details. |
---|
| 83 | |
---|
| 84 | You should have received a copy of the GNU General Public License |
---|
| 85 | along with this package. If not, see <http://www.gnu.org/licenses/>. |
---|
| 86 | }}} |
---|