Project

General

Profile

Statistics
| Revision:
Name Size Revision Age Author Comment
  marine 433 over 23 years berkley no message
AccessControlList.java 34.9 KB 688 about 23 years bojilova added new "getaccesscontrol" action for a given...
AccessionNumber.java 7.81 KB 735 almost 23 years bojilova fix - added back generate(docid, action) method...
AccessionNumberException.java 1.84 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
AccessionNumberGeneratedException.java 1.58 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
AuthInterface.java 3.54 KB 730 about 23 years bojilova Changes related to running LDAP servers referre...
AuthLdap.java 34.2 KB 740 almost 23 years bojilova fixed the problem with empy password authentica...
AuthMcat.java 14.1 KB 730 about 23 years bojilova Changes related to running LDAP servers referre...
AuthSession.java 5.85 KB 730 about 23 years bojilova Changes related to running LDAP servers referre...
BasicNode.java 6.2 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
CatalogMessageHandler.java 2.95 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
CommentNode.java 2.16 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
DBDTDHandler.java 5.23 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
DBEntityResolver.java 12.9 KB 694 about 23 years bojilova reject writing DTD file if it already exists
DBQuery.java 27.5 KB 739 almost 23 years bojilova as John were testing Metacat on postgres, he di...
DBSAXHandler.java 18.8 KB 697 about 23 years bojilova - fixed missing replication of public_access - ...
DBSAXNode.java 12.6 KB 675 over 23 years berkley added precise location information (class.metho...
DBSimpleQuery.java 7.11 KB 675 over 23 years berkley added precise location information (class.metho...
DBTransform.java 6.75 KB 675 over 23 years berkley added precise location information (class.metho...
DBUtil.java 10.1 KB 699 about 23 years bojilova implemented interface for download of DTD or Sc...
DBValidate.java 9.8 KB 675 over 23 years berkley added precise location information (class.metho...
DataFileServer.java 6.37 KB 675 over 23 years berkley added precise location information (class.metho...
DataFileUploadInterface.java 4.99 KB 675 over 23 years berkley added precise location information (class.metho...
DataStreamTest.java 7.3 KB 675 over 23 years berkley added precise location information (class.metho...
DocInfoHandler.java 2.29 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
DocumentIdentifier.java 6.88 KB 736 almost 23 years bojilova put exception handler messages when acc# is not...
DocumentImpl.java 43.6 KB 734 almost 23 years bojilova - changes to expect revisionid to come from the...
ElementNode.java 5.24 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
ForceReplicationHandler.java 4.62 KB 675 over 23 years berkley added precise location information (class.metho...
HttpMessage.java 4.99 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
McdbDocNotFoundException.java 2.08 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
McdbException.java 3.41 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
MetaCatServlet.java 49.3 KB 738 almost 23 years bojilova fix to view abstract only when abstractpath par...
MetaCatUtil.java 10.8 KB 739 almost 23 years bojilova as John were testing Metacat on postgres, he di...
MetacatReplication.java 34.7 KB 727 about 23 years berkley added check to see if a replication server's IP...
MetacatURL.java 9.35 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
NodeComparator.java 3.49 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
NodeRecord.java 1.67 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
PINode.java 2.54 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
QuerySpecification.java 25.5 KB 711 about 23 years Matt Jones Modifications to allow printing of SQL with and...
RelationHandler.java 10.3 KB 683 over 23 years berkley fixed some problems with database connections g...
ReplMessageHandler.java 4.07 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...
ReplicationHandler.java 20.5 KB 697 about 23 years bojilova - fixed missing replication of public_access - ...
TextNode.java 2.12 KB 669 over 23 years Matt Jones Added license terms to source code files, and c...

Latest revisions

# Date Author Comment
740 05/09/2001 01:49 PM bojilova

fixed the problem with empy password authentication.
Ldap somehow allows DirContext to be created
when empty password is provided as in our case
instead of comlaining like with wrong password string.
So included a check for empty password in order to reject the login.

739 05/08/2001 02:40 PM bojilova

as John were testing Metacat on postgres,
he discovered that Connection needs more precise check
whether it is open because of db timing outs.
So used to be:
if ( conn null ) { get new connection from db; }
Now changed to:
if ( conn null || conn.isClosed() ) { get new connection from db; }...

738 05/04/2001 02:30 PM bojilova

fix to view abstract only when abstractpath parameter was specified

736 05/04/2001 11:12 AM bojilova

put exception handler messages when acc# is not in the correct format as:
<sitecode>.<uniqueid>.[<revisionid>]

735 05/04/2001 09:16 AM bojilova

fix - added back generate(docid, action) method called from DataFileServer.java where rev is defaulted to 1

734 05/03/2001 05:12 PM bojilova

- changes to expect revisionid to come from the client on INSERT/UPDATE/DELETE;
now the client should send accession# as:
sitecode.uniqueid.revisionid
INSERT checks if sitecode.uniqueid part does not exist in xml_documents and xml_revisions and revisionid=1...

733 05/02/2001 02:52 PM bojilova

Tomcat has got configurated mime type mappings, but some are
missing. Thus added support for them in MetaCatServlet as:
File type > MIME type
-------------
----------------
.xml -> "text/xml"
.xsd -> "text/xml"
.dtd -> "text/plain"
.css -> "text/css"...

731 05/01/2001 04:42 PM bojilova

- merged "getabstract" and "getdatadoc" actions to "read" action;
- put MIME types everywhere for the returned data;
- zip when more than one doc/files were requested or when specified by qformat="zip" parameter;
- get rid of "relation" parameter, instead use "docid" parameter name only - when more that one docid - zip them;...

730 04/17/2001 09:32 AM bojilova

Changes related to running LDAP servers referred each other in one tree modeling the KNB tree.
Currently there are running LDAP server on dev that holds the KNB root and the NCEAS' s subtree.
It also refers to a subtree modeling the LTER's tree which is held by another LDAP server runnig on alpha .

728 03/22/2001 03:49 PM bojilova

fixes on getting information from LDAP services

View revisions

Also available in: Atom