Search is not available for this dataset
id
stringlengths
1
8
text
stringlengths
72
9.81M
addition_count
int64
0
10k
commit_subject
stringlengths
0
3.7k
deletion_count
int64
0
8.43k
file_extension
stringlengths
0
32
lang
stringlengths
1
94
license
stringclasses
10 values
repo_name
stringlengths
9
59
10050250
<NME> CHANGELOG.md <BEF> ## RECENT CHANGES ### dd Mmm YYYY: To be done - Make --log-conflicts non experimental (randomly fails) - ! new option FORCE_CONFLICT_PREVALANCE which will always use Initiator or Target, regardless of best time - ! target-helper: destination mails etc on target, also, no cmd after on co...
1
Updated changelog
1
.md
md
bsd-3-clause
deajan/osync
10050251
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016111503 ## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr ## To use in a program, define the following variables: #############################################################...
8
Logger now creates flag files
1
.sh
sh
bsd-3-clause
deajan/osync
10050252
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016111503 ## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr ## To use in a program, define the following variables: #############################################################...
8
Logger now creates flag files
1
.sh
sh
bsd-3-clause
deajan/osync
10050253
<NME> README.md <BEF> # osync [![Build Status](https://travis-ci.org/deajan/osync.svg?branch=master)](https://travis-ci.org/deajan/osync) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) [![GitHub Release](https://img.shields.io/github/release/de...
2
Update README for install instructions
3
.md
md
bsd-3-clause
deajan/osync
10050254
<NME> README.md <BEF> # osync [![Build Status](https://travis-ci.org/deajan/osync.svg?branch=master)](https://travis-ci.org/deajan/osync) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) [![GitHub Release](https://img.shields.io/github/release/de...
2
Update README for install instructions
3
.md
md
bsd-3-clause
deajan/osync
10050255
<NME> README.md <BEF> <p align="center"><img src="http://lesscss.org/public/img/less_logo.png" width="264" height="117"> <p align="center"> <a href="https://github.com/less/less.js/actions?query=branch%3Amaster"><img src="https://github.com/less/less.js/actions/workflows/ci.yml/badge.svg?branch=master" alt="Gi...
1
fix SO link in readme
1
.md
md
apache-2.0
less/less.js
10050256
<NME> README.md <BEF> <p align="center"><img src="http://lesscss.org/public/img/less_logo.png" width="264" height="117"> <p align="center"> <a href="https://github.com/less/less.js/actions?query=branch%3Amaster"><img src="https://github.com/less/less.js/actions/workflows/ci.yml/badge.svg?branch=master" alt="Gi...
1
fix SO link in readme
1
.md
md
apache-2.0
less/less.js
10050257
<NME> README.md <BEF> <p align="center"><img src="http://lesscss.org/public/img/less_logo.png" width="264" height="117"> <p align="center"> <a href="https://github.com/less/less.js/actions?query=branch%3Amaster"><img src="https://github.com/less/less.js/actions/workflows/ci.yml/badge.svg?branch=master" alt="Gi...
1
fix SO link in readme
1
.md
md
apache-2.0
less/less.js
10050258
<NME> utils.js <BEF> /* jshint proto: true */ import * as Constants from './constants'; import { copy } from 'copy-anything'; export function getLocation(index, inputStream) { let n = index + 1; let line = null; let column = -1; while (--n >= 0 && inputStream.charAt(n) !== '\n') { column++; ...
4
Fix eslint warnimg (#3709)
0
.js
js
apache-2.0
less/less.js
10050259
<NME> utils.js <BEF> /* jshint proto: true */ import * as Constants from './constants'; import { copy } from 'copy-anything'; export function getLocation(index, inputStream) { let n = index + 1; let line = null; let column = -1; while (--n >= 0 && inputStream.charAt(n) !== '\n') { column++; ...
4
Fix eslint warnimg (#3709)
0
.js
js
apache-2.0
less/less.js
10050260
<NME> utils.js <BEF> /* jshint proto: true */ import * as Constants from './constants'; import { copy } from 'copy-anything'; export function getLocation(index, inputStream) { let n = index + 1; let line = null; let column = -1; while (--n >= 0 && inputStream.charAt(n) !== '\n') { column++; ...
4
Fix eslint warnimg (#3709)
0
.js
js
apache-2.0
less/less.js
10050261
<NME> compat.js <BEF> ADDFILE <MSG> Created a compat.js file in build/, for browser compatiblity, moved trim() in there. LESS builds to dist/ now. <DFF> @@ -0,0 +1,5 @@ +if (typeof(String.prototype.trim) !== "function") { + String.prototype.trim = function (str) { + return this.replace(/^\s\s*/, '').replace(...
5
Created a compat.js file in build/, for browser compatiblity, moved trim() in there. LESS builds to dist/ now.
0
.js
js
apache-2.0
less/less.js
10050262
<NME> compat.js <BEF> ADDFILE <MSG> Created a compat.js file in build/, for browser compatiblity, moved trim() in there. LESS builds to dist/ now. <DFF> @@ -0,0 +1,5 @@ +if (typeof(String.prototype.trim) !== "function") { + String.prototype.trim = function (str) { + return this.replace(/^\s\s*/, '').replace(...
5
Created a compat.js file in build/, for browser compatiblity, moved trim() in there. LESS builds to dist/ now.
0
.js
js
apache-2.0
less/less.js
10050263
<NME> compat.js <BEF> ADDFILE <MSG> Created a compat.js file in build/, for browser compatiblity, moved trim() in there. LESS builds to dist/ now. <DFF> @@ -0,0 +1,5 @@ +if (typeof(String.prototype.trim) !== "function") { + String.prototype.trim = function (str) { + return this.replace(/^\s\s*/, '').replace(...
5
Created a compat.js file in build/, for browser compatiblity, moved trim() in there. LESS builds to dist/ now.
0
.js
js
apache-2.0
less/less.js
10050264
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013...
2
Fixes two typos.
2
.sh
sh
bsd-3-clause
deajan/osync
10050265
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013...
2
Fixes two typos.
2
.sh
sh
bsd-3-clause
deajan/osync
10050266
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
1
Fixed attachment command in SendEmail
1
.sh
sh
bsd-3-clause
deajan/osync
10050267
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
1
Fixed attachment command in SendEmail
1
.sh
sh
bsd-3-clause
deajan/osync
10050268
<NME> CHANGELOG.md <BEF> ## RECENT CHANGES ### dd Mmm YYYY: To be done - Make --log-conflicts non experimental (randomly fails) - ! new option FORCE_CONFLICT_PREVALANCE which will always use Initiator or Target, regardless of best time - ! target-helper: destination mails etc on target, also, no cmd after on co...
2
Updated changelog
1
.md
md
bsd-3-clause
deajan/osync
10050269
<NME> CHANGELOG.md <BEF> ## RECENT CHANGES ### dd Mmm YYYY: To be done - Make --log-conflicts non experimental (randomly fails) - ! new option FORCE_CONFLICT_PREVALANCE which will always use Initiator or Target, regardless of best time - ! target-helper: destination mails etc on target, also, no cmd after on co...
2
Updated changelog
1
.md
md
bsd-3-clause
deajan/osync
10050270
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
4
Simplify --skip-compress rsync argument
3
.sh
sh
bsd-3-clause
deajan/osync
10050271
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
4
Simplify --skip-compress rsync argument
3
.sh
sh
bsd-3-clause
deajan/osync
10050272
<NME> media.js <BEF> ADDFILE <MSG> Merge pull request #634 from sirlantis/patch-media Add @media bubbling/nesting/merging <DFF> @@ -0,0 +1,114 @@ +(function (tree) { + +tree.Media = function (value, features) { + var el = new(tree.Element)('&', null, 0), + selectors = [new(tree.Selector)([el])]; + + this....
114
Merge pull request #634 from sirlantis/patch-media
0
.js
js
apache-2.0
less/less.js
10050273
<NME> media.js <BEF> ADDFILE <MSG> Merge pull request #634 from sirlantis/patch-media Add @media bubbling/nesting/merging <DFF> @@ -0,0 +1,114 @@ +(function (tree) { + +tree.Media = function (value, features) { + var el = new(tree.Element)('&', null, 0), + selectors = [new(tree.Selector)([el])]; + + this....
114
Merge pull request #634 from sirlantis/patch-media
0
.js
js
apache-2.0
less/less.js
10050274
<NME> media.js <BEF> ADDFILE <MSG> Merge pull request #634 from sirlantis/patch-media Add @media bubbling/nesting/merging <DFF> @@ -0,0 +1,114 @@ +(function (tree) { + +tree.Media = function (value, features) { + var el = new(tree.Element)('&', null, 0), + selectors = [new(tree.Selector)([el])]; + + this....
114
Merge pull request #634 from sirlantis/patch-media
0
.js
js
apache-2.0
less/less.js
10050275
<NME> README.md <BEF> # osync [![Build Status](https://travis-ci.org/deajan/osync.svg?branch=master)](https://travis-ci.org/deajan/osync) [![GitHub Release](https://img.shields.io/github/release/deajan/osync.svg?label=Latest)](https://github.com/deajan/osync/releases/latest) A two way filesync script with fault toler...
22
Updated readme file
14
.md
md
bsd-3-clause
deajan/osync
10050276
<NME> README.md <BEF> # osync [![Build Status](https://travis-ci.org/deajan/osync.svg?branch=master)](https://travis-ci.org/deajan/osync) [![GitHub Release](https://img.shields.io/github/release/deajan/osync.svg?label=Latest)](https://github.com/deajan/osync/releases/latest) A two way filesync script with fault toler...
22
Updated readme file
14
.md
md
bsd-3-clause
deajan/osync
10050277
<NME> merge.sh <BEF> #!/usr/bin/env bash ## MERGE 2018100202 ## Merges ofunctions.sh and n_program.sh into program.sh ## Adds installer PROGRAM=merge INSTANCE_ID=dev function Usage { echo "Merges ofunctions.sh and n_program.sh into debug_program.sh and ../program.sh" echo "Usage" echo "$0 osync|obackup|pmocr" } ...
20
Fixed merge producing rogue logs
19
.sh
sh
bsd-3-clause
deajan/osync
10050278
<NME> merge.sh <BEF> #!/usr/bin/env bash ## MERGE 2018100202 ## Merges ofunctions.sh and n_program.sh into program.sh ## Adds installer PROGRAM=merge INSTANCE_ID=dev function Usage { echo "Merges ofunctions.sh and n_program.sh into debug_program.sh and ../program.sh" echo "Usage" echo "$0 osync|obackup|pmocr" } ...
20
Fixed merge producing rogue logs
19
.sh
sh
bsd-3-clause
deajan/osync
10050279
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013...
2
Another bad fix for #175
2
.sh
sh
bsd-3-clause
deajan/osync
10050280
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013...
2
Another bad fix for #175
2
.sh
sh
bsd-3-clause
deajan/osync
10050281
<NME> linux.yml <BEF> name: linux-tests on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest] steps: - name: Install dependencies run: | sudo apt-get install inotify-tools acl env: RUNNING_ON_GITHUB_ACTIONS: t...
2
Update linux.yml
0
.yml
github/workflows/linux
bsd-3-clause
deajan/osync
10050282
<NME> linux.yml <BEF> name: linux-tests on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest] steps: - name: Install dependencies run: | sudo apt-get install inotify-tools acl env: RUNNING_ON_GITHUB_ACTIONS: t...
2
Update linux.yml
0
.yml
github/workflows/linux
bsd-3-clause
deajan/osync
10050283
<NME> mixin-noparens.less <BEF> ADDFILE <MSG> Roll back paren requirement on mixin calls (#3588) <DFF> @@ -0,0 +1,9 @@ +#theme { + > .mixin { + background-color: grey; + } +} +#container { + color: black; + #theme > .mixin; +} \ No newline at end of file
9
Roll back paren requirement on mixin calls (#3588)
0
.less
less
apache-2.0
less/less.js
10050284
<NME> mixin-noparens.less <BEF> ADDFILE <MSG> Roll back paren requirement on mixin calls (#3588) <DFF> @@ -0,0 +1,9 @@ +#theme { + > .mixin { + background-color: grey; + } +} +#container { + color: black; + #theme > .mixin; +} \ No newline at end of file
9
Roll back paren requirement on mixin calls (#3588)
0
.less
less
apache-2.0
less/less.js
10050285
<NME> mixin-noparens.less <BEF> ADDFILE <MSG> Roll back paren requirement on mixin calls (#3588) <DFF> @@ -0,0 +1,9 @@ +#theme { + > .mixin { + background-color: grey; + } +} +#container { + color: black; + #theme > .mixin; +} \ No newline at end of file
9
Roll back paren requirement on mixin calls (#3588)
0
.less
less
apache-2.0
less/less.js
10050286
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #### OFUNCTIONS MINI SUBSET #### _OFUNCTIONS_VERSION=2.1-RC1+dev _OFUNCTIONS_BUILD=2016122303 #### _OFUNCTIONS_BOOTSTRAP SUBSET #### _OFUNCTIONS_...
7
Added small fixes from obackup
4
.sh
sh
bsd-3-clause
deajan/osync
10050287
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #### OFUNCTIONS MINI SUBSET #### _OFUNCTIONS_VERSION=2.1-RC1+dev _OFUNCTIONS_BUILD=2016122303 #### _OFUNCTIONS_BOOTSTRAP SUBSET #### _OFUNCTIONS_...
7
Added small fixes from obackup
4
.sh
sh
bsd-3-clause
deajan/osync
10050288
<NME> scroll-to-config.model.ts <BEF> ADDFILE <MSG> Improved TypeScript Interfaces - Stricter interfaces using DRY principles <DFF> @@ -0,0 +1,35 @@ +import { ScrollToAnimationEasing } from './scroll-to-easing.model'; +import { ScrollToTarget } from './scroll-to-targets.model'; +import { ScrollToEvent } from './scrol...
35
Improved TypeScript Interfaces
0
.ts
model
mit
nicky-lenaers/ngx-scroll-to
10050289
<NME> scroll-to-config.model.ts <BEF> ADDFILE <MSG> Improved TypeScript Interfaces - Stricter interfaces using DRY principles <DFF> @@ -0,0 +1,35 @@ +import { ScrollToAnimationEasing } from './scroll-to-easing.model'; +import { ScrollToTarget } from './scroll-to-targets.model'; +import { ScrollToEvent } from './scrol...
35
Improved TypeScript Interfaces
0
.ts
model
mit
nicky-lenaers/ngx-scroll-to
10050290
<NME> scroll-to-config.model.ts <BEF> ADDFILE <MSG> Improved TypeScript Interfaces - Stricter interfaces using DRY principles <DFF> @@ -0,0 +1,35 @@ +import { ScrollToAnimationEasing } from './scroll-to-easing.model'; +import { ScrollToTarget } from './scroll-to-targets.model'; +import { ScrollToEvent } from './scrol...
35
Improved TypeScript Interfaces
0
.ts
model
mit
nicky-lenaers/ngx-scroll-to
10050291
<NME> directives-bubling.less <BEF> ADDFILE <MSG> Merge pull request #2473 from SomMeri/nested-directives-in-directives-v2-1691-2104 Bubbling of nested directives <DFF> @@ -0,0 +1,128 @@ +//simple case: @document +.parent { + color:green; + + @document url-prefix() { + .child { + color:red; + } + } ...
128
Merge pull request #2473 from SomMeri/nested-directives-in-directives-v2-1691-2104
0
.less
less
apache-2.0
less/less.js
10050292
<NME> directives-bubling.less <BEF> ADDFILE <MSG> Merge pull request #2473 from SomMeri/nested-directives-in-directives-v2-1691-2104 Bubbling of nested directives <DFF> @@ -0,0 +1,128 @@ +//simple case: @document +.parent { + color:green; + + @document url-prefix() { + .child { + color:red; + } + } ...
128
Merge pull request #2473 from SomMeri/nested-directives-in-directives-v2-1691-2104
0
.less
less
apache-2.0
less/less.js
10050293
<NME> directives-bubling.less <BEF> ADDFILE <MSG> Merge pull request #2473 from SomMeri/nested-directives-in-directives-v2-1691-2104 Bubbling of nested directives <DFF> @@ -0,0 +1,128 @@ +//simple case: @document +.parent { + color:green; + + @document url-prefix() { + .child { + color:red; + } + } ...
128
Merge pull request #2473 from SomMeri/nested-directives-in-directives-v2-1691-2104
0
.less
less
apache-2.0
less/less.js
10050294
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016111001 ## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr ## To use in a program, define the following variables: #############################################################...
6
Remove forgotten -f parameter
4
.sh
sh
bsd-3-clause
deajan/osync
10050295
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016111001 ## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr ## To use in a program, define the following variables: #############################################################...
6
Remove forgotten -f parameter
4
.sh
sh
bsd-3-clause
deajan/osync
10050296
<NME> setupHandlers.js <BEF> 'use strict' const debug = require('debug')('HeadlessChrome:handlers') module.exports = async function setupHandlers () { debug(`Setting up handlers...`) const Network = this.client.Network const Page = this.client.Page const Log = this.client.Log /** * Prepare the browser c...
5
Add all the Network events available in the protocol
5
.js
js
mit
LucianoGanga/simple-headless-chrome
10050297
<NME> CHANGELOG.md <BEF> ## Change Log ### v4.1.3 (2022-06-09) - supports the scoped `@plugin` directive to load function plugins - All directives are bubbled (e.g. supports), not just media - Performance improvements to the parser - should help non-chrome browsers with very large less files to be alot quicker. -...
10
Update CHANGELOG.md
10
.md
md
apache-2.0
less/less.js
10050298
<NME> CHANGELOG.md <BEF> ## Change Log ### v4.1.3 (2022-06-09) - supports the scoped `@plugin` directive to load function plugins - All directives are bubbled (e.g. supports), not just media - Performance improvements to the parser - should help non-chrome browsers with very large less files to be alot quicker. -...
10
Update CHANGELOG.md
10
.md
md
apache-2.0
less/less.js
10050299
<NME> CHANGELOG.md <BEF> ## Change Log ### v4.1.3 (2022-06-09) - supports the scoped `@plugin` directive to load function plugins - All directives are bubbled (e.g. supports), not just media - Performance improvements to the parser - should help non-chrome browsers with very large less files to be alot quicker. -...
10
Update CHANGELOG.md
10
.md
md
apache-2.0
less/less.js
10050300
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash #### OFUNCTIONS FULL SUBSET #### #### OFUNCTIONS MINI SUBSET #### _OFUNCTIONS_VERSION=2.1-RC2 _OFUNCTIONS_BUILD=2017020801 #### _OFUNCTIONS_BOOTSTRAP SUBSET #### _OFUNCTIONS_BOOTSTRAP=true #### _OFUNCTIONS_BOOTSTRAP SUBSET END #### ## PROGRAM=program-name ## INSTANCE_ID=pro...
4
Updated ofunctions from obackup
3
.sh
sh
bsd-3-clause
deajan/osync
10050301
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash #### OFUNCTIONS FULL SUBSET #### #### OFUNCTIONS MINI SUBSET #### _OFUNCTIONS_VERSION=2.1-RC2 _OFUNCTIONS_BUILD=2017020801 #### _OFUNCTIONS_BOOTSTRAP SUBSET #### _OFUNCTIONS_BOOTSTRAP=true #### _OFUNCTIONS_BOOTSTRAP SUBSET END #### ## PROGRAM=program-name ## INSTANCE_ID=pro...
4
Updated ofunctions from obackup
3
.sh
sh
bsd-3-clause
deajan/osync
10050302
<NME> README.md <BEF> <p align="center"><img src="http://lesscss.org/public/img/less_logo.png" width="264" height="117"> <p align="center"> <a href="https://github.com/less/less.js/actions?query=branch%3Amaster"><img src="https://github.com/less/less.js/actions/workflows/ci.yml/badge.svg?branch=master" alt="Gi...
2
Fix Changelog link
2
.md
md
apache-2.0
less/less.js
10050303
<NME> README.md <BEF> <p align="center"><img src="http://lesscss.org/public/img/less_logo.png" width="264" height="117"> <p align="center"> <a href="https://github.com/less/less.js/actions?query=branch%3Amaster"><img src="https://github.com/less/less.js/actions/workflows/ci.yml/badge.svg?branch=master" alt="Gi...
2
Fix Changelog link
2
.md
md
apache-2.0
less/less.js
10050304
<NME> README.md <BEF> <p align="center"><img src="http://lesscss.org/public/img/less_logo.png" width="264" height="117"> <p align="center"> <a href="https://github.com/less/less.js/actions?query=branch%3Amaster"><img src="https://github.com/less/less.js/actions/workflows/ci.yml/badge.svg?branch=master" alt="Gi...
2
Fix Changelog link
2
.md
md
apache-2.0
less/less.js
10050305
<NME> parse-error-missing-bracket.txt <BEF> ADDFILE <MSG> Add more error tests from #244 <DFF> @@ -0,0 +1,2 @@ +ParseError: missing closing `}` in {path}parse-error-missing-bracket.less:3:1 +2 background-color: #fff;
2
Add more error tests from #244
0
.txt
txt
apache-2.0
less/less.js
10050306
<NME> parse-error-missing-bracket.txt <BEF> ADDFILE <MSG> Add more error tests from #244 <DFF> @@ -0,0 +1,2 @@ +ParseError: missing closing `}` in {path}parse-error-missing-bracket.less:3:1 +2 background-color: #fff;
2
Add more error tests from #244
0
.txt
txt
apache-2.0
less/less.js
10050307
<NME> parse-error-missing-bracket.txt <BEF> ADDFILE <MSG> Add more error tests from #244 <DFF> @@ -0,0 +1,2 @@ +ParseError: missing closing `}` in {path}parse-error-missing-bracket.less:3:1 +2 background-color: #fff;
2
Add more error tests from #244
0
.txt
txt
apache-2.0
less/less.js
10050308
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016112902 ## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr ## To use in a program, define the following variables: #############################################################...
3
Quick paranoia debug fix
2
.sh
sh
bsd-3-clause
deajan/osync
10050309
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016112902 ## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr ## To use in a program, define the following variables: #############################################################...
3
Quick paranoia debug fix
2
.sh
sh
bsd-3-clause
deajan/osync
10050310
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
4
Fixed possible deadlock in ExecTasks
2
.sh
sh
bsd-3-clause
deajan/osync
10050311
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
4
Fixed possible deadlock in ExecTasks
2
.sh
sh
bsd-3-clause
deajan/osync
10050312
<NME> n_osync.sh <BEF> #!/usr/bin/env bash PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-RC1 PROGRAM_BUILD=2016121302 IS_STABLE=yes # Execution order #__WITH_PARANOIA_DEBUG # F...
3
Bumped version to RC1+dev
3
.sh
sh
bsd-3-clause
deajan/osync
10050313
<NME> n_osync.sh <BEF> #!/usr/bin/env bash PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-RC1 PROGRAM_BUILD=2016121302 IS_STABLE=yes # Execution order #__WITH_PARANOIA_DEBUG # F...
3
Bumped version to RC1+dev
3
.sh
sh
bsd-3-clause
deajan/osync
10050314
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(L) 2013-2015 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.1-pre PROGRAM_BUILD=2016...
4
Fixed rsync pattern functionload when quicksync mode enabled
2
.sh
sh
bsd-3-clause
deajan/osync
10050315
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(L) 2013-2015 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.1-pre PROGRAM_BUILD=2016...
4
Fixed rsync pattern functionload when quicksync mode enabled
2
.sh
sh
bsd-3-clause
deajan/osync
10050316
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(L) 2013-2015 by Orsiris \"Ozy\" de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=0.99RC4 PROGRAM_BU...
23
Fixed infamous exclude bug introduced with no globbing
9
.sh
sh
bsd-3-clause
deajan/osync
10050317
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(L) 2013-2015 by Orsiris \"Ozy\" de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=0.99RC4 PROGRAM_BU...
23
Fixed infamous exclude bug introduced with no globbing
9
.sh
sh
bsd-3-clause
deajan/osync
10050318
<NME> CHANGELOG.md <BEF> # 2.5.1 2015-05-21 - [#3630](https://github.com/less/less.js/pull/3630) Fix needle dependency warning typo. (#3630) (@cjwilsontech) ### v4.1.1 (2021-01-31) - [#3597](https://github.com/less/less.js/pull/3597) Fix expected response when there's a socket error (#3597) (@zxfrank) - [#3589](https...
11
missing changelog for 2.5.2
0
.md
md
apache-2.0
less/less.js
10050319
<NME> CHANGELOG.md <BEF> # 2.5.1 2015-05-21 - [#3630](https://github.com/less/less.js/pull/3630) Fix needle dependency warning typo. (#3630) (@cjwilsontech) ### v4.1.1 (2021-01-31) - [#3597](https://github.com/less/less.js/pull/3597) Fix expected response when there's a socket error (#3597) (@zxfrank) - [#3589](https...
11
missing changelog for 2.5.2
0
.md
md
apache-2.0
less/less.js
10050320
<NME> CHANGELOG.md <BEF> # 2.5.1 2015-05-21 - [#3630](https://github.com/less/less.js/pull/3630) Fix needle dependency warning typo. (#3630) (@cjwilsontech) ### v4.1.1 (2021-01-31) - [#3597](https://github.com/less/less.js/pull/3597) Fix expected response when there's a socket error (#3597) (@zxfrank) - [#3589](https...
11
missing changelog for 2.5.2
0
.md
md
apache-2.0
less/less.js
10050321
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-beta3 PROGRAM_BUILD=...
4
Remote functions should not log to files
7
.sh
sh
bsd-3-clause
deajan/osync
10050322
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-beta3 PROGRAM_BUILD=...
4
Remote functions should not log to files
7
.sh
sh
bsd-3-clause
deajan/osync
10050323
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016111002 ## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr ## To use in a program, define the following variables: #############################################################...
12
Refactored SendAlert and SendEmail
134
.sh
sh
bsd-3-clause
deajan/osync
10050324
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016111002 ## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr ## To use in a program, define the following variables: #############################################################...
12
Refactored SendAlert and SendEmail
134
.sh
sh
bsd-3-clause
deajan/osync
10050325
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #### OFUNCTIONS MINI SUBSET #### _OFUNCTIONS_VERSION=2.1-dev _OFUNCTIONS_BUILD=2016121107 #### _OFUNCTIONS_BOOTSTRAP SUBSET #### _OFUNCTIONS_BOOT...
2
Fixed skip-compress regex not liked by bsd
2
.sh
sh
bsd-3-clause
deajan/osync
10050326
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #### OFUNCTIONS MINI SUBSET #### _OFUNCTIONS_VERSION=2.1-dev _OFUNCTIONS_BUILD=2016121107 #### _OFUNCTIONS_BOOTSTRAP SUBSET #### _OFUNCTIONS_BOOT...
2
Fixed skip-compress regex not liked by bsd
2
.sh
sh
bsd-3-clause
deajan/osync
10050327
<NME> sync.conf.example <BEF> ###### osync - Rsync based two way sync engine with fault tolerance ###### (C) 2013-2020 by Orsiris de Jong (www.netpower.fr) [GENERAL] CONFIG_FILE_REVISION=1.3.0 ## Sync job identification INSTANCE_ID="sync_test" ## Directories to synchronize. ## Initiator is the system osync runs on. ...
7
Allow custom statedir
1
.example
conf
bsd-3-clause
deajan/osync
10050328
<NME> sync.conf.example <BEF> ###### osync - Rsync based two way sync engine with fault tolerance ###### (C) 2013-2020 by Orsiris de Jong (www.netpower.fr) [GENERAL] CONFIG_FILE_REVISION=1.3.0 ## Sync job identification INSTANCE_ID="sync_test" ## Directories to synchronize. ## Initiator is the system osync runs on. ...
7
Allow custom statedir
1
.example
conf
bsd-3-clause
deajan/osync
10050329
<NME> actions.js <BEF> /* global XMLHttpRequest */ 'use strict' const debug = require('debug')('HeadlessChrome:actions') const Promise = require('bluebird') const fs = require('mz/fs') const _ = require('lodash') const { browserIsInitialized, sleep, fixSelector, interleaveArrayToObject, promiseTimeout, o...
58
Add savePDF method
32
.js
js
mit
LucianoGanga/simple-headless-chrome
10050330
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### _OFUNCTIONS_VERSION=2.0 _OFUNCTIONS_BUILD=2016120401 ## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr ## To use in a program, define the following variables: ## To use in a program, define th...
13
Code compliance on ArrayContains
9
.sh
sh
bsd-3-clause
deajan/osync
10050331
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### _OFUNCTIONS_VERSION=2.0 _OFUNCTIONS_BUILD=2016120401 ## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr ## To use in a program, define the following variables: ## To use in a program, define th...
13
Code compliance on ArrayContains
9
.sh
sh
bsd-3-clause
deajan/osync
10050332
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO(critical): handle conflict prevalance, especially in sync_attrs function PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-dev-para...
48
Updated WaitFor functions & comments
27
.sh
sh
bsd-3-clause
deajan/osync
10050333
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO(critical): handle conflict prevalance, especially in sync_attrs function PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-dev-para...
48
Updated WaitFor functions & comments
27
.sh
sh
bsd-3-clause
deajan/osync
10050334
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(L) 2013-2015 by Orsiris \"Ozy\" de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=0.99RC4 PROGRAM_BU...
1
Updated serial
1
.sh
sh
bsd-3-clause
deajan/osync
10050335
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(L) 2013-2015 by Orsiris \"Ozy\" de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=0.99RC4 PROGRAM_BU...
1
Updated serial
1
.sh
sh
bsd-3-clause
deajan/osync
10050336
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016080903 ## BEGIN Generic functions for osync & obackup written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: set _LOGGER_PREFIX in other apps, specially for osync daemon mode #TODO: set _LOGGER_STDERR in ...
6
Updated ofunctions
7
.sh
sh
bsd-3-clause
deajan/osync
10050337
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016080903 ## BEGIN Generic functions for osync & obackup written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: set _LOGGER_PREFIX in other apps, specially for osync daemon mode #TODO: set _LOGGER_STDERR in ...
6
Updated ofunctions
7
.sh
sh
bsd-3-clause
deajan/osync
10050338
<NME> osync.spec <BEF> %define name osync %define version 1.2 %define gitsource https://github.com/deajan/%{name}/archive/v%{version}.zip %define use_systemd 1 %{?el5:%define use_systemd 0} %{?el6:%define use_systemd 0} Name: %{name} Version: %{version} Release: 1%{?dist} Summary: robust file sy...
7
Fixed binpath for service files
1
.spec
spec
bsd-3-clause
deajan/osync
10050339
<NME> osync.spec <BEF> %define name osync %define version 1.2 %define gitsource https://github.com/deajan/%{name}/archive/v%{version}.zip %define use_systemd 1 %{?el5:%define use_systemd 0} %{?el6:%define use_systemd 0} Name: %{name} Version: %{version} Release: 1%{?dist} Summary: robust file sy...
7
Fixed binpath for service files
1
.spec
spec
bsd-3-clause
deajan/osync
10050340
<NME> less-1.2.2.min.js <BEF> ADDFILE <MSG> (dist) build 1.2.2 <DFF> @@ -0,0 +1,9 @@ +// +// LESS - Leaner CSS v1.2.2 +// http://lesscss.org +// +// Copyright (c) 2009-2011, Alexis Sellier +// Licensed under the Apache 2.0 License. +// +(function(a,b){function c(b){return a.less[b.split("/")[1]]}function m(){var a=do...
9
(dist) build 1.2.2
0
.js
2
apache-2.0
less/less.js
10050341
<NME> less-1.2.2.min.js <BEF> ADDFILE <MSG> (dist) build 1.2.2 <DFF> @@ -0,0 +1,9 @@ +// +// LESS - Leaner CSS v1.2.2 +// http://lesscss.org +// +// Copyright (c) 2009-2011, Alexis Sellier +// Licensed under the Apache 2.0 License. +// +(function(a,b){function c(b){return a.less[b.split("/")[1]]}function m(){var a=do...
9
(dist) build 1.2.2
0
.js
2
apache-2.0
less/less.js
10050342
<NME> less-1.2.2.min.js <BEF> ADDFILE <MSG> (dist) build 1.2.2 <DFF> @@ -0,0 +1,9 @@ +// +// LESS - Leaner CSS v1.2.2 +// http://lesscss.org +// +// Copyright (c) 2009-2011, Alexis Sellier +// Licensed under the Apache 2.0 License. +// +(function(a,b){function c(b){return a.less[b.split("/")[1]]}function m(){var a=do...
9
(dist) build 1.2.2
0
.js
2
apache-2.0
less/less.js
10050343
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
4
More optional checks to remove if not paranoia debug
4
.sh
sh
bsd-3-clause
deajan/osync
10050344
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
4
More optional checks to remove if not paranoia debug
4
.sh
sh
bsd-3-clause
deajan/osync
10050345
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance PROGRAM_BUILD=2015...
709
Initial compliance with coding standards
962
.sh
sh
bsd-3-clause
deajan/osync
10050346
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance PROGRAM_BUILD=2015...
709
Initial compliance with coding standards
962
.sh
sh
bsd-3-clause
deajan/osync
10050347
<NME> file-manager-api.js <BEF> ADDFILE <MSG> Fix the API files <DFF> @@ -0,0 +1,95 @@ +module.exports = { + /** + * Given the full path to a file, return the path component + * Provided by AbstractFileManager + * @param {string} filename + * @returns {string} + */ + getPath: function(filenam...
95
Fix the API files
0
.js
js
apache-2.0
less/less.js
10050348
<NME> file-manager-api.js <BEF> ADDFILE <MSG> Fix the API files <DFF> @@ -0,0 +1,95 @@ +module.exports = { + /** + * Given the full path to a file, return the path component + * Provided by AbstractFileManager + * @param {string} filename + * @returns {string} + */ + getPath: function(filenam...
95
Fix the API files
0
.js
js
apache-2.0
less/less.js
10050349
<NME> file-manager-api.js <BEF> ADDFILE <MSG> Fix the API files <DFF> @@ -0,0 +1,95 @@ +module.exports = { + /** + * Given the full path to a file, return the path component + * Provided by AbstractFileManager + * @param {string} filename + * @returns {string} + */ + getPath: function(filenam...
95
Fix the API files
0
.js
js
apache-2.0
less/less.js