Skip to content

Commit

Permalink
Use https for links (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
imba-tjd authored Jan 24, 2022
1 parent c49d9fa commit 4c835b9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The following table shows the impact of using caching:

Notice that for the current version, caching is **not enabled** by default, since the caches take disk space. Use `-C readwrite` or `-C read` to enable it for a query, or add `caching_mode` to `.qrc` to set a new default.

q's web site is [http://harelba.github.io/q/](http://harelba.github.io/q/) or [https://q.textasdata.wiki](https://q.textasdata.wiki) It contains everything you need to download and use q immediately.
q's web site is [https://harelba.github.io/q/](https://harelba.github.io/q/) or [https://q.textasdata.wiki](https://q.textasdata.wiki) It contains everything you need to download and use q immediately.


## Usage Examples
Expand All @@ -36,12 +36,12 @@ $ ps -ef | q -H "SELECT UID, COUNT(*) cnt FROM - GROUP BY UID ORDER BY cnt DESC
$ q "select count(*) from some_db.sqlite3:::albums a left join another_db.sqlite3:::tracks t on (a.album_id = t.album_id)"
```

Detailed examples are in [here](http://harelba.github.io/q/#examples)
Detailed examples are in [here](https://harelba.github.io/q/#examples)

## Installation.
**New Major Version `3.1.6` is out with a lot of significant additions.**

Instructions for all OSs are [here](http://harelba.github.io/q/#installation).
Instructions for all OSs are [here](https://harelba.github.io/q/#installation).

The previous version `2.0.19` Can still be downloaded from [here](https://github.com/harelba/q/releases/tag/2.0.19)

Expand Down
4 changes: 2 additions & 2 deletions bin/q.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#
# Its purpose is to bring SQL expressive power to manipulating text data using the Linux command line.
#
# Full Documentation and details in http://harelba.github.io/q/
# Full Documentation and details in https://harelba.github.io/q/
#
# Run with --help for command line details
#
Expand Down Expand Up @@ -2399,7 +2399,7 @@ def print_credentials():
print("q version %s" % q_version, file=sys.stderr)
print("Python: %s" % " // ".join([str(x).strip() for x in sys.version.split("\n")]), file=sys.stderr)
print("Copyright (C) 2012-2021 Harel Ben-Attia ([email protected], @harelba on twitter)", file=sys.stderr)
print("http://harelba.github.io/q/", file=sys.stderr)
print("https://harelba.github.io/q/", file=sys.stderr)
print(file=sys.stderr)

class QWarning(object):
Expand Down
2 changes: 1 addition & 1 deletion doc/USAGE.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Any standard SQL expression, condition (both WHERE and HAVING), GROUP BY, ORDER

JOINs are supported and Subqueries are supported in the WHERE clause, but unfortunately not in the FROM clause for now. Use table aliases when performing JOINs.

The SQL syntax itself is sqlite's syntax. For details look at http://www.sqlite.org/lang.html or search the net for examples.
The SQL syntax itself is sqlite's syntax. For details look at https://www.sqlite.org/lang.html or search the net for examples.

**NOTE:** Full type detection is implemented, so there is no need for any casting or anything.

Expand Down
2 changes: 1 addition & 1 deletion mkdocs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ Query/Input/Output encodings are fully supported (and q tries to provide out-of-
JOINs are supported and Subqueries are supported in the WHERE clause, but unfortunately not in the FROM clause for now. Use table aliases when performing JOINs.
The SQL syntax itself is sqlite's syntax. For details look at http://www.sqlite.org/lang.html or search the net for examples.
The SQL syntax itself is sqlite's syntax. For details look at https://www.sqlite.org/lang.html or search the net for examples.
NOTE: When using the `-O` output header option, use column name aliases if you want to control the output column names. For example, `q -O -H "select count(*) cnt,sum(*) as mysum from -"` would output `cnt` and `mysum` as the output header column names.
Expand Down
2 changes: 1 addition & 1 deletion mkdocs/docs/index_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ q 的每一个参数都是由双引号包裹的一条完整的SQL语句。所有

在WHERE条件查询中,支持JOIN操作和子查询,但在FROM子句中并不支持。JOIN操作时,可以为文件起别名。

SQL语法同sqlite的语法,详情见 http://www.sqlite.org/lang.html 或上网找一些示例。
SQL语法同sqlite的语法,详情见 https://www.sqlite.org/lang.html 或上网找一些示例。

**注意**

Expand Down
4 changes: 2 additions & 2 deletions mkdocs/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
site_name: q - Text as Data
site_url: http://harelba.github.io/q/
repo_url: http://github.com/harelba/q
site_url: https://harelba.github.io/q/
repo_url: https://github.com/harelba/q
edit_uri: ""
site_description: Text as Data - q is a command line tool that allows direct execution of SQL-like queries on CSVs/TSVs (and any other tabular text files).
site_author: Harel Ben-Attia
Expand Down

0 comments on commit 4c835b9

Please sign in to comment.