You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(141) |
Sep
(184) |
Oct
(159) |
Nov
(77) |
Dec
(114) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(212) |
Feb
(302) |
Mar
(323) |
Apr
(360) |
May
(302) |
Jun
(392) |
Jul
(299) |
Aug
(858) |
Sep
(499) |
Oct
(489) |
Nov
(324) |
Dec
(438) |
2008 |
Jan
(449) |
Feb
(388) |
Mar
(811) |
Apr
(583) |
May
(949) |
Jun
(1431) |
Jul
(943) |
Aug
(527) |
Sep
(576) |
Oct
(440) |
Nov
(1046) |
Dec
(658) |
2009 |
Jan
(259) |
Feb
(192) |
Mar
(495) |
Apr
(2322) |
May
(2023) |
Jun
(1387) |
Jul
(722) |
Aug
(771) |
Sep
(167) |
Oct
(142) |
Nov
(384) |
Dec
(884) |
2010 |
Jan
(344) |
Feb
(82) |
Mar
(248) |
Apr
(341) |
May
(389) |
Jun
(289) |
Jul
(19) |
Aug
(478) |
Sep
(274) |
Oct
(431) |
Nov
(322) |
Dec
(207) |
2011 |
Jan
(125) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: John C. <jc...@us...> - 2006-08-21 02:53:43
|
Update of /cvsroot/tolven/tolvenWEB/src/org/tolven/web In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv6482/src/org/tolven/web Modified Files: MenuAction.java Log Message: working time-series graph for Lipids only. requires jfreechart which is included in the download and build scripts. May need to be added to Eclipse for tolvenWEB. Index: MenuAction.java =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/src/org/tolven/web/MenuAction.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** MenuAction.java 21 Aug 2006 00:20:06 -0000 1.15 --- MenuAction.java 21 Aug 2006 02:53:39 -0000 1.16 *************** *** 309,316 **** for ( MenuData md : menuData ) { TimeSeries sx; ! if ("triglycerides".equals(md.getString02())) { sx = s1; } ! if ("low-density lipoprotein (LDL)".equals(md.getString02())) { sx = s2; } else continue; --- 309,318 ---- for ( MenuData md : menuData ) { TimeSeries sx; ! System.out.println("MD Item: " + md.getId()); ! String result = md.getString02(); ! if ("triglycerides".equals(result)) { sx = s1; } ! else if (result!=null && result.startsWith("low-density")) { sx = s2; } else continue; *************** *** 318,325 **** cal.setTime( md.getDate01() ); Month m = new Month( cal.get(GregorianCalendar.MONTH)+1, cal.get(GregorianCalendar.YEAR)); - sx.add(m, md.getPqValue01()); System.out.println( "Graph Data: " + m.getMonth() + "/" + m.getYear() + "=" + md.getPqValue01()); } ! TimeSeriesCollection dataset = new TimeSeriesCollection(); dataset.addSeries(s1); --- 320,327 ---- cal.setTime( md.getDate01() ); Month m = new Month( cal.get(GregorianCalendar.MONTH)+1, cal.get(GregorianCalendar.YEAR)); System.out.println( "Graph Data: " + m.getMonth() + "/" + m.getYear() + "=" + md.getPqValue01()); + sx.addOrUpdate(m, md.getPqValue01()); } ! System.out.println("Preparing Dataset"); TimeSeriesCollection dataset = new TimeSeriesCollection(); dataset.addSeries(s1); *************** *** 327,330 **** --- 329,333 ---- dataset.setDomainIsPointsInTime(true); + System.out.println("Done preparing Dataset"); return dataset; *************** *** 334,337 **** --- 337,341 ---- public String getGraphURL() throws IOException { if (graphURL==null) { + System.out.println("Preparing Graph"); JFreeChart chart = createChart(createDataset("echr:patient:results:lab")); String filename = ServletUtilities.saveChartAsPNG(chart, 600, 400, (HttpSession)FacesContext.getCurrentInstance().getExternalContext().getSession(false)); |
From: John C. <jc...@us...> - 2006-08-21 01:47:53
|
Update of /cvsroot/tolven/tolvenWEB/web/five In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv11351/web/five Added Files: labGraph.xhtml Log Message: Add new pane to graph lab results --- NEW FILE: labGraph.xhtml --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:c="http://java.sun.com/jstl/core"> <head> <title>Graph Lab Results</title> </head> <body> <ui:composition> <div id="#{menu.elementLabel}X"> <h:form id="sxsx" onsubmit="return ajaxSubmit2(this);"> <h:outputText value="Create a Graph"/> <h:commandButton action="#{menu.createGraph}" value="Graph"/> </h:form> <div> <h:graphicImage value="#{menu.graphURL}" rendered="#{menu.graphURL!=null}" width="600" height="400"/> </div> </div> </ui:composition> </body> </html> |
From: John C. <jc...@us...> - 2006-08-21 01:46:54
|
Update of /cvsroot/tolven/tolvenWEB/web/five/test In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10938/web/five/test Modified Files: genPerson.xhtml Log Message: Div tag required for ajaxSubmit2 to work Index: genPerson.xhtml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/five/test/genPerson.xhtml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** genPerson.xhtml 20 Aug 2006 06:49:45 -0000 1.5 --- genPerson.xhtml 21 Aug 2006 01:46:51 -0000 1.6 *************** *** 33,36 **** --- 33,37 ---- // ]]> </script> + <div id="genPatDiv"> <form action="#"> Filter (last,first): <input name="personFilter" type="text" id="personFilter" /> *************** *** 85,88 **** --- 86,90 ---- </h:form> <h:messages errorClass="errorMsg" infoClass="infoMsg" warnClass="warnMsg" fatalClass="fatalMsg"/> + </div> </ui:composition> </body> |
From: John C. <jc...@us...> - 2006-08-21 01:45:54
|
Update of /cvsroot/tolven/tolvenWEB/web/five In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10526/web/five Modified Files: lab.xhtml paneDispatch.xhtml Added Files: graphLipids.xhtml Log Message: Add chart for lipids only --- NEW FILE: graphLipids.xhtml --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:c="http://java.sun.com/jstl/core"> <head> <title>Graph Lab Results</title> </head> <body> <ui:composition> <div id="#{menu.elementLabel}X"> <p>Graph of lipds</p> <h:graphicImage value="#{menu.graphURL}" width="600" height="400"/> </div> </ui:composition> </body> </html> Index: paneDispatch.xhtml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/five/paneDispatch.xhtml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** paneDispatch.xhtml 1 Aug 2006 15:47:07 -0000 1.3 --- paneDispatch.xhtml 21 Aug 2006 01:45:51 -0000 1.4 *************** *** 11,20 **** <ui:composition template="../templates/paneTemplate.xhtml"> <ui:define name="body"> - <c:if test="#{menu.targetMenuPath.node=='help'}"> - <ui:include src="customize.xhtml"/> - </c:if> - <c:if test="#{menu.targetMenuPath.node!='help'}"> <ui:include src="#{menu.thisMenu.template}"/> - </c:if> </ui:define> </ui:composition> --- 11,15 ---- Index: lab.xhtml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/five/lab.xhtml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** lab.xhtml 20 Aug 2006 06:48:33 -0000 1.4 --- lab.xhtml 21 Aug 2006 01:45:51 -0000 1.5 *************** *** 40,44 **** </form> <div style="border: 1px solid #E1E1E1;width:100%;"> ! <table id="#{menu.element}LG_header" > <thead> <tr> --- 40,44 ---- </form> <div style="border: 1px solid #E1E1E1;width:100%;"> ! <table id="#{menu.element}LG_header" cellpadding="2" > <thead> <tr> *************** *** 53,57 **** </thead> </table> ! <table id="#{menu.element}LG" > <tbody> <tr><td align="right" width="125px">-</td><td width="210px">-</td><td width="210px">-</td><td align="right" width="100px">-</td><td width="75px">-</td><td width="75px">-</td><td width="100px">-</td></tr> --- 53,57 ---- </thead> </table> ! <table id="#{menu.element}LG" cellpadding="2"> <tbody> <tr><td align="right" width="125px">-</td><td width="210px">-</td><td width="210px">-</td><td align="right" width="100px">-</td><td width="75px">-</td><td width="75px">-</td><td width="100px">-</td></tr> |
From: John C. <jc...@us...> - 2006-08-21 01:45:12
|
Update of /cvsroot/tolven/tolvenWEB/web/WEB-INF In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10434/web/WEB-INF Modified Files: web.xml faces-config.xml Log Message: Add graph servlet Index: faces-config.xml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/WEB-INF/faces-config.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** faces-config.xml 17 Aug 2006 18:29:19 -0000 1.11 --- faces-config.xml 21 Aug 2006 01:45:06 -0000 1.12 *************** *** 398,401 **** --- 398,415 ---- <to-view-id>/five/test/patientGen.xhtml</to-view-id> </navigation-case> + <navigation-case> + <from-action>#{menu.createGraph}</from-action> + <from-outcome>success</from-outcome> + <to-view-id>/five/labGraph.xhtml</to-view-id> + </navigation-case> + </navigation-rule> + + <navigation-rule> + <from-view-id>/five/labGraph.xhtml</from-view-id> + <navigation-case> + <from-action>#{menu.createGraph}</from-action> + <from-outcome>success</from-outcome> + <to-view-id>/five/labGraph.xhtml</to-view-id> + </navigation-case> </navigation-rule> Index: web.xml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/WEB-INF/web.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** web.xml 31 Jul 2006 02:09:28 -0000 1.6 --- web.xml 21 Aug 2006 01:45:06 -0000 1.7 *************** *** 115,120 **** <url-pattern>*.async</url-pattern> </servlet-mapping> <session-config><session-timeout> ! 30 </session-timeout> </session-config> --- 115,131 ---- <url-pattern>*.async</url-pattern> </servlet-mapping> + + <servlet> + <servlet-name>Graph Servlet</servlet-name> + <servlet-class>org.jfree.chart.servlet.DisplayChart</servlet-class> + <load-on-startup>7</load-on-startup> + </servlet> + <servlet-mapping> + <servlet-name>Graph Servlet</servlet-name> + <url-pattern>*.graph</url-pattern> + </servlet-mapping> + <session-config><session-timeout> ! 300 </session-timeout> </session-config> |
From: John C. <jc...@us...> - 2006-08-21 01:00:14
|
Update of /cvsroot/tolven/tolven/template In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv23930/template Modified Files: ant-build.template Log Message: Add jfreechar library location Index: ant-build.template =================================================================== RCS file: /cvsroot/tolven/tolven/template/ant-build.template,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** ant-build.template 21 Aug 2006 00:18:09 -0000 1.37 --- ant-build.template 21 Aug 2006 00:59:58 -0000 1.38 *************** *** 97,100 **** --- 97,101 ---- jsf.location=${tolven.location}/lib/jsf jdbc.location=${tolven.location}/lib/jdbc + jfreechart.location=${tolven.location}/lib/jfreechart # Ant Build Filtering: |
From: John C. <jc...@us...> - 2006-08-21 00:46:31
|
Update of /cvsroot/tolven/tolvenWEB/web/ajax In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv18605/web/ajax Modified Files: paneDispatch.xhtml Log Message: Remove obsolete refernce to help. Index: paneDispatch.xhtml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/web/ajax/paneDispatch.xhtml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** paneDispatch.xhtml 31 Jul 2006 02:09:27 -0000 1.1 --- paneDispatch.xhtml 21 Aug 2006 00:46:28 -0000 1.2 *************** *** 11,20 **** <ui:composition template="../templates/paneTemplate.xhtml"> <ui:define name="body"> - <c:if test="#{menu.targetMenuPath.node=='help'}"> - <ui:include src="customize.xhtml"/> - </c:if> - <c:if test="#{menu.targetMenuPath.node!='help'}"> <ui:include src="../five/#{menu.thisMenu.template}"/> - </c:if> </ui:define> </ui:composition> --- 11,15 ---- |
From: John C. <jc...@us...> - 2006-08-21 00:43:26
|
Update of /cvsroot/tolven/tolvenEJB In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv17330 Added Files: lgpl.txt notice.txt Log Message: Legal notices added --- NEW FILE: lgpl.txt --- GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the library's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. <signature of Ty Coon>, 1 April 1990 Ty Coon, President of Vice That's all there is to it! --- NEW FILE: notice.txt --- Notices and licences for dependent components can be found in tolven/lib/<component>. |
From: John C. <jc...@us...> - 2006-08-21 00:43:20
|
Update of /cvsroot/tolven/tolven In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv17319 Added Files: lgpl.txt notice.txt Log Message: Legal notices added --- NEW FILE: lgpl.txt --- GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the library's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. <signature of Ty Coon>, 1 April 1990 Ty Coon, President of Vice That's all there is to it! --- NEW FILE: notice.txt --- Notices and licences for dependent components can be found in tolven/lib/<component>. |
From: John C. <jc...@us...> - 2006-08-21 00:43:16
|
Update of /cvsroot/tolven/tolvenWEB In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv17309 Added Files: lgpl.txt notice.txt Log Message: Legal notices added --- NEW FILE: lgpl.txt --- GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the library's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. <signature of Ty Coon>, 1 April 1990 Ty Coon, President of Vice That's all there is to it! --- NEW FILE: notice.txt --- Notices and licences for dependent components can be found in tolven/lib/<component>. |
From: John C. <jc...@us...> - 2006-08-21 00:41:45
|
Update of /cvsroot/tolven/tolvenWEB In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv16452 Modified Files: build.xml Log Message: Add JFreeChart component Index: build.xml =================================================================== RCS file: /cvsroot/tolven/tolvenWEB/build.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** build.xml 12 Jul 2006 05:06:59 -0000 1.6 --- build.xml 21 Aug 2006 00:41:42 -0000 1.7 *************** *** 24,27 **** --- 24,30 ---- <include name="client/*.jar"/> </fileset> + <fileset dir="${jfreechart.location}"> + <include name="*.jar"/> + </fileset> <pathelement location="${junit.location}/junit.jar"/> </path> *************** *** 42,64 **** <target name="packaging" depends="compile" description="tolvenWEB.war"> <jar destfile="${tolvenWEB.location}/build/tolvenWEB.war"> ! <zipfileset dir="${facelets.location}" prefix="WEB-INF/lib"> ! <include name="jsf-facelets.jar"/> ! </zipfileset> ! <zipfileset dir="${facelets.location}/lib" prefix="WEB-INF/lib"> ! <include name="el-api.jar"/> ! <include name="el-ri.jar"/> ! </zipfileset> ! <zipfileset dir="${jsf.location}/lib" prefix="WEB-INF/lib"> ! <include name="jsf-api.jar"/> ! <include name="jsf-impl.jar"/> ! </zipfileset> ! <zipfileset dir="${commons-fileupload.location}" prefix="WEB-INF/lib"> ! <include name="*.jar"/> ! </zipfileset> ! <zipfileset dir="${commons-io.location}" prefix="WEB-INF/lib"> ! <include name="*.jar"/> ! </zipfileset> ! <zipfileset dir="${tolvenWEB.location}/build/bin" prefix="WEB-INF/classes" includes="**/*.class"/> ! <zipfileset dir="${tolvenWEB.location}/web"/> </jar> </target> --- 45,70 ---- <target name="packaging" depends="compile" description="tolvenWEB.war"> <jar destfile="${tolvenWEB.location}/build/tolvenWEB.war"> ! <zipfileset dir="${facelets.location}" prefix="WEB-INF/lib"> ! <include name="jsf-facelets.jar"/> ! </zipfileset> ! <zipfileset dir="${facelets.location}/lib" prefix="WEB-INF/lib"> ! <include name="el-api.jar"/> ! <include name="el-ri.jar"/> ! </zipfileset> ! <zipfileset dir="${jsf.location}/lib" prefix="WEB-INF/lib"> ! <include name="jsf-api.jar"/> ! <include name="jsf-impl.jar"/> ! </zipfileset> ! <zipfileset dir="${commons-fileupload.location}" prefix="WEB-INF/lib"> ! <include name="*.jar"/> ! </zipfileset> ! <zipfileset dir="${jfreechart.location}" prefix="WEB-INF/lib"> ! <include name="*.jar"/> ! </zipfileset> ! <zipfileset dir="${commons-io.location}" prefix="WEB-INF/lib"> ! <include name="*.jar"/> ! </zipfileset> ! <zipfileset dir="${tolvenWEB.location}/build/bin" prefix="WEB-INF/classes" includes="**/*.class"/> ! <zipfileset dir="${tolvenWEB.location}/web"/> </jar> </target> |
From: John C. <jc...@us...> - 2006-08-21 00:32:32
|
Update of /cvsroot/tolven/tolven/lib/jfreechart In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12247/lib/jfreechart Added Files: jcommon-1.0.0.jar jfreechart-1.0.1.jar licence-LGPL.txt README.txt Log Message: Add jfreechart --- NEW FILE: jfreechart-1.0.1.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: jcommon-1.0.0.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: README.txt --- ******************************* * JFREECHART: Version 1.0.1 * ******************************* 27 January 2006 (C)opyright 2000-2006, by Object Refinery Limited and Contributors. ----------------- 1. INTRODUCTION ----------------- JFreeChart is a free chart library for the Java(tm) platform. It runs on the Java 2 Platform (JDK 1.3 or later) and uses the Java 2D API for drawing. JFreeChart is licensed under the terms of the GNU Lesser General Public Licence (LGPL). A copy of the licence is included in the distribution. Please note that JFreeChart is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Please refer to the licence for details. ------------------- 2. LATEST VERSION ------------------- The latest version of this class library can be obtained from: http://www.jfree.org/jfreechart/ If you have an comments, suggestions or bugs to report, please post a message in the JFreeChart forum. ----------------- 3. DOCUMENTATION ----------------- You can download installation instructions (jfreechart-1.0.1-install.pdf) from the JFreeChart home page or the project page on SourceForge. Further documentation for JFreeChart (the JFreeChart Developer Guide) is available to purchase from by Object Refinery Limited, a company owned and operated by David Gilbert (the original author of JFreeChart). For more information, please see: http://www.object-refinery.com/jfreechart/guide.html Sales of the JFreeChart Developer Guide are an important source of funding for the project. Please help us to continue developing free software. API documentation files in HTML format are available on-line. If you wish to keep a local copy of the API files, you can regenerate them directly from the source code. You can do this using the 'gjdoc' or 'javadoc' utilities directly, or with the Ant script (build.xml) included in the distribution. ----------------- 4. DEPENDENCIES ----------------- JFreeChart has the following dependencies: (a) JDK 1.3 or higher - JFreeChart requires the Java2D and Collections APIs, so it definitely won't work with JDK 1.1 (with a small amount of effort you can get it to compile and run with JDK 1.2). If you are using JFreeChart to create applets, this means that you cannot rely on the JVM integrated with Microsoft's Internet Explorer - your users will need to have the Java 2 plug-in installed. Most other browsers (e.g. Firefox, Mozilla, Netscape, Konqueror) support JDK 1.4 or JDK 1.5. (b) JCommon - version 1.0.0 or later. The runtime jar file is included in the JFreeChart distribution. You can obtain the complete source code for JCommon from: http://www.jfree.org/jcommon/ JCommon is licensed under the terms of the GNU Lesser General Public Licence. (c) GNU JAXP - a free implementation of the standard XML processing APIs for Java. http://www.gnu.org/software/classpathx/jaxp/ Classes in the org.jfree.data.xml package require this library, or another JAXP v1.1 compliant parser. The gnujaxp.jar file (from the gnujaxp-1.0beta1.zip distribution) is included with JFreeChart. GNU JAXP is licensed under the terms of the GNU General Public License with an additional library exception. THIS LIBRARY IS ONLY REQUIRED BY JFREECHART IF YOU ARE USING JDK 1.3. (d) servlet.jar - classes in the org.jfree.chart.servlet package require this file. The JFreeChart distribution includes the servlet.jar file distributed with Tomcat 4.1.31. Applicable license terms are published at: http://java.sun.com/products/servlet/LICENSE (e) JUnit - a unit testing framework (the junit.jar runtime file is included in the distribution). JUnit is licensed under the terms of the IBM Common Public License. You can find out more about JUnit and/or download the latest version from: http://www.junit.org The JUnit tests included with JFreeChart have been created using JUnit 3.8. ----------------- 5. GNU CLASSPATH ----------------- GNU Classpath is a project to create a free, clean-room implementation of the standard Java(tm) class libraries: http://www.gnu.org/software/classpath/ We test JFreeChart against GNU Classpath-based runtimes to monitor the progress being made by the GNU Classpath hackers. Currently the Graphics2D implementation is insufficient for running JFreeChart, but in most other respects GNU Classpath is "ready" for JFreeChart. Indeed, by utilising bindings for the Cairo vector graphics library, it is possible to get JFreeChart running: http://www.object-refinery.com/jfreechart/free.html If you have time and/or expertise, please consider helping out with the GNU Classpath project. -------------------- 6. ANT BUILD SCRIPT -------------------- An Ant build script (build.xml) is included in the distribution. This is the same script that is used to create the JFreeChart distribution. For more information about Ant: http://ant.apache.org/ Please note that you will need to obtain the servlet.jar file (see the DEPENDENCIES section above) before running the Ant script. ------------------------ 7. THE DEMO APPLICATION ------------------------ A demo application that shows a selection of the charts that can be generated is included in the JFreeChart distribution. To run the demo (using JDK 1.3 or later), use the following command: java -jar jfreechart-1.0.1-demo.jar The complete source code for the demo application is available for download when you purchase the JFreeChart Developer Guide. --------------- 8. LIMITATIONS --------------- JFreeChart has some known limitations that will hopefully be addressed in the future: - with the XYPlot class, when the bounds of the range axis are calculated automatically, all of the data is used, not just the subset that is visible on the chart; - some renderers do not respect the series visibility flags yet; - the chart property editors (accessible by right-clicking on the chart panel) are horribly out of date and probably shouldn't be used; - item labels (if displayed) are not taken into account for the automatically calculated axis range. As a workaround, you can increase the axis margins; - tick labels on a DateAxis that uses a SegmentedTimeline can be problematic; - there is no support for writing charts to JPEG format on JDK 1.3. JPEG is not a good format anyway, it is usually better to use PNG format. If there are other items that you think should be listed here, please post a bug report. --------------- 9. WHAT's NEW --------------- A list of changes in recent versions: 1.0.1 : (27-Jan-2006) - primarily a bug fix release, see the NEWS and ChangeLog files for details. 1.0.0 : (2-Dec-2005) - the first stable release of the JFreeChart class library, all future releases in the 1.0.x series will aim to maintain backward compatibility with this release; - see the ChangeLog file for a detailed list of changes. 1.0.0-rc3 : (28-Nov-2005) - the third "release candidate" for version 1.0.0, this release fixes some issues with the 1.0.0-rc2 release (mainly concerning packaging of resource bundles for localisation). - if no significant problems are reported in the next few days, the 1.0.0 "final" release will be posted on 2-Dec-2005. 1.0.0-rc2 : (25-Nov-2005) - the second "release candidate" for version 1.0.0. If no problems are reported, 1.0.0 "final" will be released on 2-Dec-2005. - see the ChangeLog file for a detailed list of changes in this release. 1.0.0-rc1 : (2-Jun-2005) - this is a "release candidate" for version 1.0.0. If no significant API problems are reported, this release will be re-released as version 1.0.0. - see CHANGELOG.txt for further details. 1.0.0-pre2 : (10-Mar-2005) - see CHANGELOG.txt for further details. 1.0.0-pre1 : (29-Nov-2004) - see CHANGELOG.txt for further details. 0.9.21 : (9-Sep-2004) - added new axes: PeriodAxis and ModuloAxis. - split org.jfree.data and org.jfree.chart.renderer into subpackages for 'category' and 'xy' charts. - Sun PNG encoder is now used, if available. - a new demo application makes it easier to preview the chart types that JFreeChart can create. - added a new series visibility flag to the AbstractRenderer class. - added support for GradientPaint in interval markers. - see CHANGELOG.txt for further details. 0.9.20 : (7-Jun-2004) - primarily bug fixes, see CHANGELOG.txt for further details. 0.9.19 : (28-May-2004) - added methods to XYDataset that return double primitives; - removed distinction between "primary" and "secondary" datasets, renderers and axes; - added fixed legend item options to CategoryPlot and XYPlot; - legend changes by Barek Naveh; - removed Log4j dependency; - many, many bug fixes; - see CHANGELOG.txt for further details. 0.9.18 : (15-Apr-2004) - new legend anchor options; - fixed broken JPEG export; - fixed title size problems; - various other bug fixes; 0.9.17 : (26-Mar-2004) - pie chart enhancements for labelling, shading and multiple pie charts (2D or 3D) on a single plot; - new PolarPlot class added; - XYSeries can now be sorted or unsorted; - createBufferedImage() method can now scale charts; - domain and range markers now support intervals; - item labels are now supported by some XYItemRenderers; - tooltip and item label generators now use MessageFormat class; - added new XYBarDataset class; - added transparency support to PNG export; - numerous other small enhancements and bug fixes, see the CHANGELOG.txt file for more details; 0.9.16 : (09-Jan-2004) - this release contains bug fixes and some minor feature enhancements (title and category label wrapping, legend shape scaling, enhanced performance for the DefaultTableXYDataset class); - added Spanish localisation files; 0.9.15 : (28-Nov-2003) - the focus of this release is bug fixes - quite a number of issues have been resolved, please check the bug database for details; - added a new Wafer Map chart type; - added a cyclic axis; - added localisation files for _ru; 0.9.14 : (17-Nov-2003) - implemented zooming for the FastScatterPlot class; - added item label support for stacked bar charts, and new fall back options for item labels that don't fit within bars; - modified the CategoryAxis class to allow additional options for the alignment and rotation of category labels; - addition of the AxisState class, used in the drawing of axes to eliminate a bug when multiple threads draw the same axis simultaneously; - provided additional attributes in the DateTickUnit class to improve labelling on a segmented DateAxis; - added support for GradientPaint in bar charts; - updated the PNGEncoder; - fixes for tick label positioning on axes; - various Javadoc updates; - numerous bug fixes; 0.9.13 : (26-Sep-2003) - various enhancements to the stacked area XY charts; - added a completion indicator for the Gantt chart; - range and domain markers can now be placed in the foreground or the background; - more fixes for cloning and serialization; - fixed mouse event bug for combined charts; - fixed bugs in the PngEncoder class; - incorporated .properties files that were missing from the 0.9.12 distribution; 0.9.12 : (11-Sep-2003) - extended box-and-whisker plots to work with the CategoryPlot class as well as the XYPlot class (based on work by David Browning); - added a new LayeredBarRenderer (by Arnaud Lelievre); - added support for stacked area charts with the XYPlot class (thanks to Richard Atkinson); - improved HTML image map support (thanks to Richard Atkinson); - added localized resources for the chart property editors (thanks to Arnaud Lelievre). Current translations include French and Portugese (thanks to Eduardo Ramalho); - added facility for setting all rendering hints; - improved support for cloning and serialization; - fixed a bug in the XYSeries class that prevented the TableXYDataset from functioning correctly; - improved date axis labelling with segmented time lines; - fixed several bugs in the secondary dataset/axis/renderer code; - fixed bugs in the JDBCCategoryDataset class; - numerous other bug fixes; 0.9.11 : (8-Aug-2003) - added support for box-and-whisker plots, thanks to David Browning; - lots of bug fixes; API changes in this release are minimal and have been implemented using deprecation, so code written against 0.9.10 should recompile. 0.9.10 : (25-Jul-2003) - added support for multiple secondary axes, datasets and renderers; - minor feature enhancements and bug fixes; 0.9.9 : (10-Jul-2003) PLEASE NOTE THAT MAJOR CHANGES HAVE BEEN MADE IN THIS RELEASE AND ONE OR TWO FEATURES MAY BE BROKEN. PLEASE REPORT BUGS SO THEY CAN BE FIXED FOR THE NEXT RELEASE. - merged the HorizontalCategoryPlot and VerticalCategoryPlot classes, into the CategoryPlot class; - merged the horizontal and vertical axis classes; - merged the horizontal and vertical renderer classes; - CategoryPlot and XYPlot now support both horizontal and vertical orientation via the setOrientation(...) method; - merged horizontal and vertical methods in the ChartFactory class; - created new combined plot classes: CombinedDomainCategoryPlot, CombinedRangeCategoryPlot, CombinedDomainXYPlot and CombinedRangeXYPlot (these can all be drawn with a horizontal or vertical orientation); - Bill Kelemen has enhanced the DateAxis class to handle segmented timelines. This can be used, for example, to skip weekends for daily stock price charts; - Richard Atkinson has updated the ServletUtilities class; - Bryan Scott has added an XYDatasetTableModel class for presenting datasets in a JTable; - modified XYPlot to allow renderers to use multiple passes through the dataset; - added new XYDifferenceRenderer; - added support for colored bands between gridlines in XYPlot; - added new XYDrawableAnnotation class; - added a new attribute to control the order of dataset rendering in a CategoryPlot; - extended the value label mechanism for the renderers, to allow better (per series) control over label generation, positioning and visibility; - CategoryItemTooltipGenerator has been renamed CategoryItemLabelGenerator, since it is now being used to generated item labels as well as tooltips; - there is now support for horizontal stacked 3D bar charts; - added support for range markers against secondary axis in a CategoryPlot; - added labels to domain and range markers; - added a new HistogramDataset class (contributed by Jelai Wang) to make it easier to create histograms with JFreeChart; - moved the DrawingSupplier into the plot class, renderers now reference the supplier from the plot (parent plot for combined and overlaid charts). This means that renderers now share a single DrawingSupplier by default, which simplifies the creation of combined charts; - changed the ColorBarAxis classes that extended the NumberAxis class, to a single ColorBar class that wraps a ValueAxis (may have broken one or two things in the process); - Barak Naveh has contributed new classes MatrixSeries and MatrixSeriesCollection, along with demos: BubblyBubblesDemo.java and BubblyBubblesDemo2.java; - the TextTitle class now has a background paint attribute; - the StandardLegend class now generates LegendEntity objects if a ChartRenderingInfo instance is supplied to the draw(...) method; - extended the CategoryTextAnnotation class to take into account a category anchor point. See the SurveyResultsDemo.java application for an example; - included numerous bug fixes; 0.9.8 : (24-Apr-2003) - changed package naming from com.jrefinery.* to org.jfree.*; - added new TimePeriodValuesCollection class; - added MIME type code to ServletUtilities class; - reversed the order of PieDataset and KeyedValuesDataset in the class hierarchy; - reversed the order of CategoryDataset and KeyedValues2DDataset in the class hierarchy; - minor bug fixes; 0.9.7 : (11-Apr-2003) - added a new ValueDataset interface and DefaultValueDataset class, and changed the CompassPlot class to use this instead of MeterDataset; - added DataUtilities class, to support creation of Pareto charts (new demo included); - updated writeImageMap method as suggested by Xavier Poinsard (see Feature Request 688079); - implemented Serializable for most classes (this is likely to require further testing); - incorporated contour plot updates from David M. O'Donnell; - added new CategoryTextAnnotation and XYLineAnnotation classes; - added new HorizontalCategoryAxis3D class contributed by Klaus Rheinwald; Bug fixes: - added a workaround for JVM crash (a JDK bug) in pie charts with small sections (see bug report 620031); - fixed minor bug in HorizontalCategoryPlot constructor (see bug report 702248); - added code to ensure HorizontalNumberAxis3D is not drawn if it is not visible (see bug report 702466); - added small fix for suppressed chart change events (see bug report 690865); - added pieIndex parameter to tooltip and URL generators for pie charts; - fixed bug in getLastMillisecond() method for the Second class and the getFirstMillisecond() method for the Year class (picked up in JUnit tests); - in TextTitle, changed width used for relative spacing to fix bug 703050; 0.9.6 : (17-Feb-2003) Bug fixes: - fixed null pointer exception in DefaultCategoryDataset; - fixed update problem for PaintTable, StrokeTable and ShapeTable objects; - added methods to control colors in PiePlot (these were inadvertantly removed in the changes made for 0.9.5); - fixed auto-range update problem for secondary axis; - fixed missing category labels in the overlaid category plot; - fixed constructors for symbolic axes; - corrected error in Javadoc generation (Ant script); 0.9.5 : (6-Feb-2003) PLEASE NOTE THAT MAJOR CHANGES TO THE JFREECHART API HAVE BEEN MADE IN THIS RELEASE! - added support for secondary axes, datasets and renderers; - added new data interfaces (Value, Values, Values2D, KeyedValues and KeyedValues2D) and incorporated these into the existing PieDataset and CategoryDataset interfaces. - modified the CategoryDataset interface to be more symmetrical, data is organised in rows and columns (as before) but can now be accessed by row/column index or row/column key. - added support for reading PieDatasets and CategoryDatasets from XML files. - created separate packages for the axes (com.jrefinery.chart.axis), plots (com.jrefinery.chart.plot) and renderers (com.jrefinery.chart.renderer). - series attributes (paint, outline paint, stroke and shape) are now controlled by the renderer classes using lookup tables. Introduced the DrawingSupplier interface (and DefaultDrawingSupplier class) which is used to populate the lookup tables from a common source (necessary to coordinate complex combined charts). - the chart legend can now display shapes corresponding to series. - moved responsibility for category distribution to the CategoryAxis class, which tidies up the code in the CategoryPlot classes. - gridlines are now controlled by the CategoryPlot and XYPlot classes, not the axes (included in this change is the addition of gridlines for the CategoryPlot domain values). - changed the list of titles in the JFreeChart class to a title and a list of subtitles. - added new renderers for XYPlot (XYBubbleRenderer and YIntervalRenderer). - modified Gantt chart to display sub-tasks. - added ContourPlot class (still experimental) by David M. O'Donnell. - introduced new MovingAverage class. - ChartMouseEvent now includes source chart. - numerous bug fixes. - lots of Javadoc updates. 0.9.4 : (18-Oct-2002) Added a new stacked area chart (contributed by Dan Rivett) and a compass plot (contributed by Bryan Scott). Updated the ThermometerPlot class. Added a new XYDotRenderer for scatter plots. Modified combined and overlaid plots to use the series colors specified in the sub plot rather than the parent plot (this makes it easier to align the colors in the legend). Added Regression class for linear and power regressions. BasicTimeSeries can now automatically drop "old" data. Some clean-up work in the code for tooltips and the event listener mechanism. Richard Atkinson has incorporated some useful extensions for servlets/JSP developers. Ran Checkstyle and corrected issues reported for most classes. Checkstyle is a free utility that you can download from: http://checkstyle.sourceforge.net Fixed bugs and updated documentation. API changes include: - added tickMarkPaint to Axis constructor (also affects subclasses); - added getLegendItems() to Plot, and deprecated getLegendItemLabels(); - added getLegendItem(int) to XYItemRenderer and CategoryItemRenderer. - most 'protected' member variables have been changed to 'private'. 0.9.3 : (4-Sep-2002) Added multiple pie charts based on CategoryDataset. Updated logarithmic axes. Improved URL support for image map generation. Moved the com.jrefinery.data package from JCommon to JFreeChart. Added simple framework for chart annotations. Improved control over renderers. Duplicate x-values now allowed in XYSeries. Optional category label skipping in category axes. Added CategoriesPaint attribute to AbstractCategoryItemRenderer. Added new attributes to MeterPlot class. Updated 3D pie chart to observe start angle and direction, and also foreground alpha < 1.0. Improved Javadoc comments. New demo applications, including: AnnotationDemo1, EventFrequencyDemo, JDBCCategoryChartDemo, JDBCPieChartDemo, JDBCXYChartDemo and MinMaxCategoryPlotDemo. Bug fixes: - negative percentages on PiePlot. - added listener notification to setXXXAxis(...) methods. - fixed DomainInfo method name clash. - added DomainIsPointsInTime flag to TimeSeriesCollection to give better control over auto range on axis for time series charts. - axis margins for date axes are no longer hard-coded. - fix for ordering of categories in JdbcCategoryDataset. - added check for null axis in mouse click handler. The CVS repository at SourceForge has also been restructured to match the distribution directory layout. 0.9.2 : (28-Jun-2002) PiePlot now has startAngle and direction attributes. Added support for image map generation. Added a new Pie3DPlot class. Added label drawing code to bar renderers. Added optional range markers to horizontal number axis. Added bar clipping to avoid PRExceptions in bar charts. JFreeChartDemo has been modified and now includes examples of the dial and thermometer plots. Bug fixes: - auto range for VerticalNumberAxis when zero is forced to be included in the range. - fixed null pointer exception in StackedVerticalBarRenderer3D; - Added get/set methods for min/max chart drawing dimensions in ChartPanel; - HorizontalIntervalBarRenderer now handles single category; - verticalTickLabels now possible in HorizontalNumberAxis3D; - removed unnecessary imports; 0.9.1 : (14-Jun-2002) Bug fixes and Javadoc updates. - fixed auto range calculation for category plots; - fixed event notification for XYPlot; - fixed auto axis range for Gantt charts; - check for null popup menu in ChartPanel.mouseDragged; - new checks for null info in renderers; - range markers now drawn only if in visible axis range; 0.9.0 : (7-Jun-2002) New plots including an area chart, a horizontal 3D bar chart, a Gantt chart and a thermometer chart. Combination plots have been reworked to provide a simpler framework, and extends to allow category plots to be combined. There is now a facility to add a ChartMouseListener to the ChartPanel (formerly JFreeChartPanel). An interactive zooming feature (experimental at this point) is now available for XYPlots. A new Polish translation has been added. Several fixes have been applied to the default tool tip generators. A workaround has been added to fix the alignment between time series charts and the date axis. There are some improvements to the VerticalLogarithmicAxis class, and now a corresponding HorizontalLogarithmicAxis class. Additional demonstration applications have been added. Fixed the popup menu bug. 0.8.1 : (5-Apr-2002) Localised resource bundles for French, German and Spanish languages (thanks to Anthony Boulestreau, Thomas Meier and Hans-Jurgen Greiner for the translations). An area XY plot and meter chart contributed by Hari. Symbol charts contributed by Anthony Boulestreau. An improved CandleStickRenderer class from Sylvain Vieujot. Updated servlet code from Bryan Scott. XYItemRenderers now have a change listener mechanism and therefore do not have to be immutable. Additional demonstration applications for individual chart types. Minor bug fixes. 0.8.0 : (22-Mar-2002) All the category plots are now controlled through the one class (CategoryPlot) with plug-in renderers. Added a ResourceBundle for user interface items that require localisation. Added a logarithmic axis class contributed by Mike Duffy and some new JDBC and servlet code contributed by Bryan Scott. Updated the JCommon class library to improve handling of time periods in different time zones. 0.7.4 : (6-Mar-2002) Bug fixes in the JCommon Class Library. Various Javadoc comment updates. Some minor changes to the code. Added new domain name (http://www.object-refinery.com) in the source headers. 0.7.3 : (14-Feb-2002) Bug fixes. 0.7.2 : (8-Feb-2002) Integrated the WindPlot code from Achilleus Mantzios. Added an optional background image for the JFreeChart class, and another optional background image for the Plot class. Added alpha-transparency for the plot foreground and background. Added new pie chart label types that show values. Fixed a bug with the legend that results in a loop at small chart sizes. Added some tooltip methods that were missing from the previous version. Changed the Insets class on chart titles to a new Spacer class that will allow for relative or absolute insets (the plan is to eventually replace all Insets in the JFreeChart classes). Fixed a bug in the setAutoRangeIncludesZero method of the NumberAxis class. Added the instructions that were missing from the copies of the GNU Lesser General Public Licence included with JFreeChart. 0.7.1 : (25-Jan-2002) Added tooltips, crosshairs and zooming functions, thanks to Jonathan Nash and Hans-Jurgen Greiner for contributing the code that these features are based on. Moved the combination charts into the package com.jrefinery.chart.combination, made a number of other small API changes and fixed some bugs. Removed the Javadoc HTML from the download to save space (you can regenerate it from the source code if you need it). 0.7.0 : (11-Dec-2001) New combination plots developed by Bill Kelemen. Added Wolfgang Irler's servlet demo to the standard download. The About window in the demo application now includes a list of developers that have contributed to the project. 0.6.0 : (27-Nov-2001) New plots including scatter plot, stacked bar charts and 3D bar charts. Improved pie chart. Data interfaces and classes moved to the JCommon class library. New properties to control spacing on bar charts. New auto-tick mechanism. JFreeChartPanel now incorporates buffering, and popup menu. Javadocs revised. Fixed numerous bugs from version 0.5.6. Demo application updated. ---------------- 10. CONTRIBUTORS ---------------- JFreeChart wouldn't be half the library that it is today without the contributions that have been made by the developers listed below: - Richard Atkinson - David Berry - Anthony Boulestreau - Jeremy Bowman - Nicolas Brodu - Jody Brownell - David Browning - Soren Caspersen - Chuanhao Chiu - Pascal Collet - Martin Cordova - Paolo Cova - Mike Duffy - Don Elliott - Jonathan Gabbai - Serge V. Grachov - Joao Guilherme Del Valle - Hans-Jurgen Greiner - Aiman Han - Cameron Hayne - Jon Iles - Wolfgang Irler - Xun Kang - Bill Kelemen - Norbert Kiesel - Gideon Krause - Pierre-Marie Le Biot - Arnaud Lelievre - David Li - Yan Liu - Tin Luu - Craig MacFarlane - Achilleus Mantzios - Thomas Meier - Jim Moore - Jonathan Nash - Barak Naveh - David M. O'Donnell - Krzysztof Paz - Tomer Peretz - Andrzej Porebski - Viktor Rajewski - Michael Rauch - Eduardo Ramalho - Cameron Riley - Dan Rivett - Thierry Saura - Andreas Schneider - Jean-Luc SCHWAB - Bryan Scott - Mofeed Shahin - Greg Steckman - Roger Studner - Irv Thomae - Eric Thomas - Rich Unger - Daniel van Enckevort - Laurence Vanhelsuwe - Sylvain Vieujot - Jelai Wang - Mark Watson - Alex Weber - Matthew Wright - Christian W. Zuckschwerdt - Hari - Sam (oldman) It is possible that I have missed someone on this list, if that applies to you, please e-mail me. Dave Gilbert (dav...@ob...) JFreeChart Project Leader --- NEW FILE: licence-LGPL.txt --- GNU LESSER GENERAL PUBLIC LICENSE Version 2.1, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the Lesser GPL. It also counts as the successor of the GNU Library Public License, version 2, hence the version number 2.1.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below. When we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things. To protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights. We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library. To protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others. Finally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. When a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library. We call this license the "Lesser" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances. For example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License. In other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system. Although the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, whereas the latter must be combined with the library in order to run. GNU LESSER GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also combine or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with. c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the library's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. <signature of Ty Coon>, 1 April 1990 Ty Coon, President of Vice That's all there is to it! |
From: John C. <jc...@us...> - 2006-08-21 00:31:54
|
Update of /cvsroot/tolven/tolven/lib/jfreechart In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv12236/lib/jfreechart Log Message: Directory /cvsroot/tolven/tolven/lib/jfreechart added to the repository |
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10002/src/org/tolven/gen/bean Modified Files: ChronicDiseaseGen.java PregnantGen.java GroupScenario.java BreastCancerGen.java Scenario.java LabTestScenario.java RepeatScenario.java FractureGen.java GaussianValueGen.java DiabetesGen.java CancerGen.java DiseaseGen.java GenMedical.java UniformValueGen.java DemogMatcher.java CholesterolGen.java Matcher.java ProstateCancerGen.java ValueGen.java AsthmaGen.java HypertensionGen.java ProbabilityScenario.java PoissonValueGen.java CHRGeneratorBean.java PersonGeneratorDAO.java GenSource.java ChooseScenario.java TBGen.java Log Message: Add headers and organize imports Index: Scenario.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/Scenario.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Scenario.java 20 Aug 2006 06:43:28 -0000 1.2 --- Scenario.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: UniformValueGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/UniformValueGen.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** UniformValueGen.java 20 Aug 2006 06:43:28 -0000 1.2 --- UniformValueGen.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: ChooseScenario.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/ChooseScenario.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ChooseScenario.java 20 Aug 2006 06:43:28 -0000 1.1 --- ChooseScenario.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: PregnantGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/PregnantGen.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PregnantGen.java 20 Aug 2006 06:43:28 -0000 1.2 --- PregnantGen.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: TBGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/TBGen.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TBGen.java 11 Aug 2006 00:15:21 -0000 1.1 --- TBGen.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: ChronicDiseaseGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/ChronicDiseaseGen.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ChronicDiseaseGen.java 12 Aug 2006 07:19:03 -0000 1.1 --- ChronicDiseaseGen.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: CancerGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/CancerGen.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CancerGen.java 12 Aug 2006 07:19:03 -0000 1.1 --- CancerGen.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: LabTestScenario.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/LabTestScenario.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** LabTestScenario.java 20 Aug 2006 06:43:28 -0000 1.1 --- LabTestScenario.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: DemogMatcher.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/DemogMatcher.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DemogMatcher.java 11 Aug 2006 00:15:21 -0000 1.1 --- DemogMatcher.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: ProstateCancerGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/ProstateCancerGen.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ProstateCancerGen.java 12 Aug 2006 07:19:03 -0000 1.2 --- ProstateCancerGen.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: RepeatScenario.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/RepeatScenario.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RepeatScenario.java 20 Aug 2006 06:43:28 -0000 1.1 --- RepeatScenario.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: GenSource.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/GenSource.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GenSource.java 20 Aug 2006 06:43:28 -0000 1.3 --- GenSource.java 21 Aug 2006 00:26:29 -0000 1.4 *************** *** 1,7 **** package org.tolven.gen.bean; import java.util.ArrayList; import java.util.Date; - import java.util.GregorianCalendar; import java.util.List; --- 1,19 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; import java.util.ArrayList; import java.util.Date; import java.util.List; Index: ValueGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/ValueGen.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ValueGen.java 20 Aug 2006 06:43:28 -0000 1.2 --- ValueGen.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,8 **** package org.tolven.gen.bean; - import java.text.NumberFormat; - import org.apache.commons.math.random.RandomData; - import org.apache.commons.math.random.RandomDataImpl; public abstract class ValueGen { --- 1,18 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; import org.apache.commons.math.random.RandomData; public abstract class ValueGen { Index: CholesterolGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/CholesterolGen.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CholesterolGen.java 12 Aug 2006 07:19:03 -0000 1.2 --- CholesterolGen.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: FractureGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/FractureGen.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FractureGen.java 12 Aug 2006 07:19:03 -0000 1.1 --- FractureGen.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: PoissonValueGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/PoissonValueGen.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PoissonValueGen.java 20 Aug 2006 06:43:28 -0000 1.2 --- PoissonValueGen.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: CHRGeneratorBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/CHRGeneratorBean.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** CHRGeneratorBean.java 12 Aug 2006 07:19:03 -0000 1.4 --- CHRGeneratorBean.java 21 Aug 2006 00:26:29 -0000 1.5 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: AsthmaGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/AsthmaGen.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AsthmaGen.java 12 Aug 2006 07:19:03 -0000 1.2 --- AsthmaGen.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: GroupScenario.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/GroupScenario.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** GroupScenario.java 20 Aug 2006 06:43:28 -0000 1.1 --- GroupScenario.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: BreastCancerGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/BreastCancerGen.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** BreastCancerGen.java 12 Aug 2006 07:19:03 -0000 1.2 --- BreastCancerGen.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: HypertensionGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/HypertensionGen.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** HypertensionGen.java 12 Aug 2006 07:19:03 -0000 1.2 --- HypertensionGen.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,6 **** package org.tolven.gen.bean; - import java.util.Date; - import org.apache.commons.math.random.RandomData; --- 1,17 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; import org.apache.commons.math.random.RandomData; Index: GaussianValueGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/GaussianValueGen.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** GaussianValueGen.java 20 Aug 2006 06:43:28 -0000 1.2 --- GaussianValueGen.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: Matcher.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/Matcher.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Matcher.java 11 Aug 2006 00:15:21 -0000 1.1 --- Matcher.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,6 **** package org.tolven.gen.bean; import java.util.Date; - import java.util.GregorianCalendar; import org.apache.commons.math.random.RandomData; --- 1,18 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; import java.util.Date; import org.apache.commons.math.random.RandomData; Index: DiabetesGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/DiabetesGen.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DiabetesGen.java 20 Aug 2006 06:43:28 -0000 1.3 --- DiabetesGen.java 21 Aug 2006 00:26:29 -0000 1.4 *************** *** 1,8 **** package org.tolven.gen.bean; - import org.apache.commons.math.random.RandomData; - - import java.util.Date; import java.util.GregorianCalendar; /** * A diabetes disease generator. Our superclass handles the basics of getting the disease --- 1,20 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; import java.util.GregorianCalendar; + + import org.apache.commons.math.random.RandomData; /** * A diabetes disease generator. Our superclass handles the basics of getting the disease Index: DiseaseGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/DiseaseGen.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DiseaseGen.java 20 Aug 2006 06:43:28 -0000 1.3 --- DiseaseGen.java 21 Aug 2006 00:26:29 -0000 1.4 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; Index: GenMedical.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/GenMedical.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** GenMedical.java 20 Aug 2006 06:43:28 -0000 1.5 --- GenMedical.java 21 Aug 2006 00:26:29 -0000 1.6 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; *************** *** 4,13 **** import java.util.GregorianCalendar; - import javax.annotation.EJB; - import org.apache.commons.math.random.RandomData; import org.apache.commons.math.random.RandomDataImpl; import org.tolven.app.MenuLocal; - import org.tolven.app.entity.MSColumn; import org.tolven.app.entity.MenuData; import org.tolven.app.entity.MenuStructure; --- 17,23 ---- Index: PersonGeneratorDAO.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/PersonGeneratorDAO.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** PersonGeneratorDAO.java 8 Aug 2006 18:14:54 -0000 1.5 --- PersonGeneratorDAO.java 21 Aug 2006 00:26:29 -0000 1.6 *************** *** 1,23 **** /* ! * PersonGenerator.java ! * ! * Created on March 24, 2006, 9:49 PM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ - package org.tolven.gen.bean; import java.util.Date; - import java.util.GregorianCalendar; import java.util.List; - import java.util.ArrayList; import java.util.Random; import javax.annotation.EJB; import javax.annotation.Resource; - //import javax.annotation.security.DeclareRoles; - import javax.annotation.security.RolesAllowed; import javax.ejb.Local; import javax.ejb.SessionContext; --- 1,24 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.gen.bean; + import java.util.ArrayList; import java.util.Date; import java.util.List; import java.util.Random; import javax.annotation.EJB; import javax.annotation.Resource; import javax.ejb.Local; import javax.ejb.SessionContext; *************** *** 30,34 **** import org.tolven.app.entity.MenuData; import org.tolven.app.entity.MenuStructure; ! import org.tolven.gen.*; import org.tolven.gen.entity.FamilyMember; import org.tolven.gen.entity.FamilyUnit; --- 31,35 ---- import org.tolven.app.entity.MenuData; import org.tolven.app.entity.MenuStructure; ! import org.tolven.gen.PersonGenerator; import org.tolven.gen.entity.FamilyMember; import org.tolven.gen.entity.FamilyUnit; *************** *** 38,42 **** import org.tolven.gen.util.LifeSpan; import org.tolven.gen.util.RandomNameGenerator; - import org.tolven.voc.umls.entity.Concept; /** --- 39,42 ---- Index: ProbabilityScenario.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/bean/ProbabilityScenario.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ProbabilityScenario.java 20 Aug 2006 06:43:28 -0000 1.1 --- ProbabilityScenario.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.bean; |
From: John C. <jc...@us...> - 2006-08-21 00:27:04
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/app/bean In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10002/src/org/tolven/app/bean Modified Files: MenuQueryControl.java MenuBean.java QueryControl.java MenuPath.java Log Message: Add headers and organize imports Index: MenuBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/app/bean/MenuBean.java,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** MenuBean.java 20 Aug 2006 06:43:28 -0000 1.22 --- MenuBean.java 21 Aug 2006 00:26:30 -0000 1.23 *************** *** 104,108 **** for (MSColumn col : ctrl.getMenuStructure().getColumns()) { Object value = ctrl.getFilters().get(col.getHeading()); ! // System.out.println( "Filter: heading=" + col.getHeading() + " value=" + value); if (value!=null) { if ( !(value instanceof String) ) throw new IllegalArgumentException( "Filter value of " + col.getHeading() + " must be a string"); --- 104,108 ---- for (MSColumn col : ctrl.getMenuStructure().getColumns()) { Object value = ctrl.getFilters().get(col.getHeading()); ! System.out.println( "Filter: heading=" + col.getHeading() + " value=" + value); if (value!=null) { if ( !(value instanceof String) ) throw new IllegalArgumentException( "Filter value of " + col.getHeading() + " must be a string"); *************** *** 125,129 **** } } ! // System.out.println( "MenuData Query: " + qs.toString()); Query query = em.createQuery( qs.toString() ); query.setParameter( "m", ctrl.getMenuStructure() ); --- 125,129 ---- } } ! System.out.println( "MenuData Query: " + qs.toString()); Query query = em.createQuery( qs.toString() ); query.setParameter( "m", ctrl.getMenuStructure() ); *************** *** 145,149 **** public List<MenuData> findMenuData( MenuQueryControl ctrl ) { Query query = prepareCriteria( ctrl, "SELECT md FROM MenuData md WHERE "); ! // System.out.println( "[MenuLocal.findMenuData] begin: " + ctrl ); query.setMaxResults(ctrl.getLimit()); query.setFirstResult(ctrl.getOffset()); --- 145,149 ---- public List<MenuData> findMenuData( MenuQueryControl ctrl ) { Query query = prepareCriteria( ctrl, "SELECT md FROM MenuData md WHERE "); ! System.out.println( "[MenuLocal.findMenuData] begin: " + ctrl ); query.setMaxResults(ctrl.getLimit()); query.setFirstResult(ctrl.getOffset()); *************** *** 368,374 **** em.persist( new MSColumn( labAll, 7, "Source", "parent02", null) ); ! MenuStructure labGraph = new MenuStructure( ! account, patResults, "labGraph.xhtml", null, 15, "labGraph", "Lab (Graph)", "true", null, "tab" ); ! em.persist( labGraph ); MenuStructure image = new MenuStructure( --- 368,374 ---- em.persist( new MSColumn( labAll, 7, "Source", "parent02", null) ); ! MenuStructure lipids = new MenuStructure( ! account, patResults, "graphLipids.xhtml", null, 15, "lipids", "Lipids", "true", null, "tab" ); ! em.persist( lipids ); MenuStructure image = new MenuStructure( Index: MenuPath.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/app/bean/MenuPath.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MenuPath.java 7 Aug 2006 03:26:48 -0000 1.2 --- MenuPath.java 21 Aug 2006 00:26:30 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.app.bean; *************** *** 14,17 **** --- 27,31 ---- super(); } + /** * Create a new menu path with the specified path *************** *** 23,27 **** } ! /** * Parse an element id such as <pre>echr:patient-123:results:lab:act-767</pre>. The element is aquired from the requestParameter <italic>element</italic>. An array with each node is created --- 37,58 ---- } ! /** ! * Create a new path using a supplied set of values ! */ ! public MenuPath(String path, MenuPath srcPath) { ! Map<String, Long> nodeValues = srcPath.getNodeValues(); ! String nodes[] = path.split("\\:"); ! StringBuffer newPath = new StringBuffer( 100 ); ! for (int x = 0;x < nodes.length; x++) { ! if (newPath.length()>0) newPath.append(":"); ! newPath.append(nodes[x]); ! if (nodeValues.containsKey(nodes[x])) { ! newPath.append("-"); ! newPath.append(nodeValues.get(nodes[x]).longValue()); ! } ! } ! this.pathString = newPath.toString(); ! } ! /** * Parse an element id such as <pre>echr:patient-123:results:lab:act-767</pre>. The element is aquired from the requestParameter <italic>element</italic>. An array with each node is created Index: MenuQueryControl.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/app/bean/MenuQueryControl.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MenuQueryControl.java 7 Aug 2006 03:26:48 -0000 1.4 --- MenuQueryControl.java 21 Aug 2006 00:26:30 -0000 1.5 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.app.bean; Index: QueryControl.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/app/bean/QueryControl.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** QueryControl.java 7 Aug 2006 03:26:48 -0000 1.2 --- QueryControl.java 21 Aug 2006 00:26:30 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.app.bean; |
From: John C. <jc...@us...> - 2006-08-21 00:27:04
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/doc/entity In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10002/src/org/tolven/doc/entity Modified Files: DocType.java InvitationType.java Invitation.java SubjectLink.java DocBase.java Log Message: Add headers and organize imports Index: DocBase.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/doc/entity/DocBase.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DocBase.java 12 Jul 2006 05:06:57 -0000 1.3 --- DocBase.java 21 Aug 2006 00:26:30 -0000 1.4 *************** *** 1,18 **** /* ! * DocBase.java ! * ! * Created on April 3, 2006, 1:27 AM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ - package org.tolven.doc.entity; - import java.io.IOException; import java.io.Serializable; - import java.io.StringReader; - import java.io.StringWriter; - import java.util.List; import javax.persistence.Basic; --- 1,18 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.doc.entity; import java.io.Serializable; import javax.persistence.Basic; *************** *** 26,46 **** import javax.persistence.ManyToOne; import javax.persistence.Table; - import javax.xml.bind.JAXBContext; - import javax.xml.bind.JAXBElement; - import javax.xml.bind.JAXBException; - import javax.xml.bind.Marshaller; - import javax.xml.bind.Unmarshaller; - import javax.xml.transform.stream.StreamSource; - import org.tolven.admin.AdministrativeDetail; - import org.tolven.admin.Details; - import org.tolven.core.entity.Account; - import org.tolven.core.entity.TolvenUser; - import org.tolven.rim.ActClass; - import org.tolven.rim.ActMood; - import org.tolven.rim.ActRelationshipType; - import org.tolven.rim.ControlAct; - import org.tolven.rim.OutboundActRelationship; import org.apache.commons.codec.binary.Base64; /** --- 26,32 ---- import javax.persistence.ManyToOne; import javax.persistence.Table; import org.apache.commons.codec.binary.Base64; + import org.tolven.core.entity.TolvenUser; /** Index: InvitationType.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/doc/entity/InvitationType.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InvitationType.java 14 Jun 2006 01:49:41 -0000 1.1 --- InvitationType.java 21 Aug 2006 00:26:30 -0000 1.2 *************** *** 1,11 **** /* ! * InvitationType.java ! * ! * Created on April 16, 2006, 9:58 PM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ - package org.tolven.doc.entity; --- 1,15 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.doc.entity; Index: DocType.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/doc/entity/DocType.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DocType.java 14 Jun 2006 01:49:41 -0000 1.1 --- DocType.java 21 Aug 2006 00:26:30 -0000 1.2 *************** *** 1,11 **** /* ! * DocType.java ! * ! * Created on April 3, 2006, 2:33 AM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ - package org.tolven.doc.entity; --- 1,15 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.doc.entity; Index: Invitation.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/doc/entity/Invitation.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Invitation.java 17 Aug 2006 18:30:34 -0000 1.3 --- Invitation.java 21 Aug 2006 00:26:30 -0000 1.4 *************** *** 1,17 **** /* ! * Invitation.java ! * ! * Created on April 16, 2006, 9:57 PM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ - package org.tolven.doc.entity; - import java.io.IOException; - import java.util.ArrayList; import java.util.Date; - import java.util.List; import javax.persistence.Column; --- 1,18 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.doc.entity; import java.util.Date; import javax.persistence.Column; *************** *** 25,32 **** import javax.persistence.Temporal; import javax.persistence.TemporalType; - import javax.xml.bind.JAXBException; - import org.tolven.admin.AdministrativeDetail; - import org.tolven.admin.InvitationDetail; import org.tolven.core.entity.Account; import org.tolven.core.entity.TolvenUser; --- 26,30 ---- Index: SubjectLink.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/doc/entity/SubjectLink.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SubjectLink.java 14 Jun 2006 01:49:41 -0000 1.1 --- SubjectLink.java 21 Aug 2006 00:26:30 -0000 1.2 *************** *** 1,11 **** /* ! * SubjectLink.java ! * ! * Created on April 3, 2006, 1:57 PM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ - package org.tolven.doc.entity; --- 1,15 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.doc.entity; *************** *** 13,17 **** import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; - import javax.persistence.MappedSuperclass; import javax.persistence.Id; import javax.persistence.Table; --- 17,20 ---- |
From: John C. <jc...@us...> - 2006-08-21 00:27:04
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10002/src/org/tolven/core/bean Modified Files: InvitationException.java InvitationBean.java ActivationBean.java TolvenProperties.java TolvenOIDBean.java TemplateGen.java InvitationSender.java AccountDAOBean.java Log Message: Add headers and organize imports Index: TemplateGen.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean/TemplateGen.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TemplateGen.java 2 Jul 2006 16:39:24 -0000 1.3 --- TemplateGen.java 21 Aug 2006 00:26:29 -0000 1.4 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core.bean; import java.io.IOException; Index: TolvenProperties.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean/TolvenProperties.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TolvenProperties.java 28 Jun 2006 20:50:42 -0000 1.3 --- TolvenProperties.java 21 Aug 2006 00:26:29 -0000 1.4 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core.bean; Index: TolvenOIDBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean/TolvenOIDBean.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TolvenOIDBean.java 12 Jul 2006 05:06:57 -0000 1.4 --- TolvenOIDBean.java 21 Aug 2006 00:26:29 -0000 1.5 *************** *** 1,11 **** /* ! * TolvenOIDBean.java ! * ! * Created on April 21, 2006, 12:36 PM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ - package org.tolven.core.bean; --- 1,15 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.core.bean; *************** *** 22,25 **** --- 26,32 ---- /** + * TolvenOIDBean.java + * + * Created on April 21, 2006, 12:36 PM * <p>This Java class maintains the Tolven-assigned OIDs. These OIDs are not editable by any entity other than Tolven. * If you need an OID for some purpose, use can get one from HL7.org. You should then store it in a safe place Index: InvitationBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean/InvitationBean.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** InvitationBean.java 17 Aug 2006 18:30:34 -0000 1.8 --- InvitationBean.java 21 Aug 2006 00:26:29 -0000 1.9 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core.bean; Index: InvitationException.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean/InvitationException.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** InvitationException.java 12 Jul 2006 05:06:57 -0000 1.1 --- InvitationException.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core.bean; Index: ActivationBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean/ActivationBean.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ActivationBean.java 17 Aug 2006 18:30:34 -0000 1.12 --- ActivationBean.java 21 Aug 2006 00:26:29 -0000 1.13 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core.bean; Index: InvitationSender.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean/InvitationSender.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** InvitationSender.java 23 Jul 2006 07:18:56 -0000 1.6 --- InvitationSender.java 21 Aug 2006 00:26:29 -0000 1.7 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core.bean; Index: AccountDAOBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/bean/AccountDAOBean.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AccountDAOBean.java 7 Aug 2006 03:26:48 -0000 1.3 --- AccountDAOBean.java 21 Aug 2006 00:26:29 -0000 1.4 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core.bean; |
From: John C. <jc...@us...> - 2006-08-21 00:27:04
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/core/entity In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10002/src/org/tolven/core/entity Modified Files: Account.java AccountUser.java TolvenUser.java Property.java OID.java HealthRecord.java UserHealthRecord.java AccountType.java Log Message: Add headers and organize imports Index: AccountType.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/entity/AccountType.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AccountType.java 14 Jun 2006 01:49:11 -0000 1.1 --- AccountType.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,11 **** /* ! * AccountType.java ! * ! * Created on April 6, 2006, 12:30 PM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ - package org.tolven.core.entity; --- 1,15 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.core.entity; *************** *** 19,22 **** --- 23,30 ---- /** + * AccountType.java + * + * Created on April 6, 2006, 12:30 PM + * * AccountType controls basic, low-level behavior of an account. There's a small number of AccountTypes. * However, users can configure accounts with many other preferences that expand on the basic account-type. Index: Account.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/entity/Account.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Account.java 3 Jul 2006 07:36:00 -0000 1.5 --- Account.java 21 Aug 2006 00:26:29 -0000 1.6 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core.entity; Index: TolvenUser.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/entity/TolvenUser.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TolvenUser.java 12 Jul 2006 05:06:57 -0000 1.4 --- TolvenUser.java 21 Aug 2006 00:26:29 -0000 1.5 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core.entity; Index: HealthRecord.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/entity/HealthRecord.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** HealthRecord.java 20 Jun 2006 01:40:44 -0000 1.2 --- HealthRecord.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core.entity; Index: UserHealthRecord.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/entity/UserHealthRecord.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** UserHealthRecord.java 14 Jun 2006 01:49:11 -0000 1.1 --- UserHealthRecord.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,11 **** /* ! * UserHealthRecord.java ! * ! * Created on April 3, 2006, 4:16 PM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ - package org.tolven.core.entity; --- 1,15 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.core.entity; Index: Property.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/entity/Property.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Property.java 14 Jun 2006 01:49:11 -0000 1.1 --- Property.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,11 **** /* ! * Property.java ! * ! * Created on April 21, 2006, 11:48 PM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ - package org.tolven.core.entity; --- 1,15 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.core.entity; Index: AccountUser.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/entity/AccountUser.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AccountUser.java 20 Jun 2006 01:40:44 -0000 1.3 --- AccountUser.java 21 Aug 2006 00:26:29 -0000 1.4 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core.entity; Index: OID.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/entity/OID.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** OID.java 14 Jun 2006 01:49:11 -0000 1.1 --- OID.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,11 **** /* ! * OID.java ! * ! * Created on April 21, 2006, 2:40 PM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ - package org.tolven.core.entity; --- 1,15 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.core.entity; |
From: John C. <jc...@us...> - 2006-08-21 00:27:03
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/voc/umls/bean In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10002/src/org/tolven/voc/umls/bean Modified Files: ConceptDAOBean.java LoadMrconsoBean.java LoadAbbreviationBean.java Log Message: Add headers and organize imports Index: ConceptDAOBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/voc/umls/bean/ConceptDAOBean.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ConceptDAOBean.java 25 Jun 2006 06:05:25 -0000 1.2 --- ConceptDAOBean.java 21 Aug 2006 00:26:30 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.voc.umls.bean; Index: LoadAbbreviationBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/voc/umls/bean/LoadAbbreviationBean.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** LoadAbbreviationBean.java 14 Jun 2006 01:50:50 -0000 1.1 --- LoadAbbreviationBean.java 21 Aug 2006 00:26:30 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.voc.umls.bean; Index: LoadMrconsoBean.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/voc/umls/bean/LoadMrconsoBean.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LoadMrconsoBean.java 25 Jun 2006 06:05:25 -0000 1.2 --- LoadMrconsoBean.java 21 Aug 2006 00:26:30 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.voc.umls.bean; |
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/util In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10002/src/org/tolven/gen/util Modified Files: LifeSpan.java GeneratePlace.java GeneratorBase.java GenerateCauseOfDeath.java RandomNameGenerator.java Log Message: Add headers and organize imports Index: LifeSpan.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/util/LifeSpan.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LifeSpan.java 26 Jun 2006 19:52:05 -0000 1.2 --- LifeSpan.java 21 Aug 2006 00:26:30 -0000 1.3 *************** *** 7,18 **** * and open the template in the editor. */ - package org.tolven.gen.util; import java.util.GregorianCalendar; import java.util.Random; - import java.util.Calendar; - import java.util.Date; - import java.util.ArrayList; import java.util.logging.Logger; --- 7,14 ---- Index: GeneratePlace.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/util/GeneratePlace.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** GeneratePlace.java 26 Jun 2006 19:52:05 -0000 1.2 --- GeneratePlace.java 21 Aug 2006 00:26:30 -0000 1.3 *************** *** 1,8 **** package org.tolven.gen.util; import java.io.BufferedReader; import java.io.IOException; - import java.io.InputStream; - import java.io.InputStreamReader; import java.util.ArrayList; import java.util.HashMap; --- 1,19 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.util; import java.io.BufferedReader; import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; *************** *** 11,15 **** import org.tolven.gen.entity.FamilyUnit; - import org.tolven.gen.entity.VirtualPerson; /** --- 22,25 ---- Index: GeneratorBase.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/util/GeneratorBase.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** GeneratorBase.java 26 Jun 2006 19:52:05 -0000 1.1 --- GeneratorBase.java 21 Aug 2006 00:26:30 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.util; Index: GenerateCauseOfDeath.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/util/GenerateCauseOfDeath.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GenerateCauseOfDeath.java 26 Jun 2006 19:52:05 -0000 1.3 --- GenerateCauseOfDeath.java 21 Aug 2006 00:26:30 -0000 1.4 *************** *** 1,8 **** package org.tolven.gen.util; import java.io.BufferedReader; import java.io.IOException; - import java.io.InputStreamReader; - import java.util.Random; import org.tolven.gen.entity.VirtualPerson; --- 1,19 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.util; import java.io.BufferedReader; import java.io.IOException; import org.tolven.gen.entity.VirtualPerson; Index: RandomNameGenerator.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/util/RandomNameGenerator.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RandomNameGenerator.java 26 Jun 2006 19:52:05 -0000 1.2 --- RandomNameGenerator.java 21 Aug 2006 00:26:30 -0000 1.3 *************** *** 1,17 **** - /* - * RandomNameGenerator.java - * - * Created on March 24, 2006, 8:18 PM - * - * - * - */ - package org.tolven.gen.util; ! import java.io.*; ! ! import java.net.URL; ! import java.util.Random; import org.tolven.gen.entity.VirtualPerson; --- 1,7 ---- package org.tolven.gen.util; ! import java.io.BufferedReader; ! import java.io.IOException; import java.util.Random; + import org.tolven.gen.entity.VirtualPerson; |
From: John C. <jc...@us...> - 2006-08-21 00:27:03
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/gen In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10002/src/org/tolven/gen Modified Files: PersonGenerator.java CHRGenerator.java Log Message: Add headers and organize imports Index: PersonGenerator.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/PersonGenerator.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PersonGenerator.java 7 Aug 2006 03:20:18 -0000 1.3 --- PersonGenerator.java 21 Aug 2006 00:26:30 -0000 1.4 *************** *** 1,14 **** /* ! * NewInterface.java ! * ! * Created on March 25, 2006, 2:10 AM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ - package org.tolven.gen; - import java.io.IOException; import java.util.Date; import java.util.List; --- 1,17 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.gen; import java.util.Date; import java.util.List; Index: CHRGenerator.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/CHRGenerator.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CHRGenerator.java 11 Aug 2006 00:15:21 -0000 1.2 --- CHRGenerator.java 21 Aug 2006 00:26:30 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen; |
From: John C. <jc...@us...> - 2006-08-21 00:27:03
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/app/entity In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10002/src/org/tolven/app/entity Modified Files: MenuData.java MSColumn.java MenuStructure.java Log Message: Add headers and organize imports Index: MenuStructure.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/app/entity/MenuStructure.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** MenuStructure.java 7 Aug 2006 03:26:48 -0000 1.7 --- MenuStructure.java 21 Aug 2006 00:26:29 -0000 1.8 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.app.entity; Index: MenuData.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/app/entity/MenuData.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** MenuData.java 20 Aug 2006 06:43:28 -0000 1.9 --- MenuData.java 21 Aug 2006 00:26:29 -0000 1.10 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.app.entity; Index: MSColumn.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/app/entity/MSColumn.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MSColumn.java 7 Aug 2006 03:26:48 -0000 1.1 --- MSColumn.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.app.entity; |
From: John C. <jc...@us...> - 2006-08-21 00:27:02
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/entity In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10002/src/org/tolven/gen/entity Modified Files: VirtualPerson.java FamilyMember.java FamilyUnit.java Log Message: Add headers and organize imports Index: VirtualPerson.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/entity/VirtualPerson.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** VirtualPerson.java 3 Jul 2006 07:36:00 -0000 1.2 --- VirtualPerson.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,11 **** /* ! * VirtualPerson.java ! * ! * Created on March 24, 2006, 8:27 PM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ - package org.tolven.gen.entity; --- 1,15 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.gen.entity; Index: FamilyMember.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/entity/FamilyMember.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FamilyMember.java 14 Jun 2006 01:50:21 -0000 1.1 --- FamilyMember.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.entity; Index: FamilyUnit.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/gen/entity/FamilyUnit.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** FamilyUnit.java 3 Jul 2006 07:36:00 -0000 1.2 --- FamilyUnit.java 21 Aug 2006 00:26:29 -0000 1.3 *************** *** 1,5 **** package org.tolven.gen.entity; - import java.util.Date; import java.util.HashSet; import java.util.Set; --- 1,17 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.gen.entity; import java.util.HashSet; import java.util.Set; *************** *** 16,20 **** import org.tolven.gen.entity.FamilyMember.FamilyMemberRole; - import org.tolven.voc.umls.entity.AtomRelationship; /** --- 28,31 ---- |
From: John C. <jc...@us...> - 2006-08-21 00:27:02
|
Update of /cvsroot/tolven/tolvenEJB/src/org/tolven/core In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10002/src/org/tolven/core Modified Files: ActivationLocal.java AccountDAOLocal.java InvitationLocal.java TolvenOIDLocal.java Log Message: Add headers and organize imports Index: ActivationLocal.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/ActivationLocal.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ActivationLocal.java 12 Jul 2006 05:06:57 -0000 1.10 --- ActivationLocal.java 21 Aug 2006 00:26:29 -0000 1.11 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core; Index: TolvenOIDLocal.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/TolvenOIDLocal.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TolvenOIDLocal.java 14 Jun 2006 01:49:10 -0000 1.1 --- TolvenOIDLocal.java 21 Aug 2006 00:26:29 -0000 1.2 *************** *** 1,16 **** /* ! * TolvenOIDLocal.java ! * ! * Created on April 21, 2006, 7:24 PM * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ package org.tolven.core; ! /** * ! * @author John Churin */ public interface TolvenOIDLocal { --- 1,25 ---- /* ! * Copyright (C) 2006 Tolven Inc * ! * This library is free software; you can redistribute it and/or modify it under the terms of ! * the GNU Lesser General Public License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. ! * ! * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; ! * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ! * See the GNU Lesser General Public License for more details. ! * ! * Contact: in...@to... */ package org.tolven.core; ! /* ! * TolvenOIDLocal.java * ! * Created on April 21, 2006, 7:24 PM ! * ! * To change this template, choose Tools | Template Manager ! * and open the template in the editor. */ public interface TolvenOIDLocal { Index: InvitationLocal.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/InvitationLocal.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** InvitationLocal.java 12 Jul 2006 05:06:57 -0000 1.4 --- InvitationLocal.java 21 Aug 2006 00:26:29 -0000 1.5 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core; Index: AccountDAOLocal.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/org/tolven/core/AccountDAOLocal.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AccountDAOLocal.java 7 Aug 2006 03:26:48 -0000 1.3 --- AccountDAOLocal.java 21 Aug 2006 00:26:29 -0000 1.4 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package org.tolven.core; |
From: John C. <jc...@us...> - 2006-08-21 00:27:02
|
Update of /cvsroot/tolven/tolvenEJB/src/test/org/tolven/core/bean In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv10002/src/test/org/tolven/core/bean Modified Files: TolvenPropertiesTest.java Log Message: Add headers and organize imports Index: TolvenPropertiesTest.java =================================================================== RCS file: /cvsroot/tolven/tolvenEJB/src/test/org/tolven/core/bean/TolvenPropertiesTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TolvenPropertiesTest.java 20 Aug 2006 23:03:59 -0000 1.2 --- TolvenPropertiesTest.java 21 Aug 2006 00:26:30 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + /* + * Copyright (C) 2006 Tolven Inc + * + * This library is free software; you can redistribute it and/or modify it under the terms of + * the GNU Lesser General Public License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU Lesser General Public License for more details. + * + * Contact: in...@to... + */ package test.org.tolven.core.bean; *************** *** 48,50 **** } ! } --- 61,63 ---- } ! } \ No newline at end of file |