1
0
mirror of https://github.com/owenthereal/jqplay.git synced 2025-04-19 06:02:17 +03:00

Update to jqlang/jq

This commit is contained in:
Owen Ou 2023-05-30 18:13:37 -07:00
parent 7f4dee1b79
commit c1da8f6c2c
No known key found for this signature in database
GPG Key ID: 6CDA9490BEB1E446
4 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@ RUN apt-get update && \
wget && \
pip3 install pipenv
RUN git clone --recurse-submodules https://github.com/stedolan/jq.git && \
RUN git clone --recurse-submodules https://github.com/jqlang/jq.git && \
cd jq && \
git checkout $JQ_TAG && \
autoreconf -i && \

View File

@ -2,7 +2,7 @@
[![OpenCollective](https://opencollective.com/jqplay/backers/badge.svg)](#backers) [![OpenCollective](https://opencollective.com/jqplay/sponsors/badge.svg)](#sponsors)
[jqplay](https://jqplay.org) is a playground for [jq](https://github.com/stedolan/jq). Please put it into good use.
[jqplay](https://jqplay.org) is a playground for [jq](https://github.com/jqlang/jq). Please put it into good use.
## Development

View File

@ -29,7 +29,7 @@
<div class="navbar-header">
<a href="/" class="navbar-brand"><img src="#{ .Asset "images/logo.png" }" alt="jqplay"></a>
</div>
<p class="navbar-text">A playground for <a href="https://stedolan.github.io/jq/" class="navbar-link">jq</a> #{.JQVer}</p>
<p class="navbar-text">A playground for <a href="https://jqlang.github.io/jq/" class="navbar-link">jq</a> #{.JQVer}</p>
<button type="button" class="btn btn-default navbar-btn pull-right" ng-click="shareSnippet()">
<span class="glyphicon glyphicon-share" aria-hidden="true"></span>Share snippet
</button>

View File

@ -106,7 +106,7 @@ angular.module('jqplay.controllers', []).controller('JqplayCtrl', function Jqpla
text: "array/object construction",
code: "[], {}",
input_q: "{user, title: .titles[]}",
input_j: '{"user":"stedolan","titles":["JQ Primer", "More JQ"]}'
input_j: '{"user":"jqlang","titles":["JQ Primer", "More JQ"]}'
},
{
text: "length of a value",