Skip to content

Commit 2ee2a02

Browse files
committed
doc: update links
1 parent efaf5ae commit 2ee2a02

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ CQL-Java is a Free Software project that provides:
1919
CQL is "Common Query Language", a query language designed under
2020
the umbrella of the ZING initiative (Z39.59-International Next
2121
Generation). The official specification is at
22-
http://www.loc.gov/standards/sru/cql/
22+
https://www.loc.gov/standards/sru/cql/
2323
and there's more (and friendlier) information at
24-
http://zing.z3950.org/cql/index.html
24+
https://zing.z3950.org/cql/index.html
2525

2626
XCQL is "XML CQL", a representation of CQL-equivalent queries in XML
2727
which is supposed to be easier to parse. The specification is at
28-
http://docs.oasis-open.org/search-ws/searchRetrieve/v1.0/os/schemas/xcql.xsd
28+
https://docs.oasis-open.org/search-ws/searchRetrieve/v1.0/os/schemas/xcql.xsd
2929
in the form of an XML Schema.
3030

3131
But if you didn't know that, why are you even reading this? :-)
@@ -90,7 +90,7 @@ Using the library in your own applications:
9090

9191
## Description
9292

93-
See the automatically generated class documentation in the "target"
93+
See the automatically generated class documentation in the `target`
9494
subdirectory.
9595

9696

@@ -99,7 +99,7 @@ subdirectory.
9999
Original code and documentation by Mike Taylor, Index Data <mike@indexdata.com>
100100
At present maintained by Jakub Skoczen, Index Data <jakub@indexdata.dk>
101101

102-
* http://www.indexdata.com/cql-java
102+
* https://www.indexdata.com/cql-java
103103

104104
Please email us with bug-reports, wishlist items, patches, deployment
105105
stories and, of course, large cash donations.
@@ -109,7 +109,7 @@ stories and, of course, large cash donations.
109109

110110
The CQL-Java suite is Free Software, which is pretty much legally
111111
equivalent -- though not morally equivalent -- to Open Source. See
112-
http://www.gnu.org/philosophy/free-software-for-freedom.html
112+
https://www.gnu.org/philosophy/free-software-for-freedom.html
113113
for a detailed if somewhat one-sided discussion of the differences,
114114
and particularly of why Free Software is an important idea.
115115

@@ -124,7 +124,7 @@ a part of a non-free larger work.
124124

125125
## See also
126126

127-
* http://zing.z3950.org/cql
127+
* https://zing.z3950.org/cql
128128
* Adam Dickmeiss's CQL compiler, written in C.
129129
* Rob Sanderson's CQL compiler, written in Python.
130130
* Jakub Skoczen's CQL-js compiler, written in JavaScript https://github.com/indexdata/cql-js

src/main/java/org/z3950/zing/cql/CQLGenerator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
* this distribution - there is a <code>generate_<I>x</I>()</code> method
2020
* for each grammar element <I>X</I>.
2121
*
22-
* @see <A href="http://zing.z3950.org/cql/index.html"
23-
* >http://zing.z3950.org/cql/index.html</A>
22+
* @see <A href="https://zing.z3950.org/cql/index.html"
23+
* >https://zing.z3950.org/cql/index.html</A>
2424
*/
2525
public class CQLGenerator {
2626
private Properties params;

src/main/java/org/z3950/zing/cql/CQLNode.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ static void renderSortKeys(XCQLBuilder b, int level,
9090
* that can be trivially mapped, one-to-one, int Z39.50 Type-1 and
9191
* Type-101 queries. A specification for the format can be found
9292
* in
93-
* <A href="http://indexdata.dk/yaz/doc/tools.php#PQF"
93+
* <A href="https://indexdata.com/yaz/doc/tools.html#PQF"
9494
* >Chapter 7 (Supporting Tools)</A> of the
95-
* <A href="http://indexdata.dk/yaz/">YAZ</A> manual.
95+
* <A href="https://indexdata.com/yaz/doc">YAZ</A> manual.
9696
*
9797
* @param config
9898
* A <code>Properties</code> object containing configuration
@@ -130,8 +130,8 @@ abstract public String toPQF(Properties config)
130130
* @return
131131
* A byte array containing the BER packet.
132132
* @see
133-
* <A href="ftp://ftp.rsasecurity.com/pub/pkcs/ascii/layman.asc"
134-
* >ftp://ftp.rsasecurity.com/pub/pkcs/ascii/layman.asc</A>
133+
* <A href="https://luca.ntop.org/Teaching/Appunti/asn1.html"
134+
* >A Layman's Guide to a Subset of ASN.1, BER, and DER</A>
135135
* @throws PQFTranslationException
136136
* If the parse-tree cannot be translated into
137137
* PQF, for example

src/main/java/org/z3950/zing/cql/CQLParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
/**
1515
* Compiles CQL strings into parse trees of CQLNode subtypes.
1616
*
17-
* @see <A href="http://zing.z3950.org/cql/index.html"
18-
* >http://zing.z3950.org/cql/index.html</A>
17+
* @see <A href="https://zing.z3950.org/cql/index.html"
18+
* >https://zing.z3950.org/cql/index.html</A>
1919
*/
2020
public class CQLParser {
2121
private CQLTokenizer lexer;

0 commit comments

Comments
 (0)