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
10049950
<NME> CHANGELOG.md <BEF> ## Change Log 2014-??-?? - Add support for using variables with @supports, @namespace, @charset - Fix support for `.mixin(@args...)` when called with no args (e.g. `.mixin();`) - Support property merging with +_ when spaces are needed and keep + for comma separated - Do unit conversions w...
1
Fixed a typo for 1.7.0: `@supports` -> `@keyframes`
1
.md
md
apache-2.0
less/less.js
10049951
<NME> no-js-errors.txt <BEF> ADDFILE <MSG> add option to disable javascript. Fixes #688 <DFF> @@ -0,0 +1,4 @@ +SyntaxError: You are using JavaScript, which has been disabled. in {path}no-js-errors.less on line 2, column 6: +1 .a { +2 a: `1 + 1`; +3 }
4
add option to disable javascript. Fixes #688
0
.txt
txt
apache-2.0
less/less.js
10049952
<NME> no-js-errors.txt <BEF> ADDFILE <MSG> add option to disable javascript. Fixes #688 <DFF> @@ -0,0 +1,4 @@ +SyntaxError: You are using JavaScript, which has been disabled. in {path}no-js-errors.less on line 2, column 6: +1 .a { +2 a: `1 + 1`; +3 }
4
add option to disable javascript. Fixes #688
0
.txt
txt
apache-2.0
less/less.js
10049953
<NME> no-js-errors.txt <BEF> ADDFILE <MSG> add option to disable javascript. Fixes #688 <DFF> @@ -0,0 +1,4 @@ +SyntaxError: You are using JavaScript, which has been disabled. in {path}no-js-errors.less on line 2, column 6: +1 .a { +2 a: `1 + 1`; +3 }
4
add option to disable javascript. Fixes #688
0
.txt
txt
apache-2.0
less/less.js
10049954
<NME> var-defs.less <BEF> ADDFILE <MSG> Merge branch 'master' into fix_issue_2508 Conflicts: bin/lessc <DFF> @@ -0,0 +1,1 @@ +@test-var: 'something'; \ No newline at end of file
1
Merge branch 'master' into fix_issue_2508
0
.less
less
apache-2.0
less/less.js
10049955
<NME> var-defs.less <BEF> ADDFILE <MSG> Merge branch 'master' into fix_issue_2508 Conflicts: bin/lessc <DFF> @@ -0,0 +1,1 @@ +@test-var: 'something'; \ No newline at end of file
1
Merge branch 'master' into fix_issue_2508
0
.less
less
apache-2.0
less/less.js
10049956
<NME> var-defs.less <BEF> ADDFILE <MSG> Merge branch 'master' into fix_issue_2508 Conflicts: bin/lessc <DFF> @@ -0,0 +1,1 @@ +@test-var: 'something'; \ No newline at end of file
1
Merge branch 'master' into fix_issue_2508
0
.less
less
apache-2.0
less/less.js
10049957
<NME> common_batch.sh <BEF> #!/usr/bin/env bash SUBPROGRAM=[prgname] PROGRAM="$SUBPROGRAM-batch" # Batch program to run osync / obackup instances sequentially and rerun failed ones AUTHOR="(L) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr - ozy@netpower.fr" PROGRAM_BUILD=2016120301 ## Runs an osync /ob...
2
Fixed batch did only pass last argument
2
.sh
sh
bsd-3-clause
deajan/osync
10049958
<NME> common_batch.sh <BEF> #!/usr/bin/env bash SUBPROGRAM=[prgname] PROGRAM="$SUBPROGRAM-batch" # Batch program to run osync / obackup instances sequentially and rerun failed ones AUTHOR="(L) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr - ozy@netpower.fr" PROGRAM_BUILD=2016120301 ## Runs an osync /ob...
2
Fixed batch did only pass last argument
2
.sh
sh
bsd-3-clause
deajan/osync
10049959
<NME> yarn.lock <BEF> # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. # yarn lockfile v1 "@types/core-js@^0.9.41": version "0.9.41" resolved "https://registry.yarnpkg.com/@types/core-js/-/core-js-0.9.41.tgz#cfeceb63c2beaa29f882252c7c18e0e9471ff4e2" "@types/mkdirp@^0.3.29": version "0.3.29" r...
4
Merge pull request #36 from benbristow/master
0
.lock
lock
mit
LucianoGanga/simple-headless-chrome
10049960
<NME> README.md <BEF> # angular2-highcharts > Angular2 charting components based on Highcharts. [![npm version](https://badge.fury.io/js/angular2-highcharts.svg)](https://badge.fury.io/js/angular2-highcharts) ###[Live Demo](http://plnkr.co/edit/pnkc8Iw9cSrCYn9zr0VZ?p=preview) ``` npm install angular2-highcharts --sa...
8
Update README.md
8
.md
md
mit
gevgeny/angular2-highcharts
10049961
<NME> README.md <BEF> # angular2-highcharts > Angular2 charting components based on Highcharts. [![npm version](https://badge.fury.io/js/angular2-highcharts.svg)](https://badge.fury.io/js/angular2-highcharts) ###[Live Demo](http://plnkr.co/edit/pnkc8Iw9cSrCYn9zr0VZ?p=preview) ``` npm install angular2-highcharts --sa...
8
Update README.md
8
.md
md
mit
gevgeny/angular2-highcharts
10049962
<NME> paren.js <BEF> ADDFILE <MSG> parenthesized node init <DFF> @@ -0,0 +1,16 @@ + +(function (tree) { + +tree.Paren = function (node) { + this.value = node; +}; +tree.Paren.prototype = { + toCSS: function (env) { + return '(' + this.value.toCSS(env) + ')'; + }, + eval: function (env) { + re...
16
parenthesized node init
0
.js
js
apache-2.0
less/less.js
10049963
<NME> paren.js <BEF> ADDFILE <MSG> parenthesized node init <DFF> @@ -0,0 +1,16 @@ + +(function (tree) { + +tree.Paren = function (node) { + this.value = node; +}; +tree.Paren.prototype = { + toCSS: function (env) { + return '(' + this.value.toCSS(env) + ')'; + }, + eval: function (env) { + re...
16
parenthesized node init
0
.js
js
apache-2.0
less/less.js
10049964
<NME> paren.js <BEF> ADDFILE <MSG> parenthesized node init <DFF> @@ -0,0 +1,16 @@ + +(function (tree) { + +tree.Paren = function (node) { + this.value = node; +}; +tree.Paren.prototype = { + toCSS: function (env) { + return '(' + this.value.toCSS(env) + ')'; + }, + eval: function (env) { + re...
16
parenthesized node init
0
.js
js
apache-2.0
less/less.js
10049965
<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 PROGRAM_BUILD=20...
0
Removed unnecessary local variables
6
.sh
sh
bsd-3-clause
deajan/osync
10049966
<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 PROGRAM_BUILD=20...
0
Removed unnecessary local variables
6
.sh
sh
bsd-3-clause
deajan/osync
10049967
<NME> CHANGELOG.md <BEF> ## Change Log ### v4.1.3 (2022-06-09) - [#3673](https://github.com/less/less.js/pull/3673) Feat: add support for case-insensitive attribute selectors (#3673) (@iChenLei) - [#3710](https://github.com/less/less.js/pull/3701) Feat: add `disablePluginRule` flag for render() options (#3710) (@broof...
1
update changelog to add svg-gradient function
0
.md
md
apache-2.0
less/less.js
10049968
<NME> CHANGELOG.md <BEF> ## Change Log ### v4.1.3 (2022-06-09) - [#3673](https://github.com/less/less.js/pull/3673) Feat: add support for case-insensitive attribute selectors (#3673) (@iChenLei) - [#3710](https://github.com/less/less.js/pull/3701) Feat: add `disablePluginRule` flag for render() options (#3710) (@broof...
1
update changelog to add svg-gradient function
0
.md
md
apache-2.0
less/less.js
10049969
<NME> CHANGELOG.md <BEF> ## Change Log ### v4.1.3 (2022-06-09) - [#3673](https://github.com/less/less.js/pull/3673) Feat: add support for case-insensitive attribute selectors (#3673) (@iChenLei) - [#3710](https://github.com/less/less.js/pull/3701) Feat: add `disablePluginRule` flag for render() options (#3710) (@broof...
1
update changelog to add svg-gradient function
0
.md
md
apache-2.0
less/less.js
10049970
<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 AUTHOR="(C) 2013-2...
51
Rebuilt targets
27
.sh
sh
bsd-3-clause
deajan/osync
10049971
<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 AUTHOR="(C) 2013-2...
51
Rebuilt targets
27
.sh
sh
bsd-3-clause
deajan/osync
10049972
<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...
1
readme: Fix typos in batch-mode instructions.
1
.md
md
bsd-3-clause
deajan/osync
10049973
<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...
1
readme: Fix typos in batch-mode instructions.
1
.md
md
bsd-3-clause
deajan/osync
10049974
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # WILL FAIL, travis test # osync test suite 20161112004 # 4 tests: # quicklocal # RUNNING_ON_GITHUB_ACTIONS=[true|false] # SSH_PORT=22 # SKIP_REMOTE=[true|false] ## On Mac OSX, this needs to be run as root in order to use sudo without password ## From current terminal r...
13
Reverted to a should-build state
34
.sh
sh
bsd-3-clause
deajan/osync
10049975
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # WILL FAIL, travis test # osync test suite 20161112004 # 4 tests: # quicklocal # RUNNING_ON_GITHUB_ACTIONS=[true|false] # SSH_PORT=22 # SKIP_REMOTE=[true|false] ## On Mac OSX, this needs to be run as root in order to use sudo without password ## From current terminal r...
13
Reverted to a should-build state
34
.sh
sh
bsd-3-clause
deajan/osync
10049976
<NME> README.md <BEF> osync ===== A two way filesync script with fault tolerance, resume, soft deletion, conflictual file backups running on bash (linux, BSD and virtually any system supporting bash). File synchronization is bidirectional, based on rsync, can be run manually, as scheduled task, or triggered on file ch...
2
Merge README.md with Travis Info
2
.md
md
bsd-3-clause
deajan/osync
10049977
<NME> README.md <BEF> osync ===== A two way filesync script with fault tolerance, resume, soft deletion, conflictual file backups running on bash (linux, BSD and virtually any system supporting bash). File synchronization is bidirectional, based on rsync, can be run manually, as scheduled task, or triggered on file ch...
2
Merge README.md with Travis Info
2
.md
md
bsd-3-clause
deajan/osync
10049978
<NME> CHANGELOG.md <BEF> # 2.7.1 HOTFIX 2016-05-09 - [#3716](https://github.com/less/less.js/pull/3716) Fix https failures on macOS (#3716) (@joeyparrish) ### v4.1.2 (2021-10-04) - [#3602](https://github.com/less/less.js/pull/3602) Fix currentFileInfo and index properties on nodes (#3602) (@bjpbakker) - [#3626](https...
6
Update CHANGELOG.md
0
.md
md
apache-2.0
less/less.js
10049979
<NME> CHANGELOG.md <BEF> # 2.7.1 HOTFIX 2016-05-09 - [#3716](https://github.com/less/less.js/pull/3716) Fix https failures on macOS (#3716) (@joeyparrish) ### v4.1.2 (2021-10-04) - [#3602](https://github.com/less/less.js/pull/3602) Fix currentFileInfo and index properties on nodes (#3602) (@bjpbakker) - [#3626](https...
6
Update CHANGELOG.md
0
.md
md
apache-2.0
less/less.js
10049980
<NME> CHANGELOG.md <BEF> # 2.7.1 HOTFIX 2016-05-09 - [#3716](https://github.com/less/less.js/pull/3716) Fix https failures on macOS (#3716) (@joeyparrish) ### v4.1.2 (2021-10-04) - [#3602](https://github.com/less/less.js/pull/3602) Fix currentFileInfo and index properties on nodes (#3602) (@bjpbakker) - [#3626](https...
6
Update CHANGELOG.md
0
.md
md
apache-2.0
less/less.js
10049981
<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
fixed readme
1
.md
md
apache-2.0
less/less.js
10049982
<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
fixed readme
1
.md
md
apache-2.0
less/less.js
10049983
<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
fixed readme
1
.md
md
apache-2.0
less/less.js
10049984
<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...
38
Add TimeCheck and Ping functions
2
.sh
sh
bsd-3-clause
deajan/osync
10049985
<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...
38
Add TimeCheck and Ping functions
2
.sh
sh
bsd-3-clause
deajan/osync
10049986
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_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 the following variables: ## PR...
2
Added ofunctions header for next branch identification
1
.sh
sh
bsd-3-clause
deajan/osync
10049987
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_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 the following variables: ## PR...
2
Added ofunctions header for next branch identification
1
.sh
sh
bsd-3-clause
deajan/osync
10049988
<NME> remote.conf <BEF> #!/usr/bin/env bash ###### osync - Rsync based two way sync engine with fault tolerance ###### (C) 2013-2016 by Orsiris de Jong (www.netpower.fr) [GENERAL] CONFIG_FILE_REVISION=1.3.0 ## Sync job identification INSTANCE_ID="remote" ## Directories to synchronize. ## Initiator is the system os...
2
Back to a mergeable state
2
.conf
conf
bsd-3-clause
deajan/osync
10049989
<NME> remote.conf <BEF> #!/usr/bin/env bash ###### osync - Rsync based two way sync engine with fault tolerance ###### (C) 2013-2016 by Orsiris de Jong (www.netpower.fr) [GENERAL] CONFIG_FILE_REVISION=1.3.0 ## Sync job identification INSTANCE_ID="remote" ## Directories to synchronize. ## Initiator is the system os...
2
Back to a mergeable state
2
.conf
conf
bsd-3-clause
deajan/osync
10049990
<NME> CHANGELOG.md <BEF> # 1.4.1 WIP - support for import inline option to include css that you do not want less to parse e.g. `@import (inline) "file.css";` - better support for modifyVars (refresh styles with new variables, using a file cache), is now more resiliant - support for import reference option to refere...
8
update changelog
1
.md
md
apache-2.0
less/less.js
10049991
<NME> CHANGELOG.md <BEF> # 1.4.1 WIP - support for import inline option to include css that you do not want less to parse e.g. `@import (inline) "file.css";` - better support for modifyVars (refresh styles with new variables, using a file cache), is now more resiliant - support for import reference option to refere...
8
update changelog
1
.md
md
apache-2.0
less/less.js
10049992
<NME> CHANGELOG.md <BEF> # 1.4.1 WIP - support for import inline option to include css that you do not want less to parse e.g. `@import (inline) "file.css";` - better support for modifyVars (refresh styles with new variables, using a file cache), is now more resiliant - support for import reference option to refere...
8
update changelog
1
.md
md
apache-2.0
less/less.js
10049993
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2016111302 # 4 tests: # quicklocal # RUNNING_ON_GITHUB_ACTIONS=[true|false] # SSH_PORT=22 # SKIP_REMOTE=[true|false] # for each test: # files with spaces, subdirs # largefileset # exclusions # conflict resolution master, file attributes master # conflic...
57
Add ACL propagation tests
41
.sh
sh
bsd-3-clause
deajan/osync
10049994
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2016111302 # 4 tests: # quicklocal # RUNNING_ON_GITHUB_ACTIONS=[true|false] # SSH_PORT=22 # SKIP_REMOTE=[true|false] # for each test: # files with spaces, subdirs # largefileset # exclusions # conflict resolution master, file attributes master # conflic...
57
Add ACL propagation tests
41
.sh
sh
bsd-3-clause
deajan/osync
10049995
<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 RECENT CHANGES -------------- XX Xxx 2016: osync v1.2-RC1 released ! apk --no...
28
Updated changelog for comming beta3
16
.md
md
bsd-3-clause
deajan/osync
10049996
<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 RECENT CHANGES -------------- XX Xxx 2016: osync v1.2-RC1 released ! apk --no...
28
Updated changelog for comming beta3
16
.md
md
bsd-3-clause
deajan/osync
10049997
<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
Fixed _CheckDiskSpaceRemote compat on CentOS 5
2
.sh
sh
bsd-3-clause
deajan/osync
10049998
<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
Fixed _CheckDiskSpaceRemote compat on CentOS 5
2
.sh
sh
bsd-3-clause
deajan/osync
10049999
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables ## On CYGWIN / MSYS, ACL and extended attributes aren't supported # osync test suite 2016120601 # 4 tests: # quicklocal ## On CYGWIN / MSYS, ACL and extended attributes aren't supported # 4 tes...
3
Fixing remote third party check url not set right
3
.sh
sh
bsd-3-clause
deajan/osync
10050000
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables ## On CYGWIN / MSYS, ACL and extended attributes aren't supported # osync test suite 2016120601 # 4 tests: # quicklocal ## On CYGWIN / MSYS, ACL and extended attributes aren't supported # 4 tes...
3
Fixing remote third party check url not set right
3
.sh
sh
bsd-3-clause
deajan/osync
10050001
<NME> parser-input.js <BEF> ADDFILE <MSG> pull out the input processing out of the parser class and a few small improvements - the no js option now applies to all js, including that within quotes. The Javascript node now also returns the right index. <DFF> @@ -0,0 +1,285 @@ +var chunker = require('./chunker.js'), + ...
285
pull out the input processing out of the parser class and a few small improvements - the no js option now applies to all js, including that within quotes. The Javascript node now also returns the right index.
0
.js
js
apache-2.0
less/less.js
10050002
<NME> parser-input.js <BEF> ADDFILE <MSG> pull out the input processing out of the parser class and a few small improvements - the no js option now applies to all js, including that within quotes. The Javascript node now also returns the right index. <DFF> @@ -0,0 +1,285 @@ +var chunker = require('./chunker.js'), + ...
285
pull out the input processing out of the parser class and a few small improvements - the no js option now applies to all js, including that within quotes. The Javascript node now also returns the right index.
0
.js
js
apache-2.0
less/less.js
10050003
<NME> parser-input.js <BEF> ADDFILE <MSG> pull out the input processing out of the parser class and a few small improvements - the no js option now applies to all js, including that within quotes. The Javascript node now also returns the right index. <DFF> @@ -0,0 +1,285 @@ +var chunker = require('./chunker.js'), + ...
285
pull out the input processing out of the parser class and a few small improvements - the no js option now applies to all js, including that within quotes. The Javascript node now also returns the right index.
0
.js
js
apache-2.0
less/less.js
10050004
<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
Update changelog
0
.md
md
bsd-3-clause
deajan/osync
10050005
<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
Update changelog
0
.md
md
bsd-3-clause
deajan/osync
10050006
<NME> comment-in-selector.txt <BEF> ADDFILE <MSG> Fix #861 and introduce tests for errors <DFF> @@ -0,0 +1,1 @@ +Syntax Error on line 1 \ No newline at end of file
1
Fix #861 and introduce tests for errors
0
.txt
txt
apache-2.0
less/less.js
10050007
<NME> comment-in-selector.txt <BEF> ADDFILE <MSG> Fix #861 and introduce tests for errors <DFF> @@ -0,0 +1,1 @@ +Syntax Error on line 1 \ No newline at end of file
1
Fix #861 and introduce tests for errors
0
.txt
txt
apache-2.0
less/less.js
10050008
<NME> comment-in-selector.txt <BEF> ADDFILE <MSG> Fix #861 and introduce tests for errors <DFF> @@ -0,0 +1,1 @@ +Syntax Error on line 1 \ No newline at end of file
1
Fix #861 and introduce tests for errors
0
.txt
txt
apache-2.0
less/less.js
10050009
<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-2014 by Orsiris \"Ozy\" de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=0.99preRC3 PROGRAM...
9
Minor fix
4
.sh
sh
bsd-3-clause
deajan/osync
10050010
<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-2014 by Orsiris \"Ozy\" de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=0.99preRC3 PROGRAM...
9
Minor fix
4
.sh
sh
bsd-3-clause
deajan/osync
10050011
<NME> image.svg <BEF> ADDFILE <MSG> Default svgs to not be base64 encoded. encodeUri the svg-gradient function (and never base64 encode it). Fixes #2250 <DFF> @@ -0,0 +1,3 @@ +<svg height="100" width="100"> + <circle cx="50" cy="50" r="40" stroke="black" stroke-width="1" fill="blue" /> +</svg> \ No newline at end of ...
3
Default svgs to not be base64 encoded. encodeUri the svg-gradient function (and never base64 encode it). Fixes #2250
0
.svg
svg
apache-2.0
less/less.js
10050012
<NME> image.svg <BEF> ADDFILE <MSG> Default svgs to not be base64 encoded. encodeUri the svg-gradient function (and never base64 encode it). Fixes #2250 <DFF> @@ -0,0 +1,3 @@ +<svg height="100" width="100"> + <circle cx="50" cy="50" r="40" stroke="black" stroke-width="1" fill="blue" /> +</svg> \ No newline at end of ...
3
Default svgs to not be base64 encoded. encodeUri the svg-gradient function (and never base64 encode it). Fixes #2250
0
.svg
svg
apache-2.0
less/less.js
10050013
<NME> image.svg <BEF> ADDFILE <MSG> Default svgs to not be base64 encoded. encodeUri the svg-gradient function (and never base64 encode it). Fixes #2250 <DFF> @@ -0,0 +1,3 @@ +<svg height="100" width="100"> + <circle cx="50" cy="50" r="40" stroke="black" stroke-width="1" fill="blue" /> +</svg> \ No newline at end of ...
3
Default svgs to not be base64 encoded. encodeUri the svg-gradient function (and never base64 encode it). Fixes #2250
0
.svg
svg
apache-2.0
less/less.js
10050014
<NME> less-1.0.17.min.js <BEF> ADDFILE <MSG> (dist) build 1.0.17 <DFF> @@ -0,0 +1,59 @@ +// +// LESS - Leaner CSS v1.0.17 +// http://lesscss.org +// +// Copyright (c) 2010, Alexis Sellier +// Licensed under the Apache 2.0 License. +// +(function(u){function q(d){return u.less[d.split("/")[1]]}function N(d){if(!docume...
59
(dist) build 1.0.17
0
.js
0
apache-2.0
less/less.js
10050015
<NME> less-1.0.17.min.js <BEF> ADDFILE <MSG> (dist) build 1.0.17 <DFF> @@ -0,0 +1,59 @@ +// +// LESS - Leaner CSS v1.0.17 +// http://lesscss.org +// +// Copyright (c) 2010, Alexis Sellier +// Licensed under the Apache 2.0 License. +// +(function(u){function q(d){return u.less[d.split("/")[1]]}function N(d){if(!docume...
59
(dist) build 1.0.17
0
.js
0
apache-2.0
less/less.js
10050016
<NME> less-1.0.17.min.js <BEF> ADDFILE <MSG> (dist) build 1.0.17 <DFF> @@ -0,0 +1,59 @@ +// +// LESS - Leaner CSS v1.0.17 +// http://lesscss.org +// +// Copyright (c) 2010, Alexis Sellier +// Licensed under the Apache 2.0 License. +// +(function(u){function q(d){return u.less[d.split("/")[1]]}function N(d){if(!docume...
59
(dist) build 1.0.17
0
.js
0
apache-2.0
less/less.js
10050017
<NME> plugin-scope2.js <BEF> ADDFILE <MSG> Sync default options across all Less.js environments - More tests for plugins <DFF> @@ -0,0 +1,3 @@ +functions.add('foo', function() { + return "bar"; +}); \ No newline at end of file
3
Sync default options across all Less.js environments - More tests for plugins
0
.js
js
apache-2.0
less/less.js
10050018
<NME> plugin-scope2.js <BEF> ADDFILE <MSG> Sync default options across all Less.js environments - More tests for plugins <DFF> @@ -0,0 +1,3 @@ +functions.add('foo', function() { + return "bar"; +}); \ No newline at end of file
3
Sync default options across all Less.js environments - More tests for plugins
0
.js
js
apache-2.0
less/less.js
10050019
<NME> plugin-scope2.js <BEF> ADDFILE <MSG> Sync default options across all Less.js environments - More tests for plugins <DFF> @@ -0,0 +1,3 @@ +functions.add('foo', function() { + return "bar"; +}); \ No newline at end of file
3
Sync default options across all Less.js environments - More tests for plugins
0
.js
js
apache-2.0
less/less.js
10050020
<NME> runner-global-vars-spec.js <BEF> ADDFILE <MSG> Merge pull request #1655 from chipx86/custom-vars Support specifying custom variables when calling lessc and less.js. <DFF> @@ -0,0 +1,3 @@ +describe("less.js global vars", function() { + testLessEqualsInDocument(); +});
3
Merge pull request #1655 from chipx86/custom-vars
0
.js
js
apache-2.0
less/less.js
10050021
<NME> runner-global-vars-spec.js <BEF> ADDFILE <MSG> Merge pull request #1655 from chipx86/custom-vars Support specifying custom variables when calling lessc and less.js. <DFF> @@ -0,0 +1,3 @@ +describe("less.js global vars", function() { + testLessEqualsInDocument(); +});
3
Merge pull request #1655 from chipx86/custom-vars
0
.js
js
apache-2.0
less/less.js
10050022
<NME> runner-global-vars-spec.js <BEF> ADDFILE <MSG> Merge pull request #1655 from chipx86/custom-vars Support specifying custom variables when calling lessc and less.js. <DFF> @@ -0,0 +1,3 @@ +describe("less.js global vars", function() { + testLessEqualsInDocument(); +});
3
Merge pull request #1655 from chipx86/custom-vars
0
.js
js
apache-2.0
less/less.js
10050023
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables ## On CYGWIN / MSYS, ACL and extended attributes aren't supported # osync test suite 2016121201 # 4 tests: # quicklocal ## On CYGWIN / MSYS, ACL and extended attributes aren't supported # 4 tes...
32
Improved unit tests for soft deletion directories
4
.sh
sh
bsd-3-clause
deajan/osync
10050024
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables ## On CYGWIN / MSYS, ACL and extended attributes aren't supported # osync test suite 2016121201 # 4 tests: # quicklocal ## On CYGWIN / MSYS, ACL and extended attributes aren't supported # 4 tes...
32
Improved unit tests for soft deletion directories
4
.sh
sh
bsd-3-clause
deajan/osync
10050025
<NME> sudo_prep.sh <BEF> #!/usr/bin/env bash testUser=osyncsudo testUserHome=/home/osyncsudo function CreateUser { local remoteUser"${1}" local homedir="${2}" if type getent > /dev/null 2>&1; then if ! getent passwd | grep "$remoteUser" > /dev/null; then echo "Manual creation of $remoteUser with homedir $hom...
1
Another minor fix
1
.sh
sh
bsd-3-clause
deajan/osync
10050026
<NME> sudo_prep.sh <BEF> #!/usr/bin/env bash testUser=osyncsudo testUserHome=/home/osyncsudo function CreateUser { local remoteUser"${1}" local homedir="${2}" if type getent > /dev/null 2>&1; then if ! getent passwd | grep "$remoteUser" > /dev/null; then echo "Manual creation of $remoteUser with homedir $hom...
1
Another minor fix
1
.sh
sh
bsd-3-clause
deajan/osync
10050027
<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 AUTHOR="(C) 2013-2...
2
Rebuilt targets
2
.sh
sh
bsd-3-clause
deajan/osync
10050028
<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 AUTHOR="(C) 2013-2...
2
Rebuilt targets
2
.sh
sh
bsd-3-clause
deajan/osync
10050029
<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-RC3+dev _OFUNCTIONS_BUILD=2017021301 #### _OFUNCTIONS_BOOTSTRAP SUBSET #### _OFUNCTIONS_...
2
Made TSTAMP more readable
2
.sh
sh
bsd-3-clause
deajan/osync
10050030
<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-RC3+dev _OFUNCTIONS_BUILD=2017021301 #### _OFUNCTIONS_BOOTSTRAP SUBSET #### _OFUNCTIONS_...
2
Made TSTAMP more readable
2
.sh
sh
bsd-3-clause
deajan/osync
10050031
<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...
10
Quote all rsync result files
10
.sh
sh
bsd-3-clause
deajan/osync
10050032
<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...
10
Quote all rsync result files
10
.sh
sh
bsd-3-clause
deajan/osync
10050033
<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
Improved version check
3
.sh
sh
bsd-3-clause
deajan/osync
10050034
<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
Improved version check
3
.sh
sh
bsd-3-clause
deajan/osync
10050035
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016101901 ## 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: #############################################################...
16
Added arrayContains function
1
.sh
sh
bsd-3-clause
deajan/osync
10050036
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016101901 ## 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: #############################################################...
16
Added arrayContains function
1
.sh
sh
bsd-3-clause
deajan/osync
10050037
<NME> mixin-not-visible-in-scope-1.txt <BEF> ADDFILE <MSG> Fix a small scope issue with mixins when using parent selectors, introduced in 1.6.2. Fixes #1877 <DFF> @@ -0,0 +1,4 @@ +NameError: .a is undefined in {path}mixin-not-visible-in-scope-1.less on line 7, column 13: +6 & { +7 .b {.a} // was Err. befor...
4
Fix a small scope issue with mixins when using parent selectors, introduced in 1.6.2. Fixes #1877
0
.txt
txt
apache-2.0
less/less.js
10050038
<NME> mixin-not-visible-in-scope-1.txt <BEF> ADDFILE <MSG> Fix a small scope issue with mixins when using parent selectors, introduced in 1.6.2. Fixes #1877 <DFF> @@ -0,0 +1,4 @@ +NameError: .a is undefined in {path}mixin-not-visible-in-scope-1.less on line 7, column 13: +6 & { +7 .b {.a} // was Err. befor...
4
Fix a small scope issue with mixins when using parent selectors, introduced in 1.6.2. Fixes #1877
0
.txt
txt
apache-2.0
less/less.js
10050039
<NME> mixin-not-visible-in-scope-1.txt <BEF> ADDFILE <MSG> Fix a small scope issue with mixins when using parent selectors, introduced in 1.6.2. Fixes #1877 <DFF> @@ -0,0 +1,4 @@ +NameError: .a is undefined in {path}mixin-not-visible-in-scope-1.less on line 7, column 13: +6 & { +7 .b {.a} // was Err. befor...
4
Fix a small scope issue with mixins when using parent selectors, introduced in 1.6.2. Fixes #1877
0
.txt
txt
apache-2.0
less/less.js
10050040
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables # RUNNING_ON_GITHUB_ACTIONS=[true|false] # SSH_PORT=22 # SKIP_REMOTE=[true|false] OSYNC_EXECUTABLE="n_osync.sh" INITIATOR_DIR="$TEST_DIR/opt/osync/initiator" TARGET_DIR="$TEST_DIR/opt/osync/targe...
2
Fixed typo
2
.sh
sh
bsd-3-clause
deajan/osync
10050041
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables # RUNNING_ON_GITHUB_ACTIONS=[true|false] # SSH_PORT=22 # SKIP_REMOTE=[true|false] OSYNC_EXECUTABLE="n_osync.sh" INITIATOR_DIR="$TEST_DIR/opt/osync/initiator" TARGET_DIR="$TEST_DIR/opt/osync/targe...
2
Fixed typo
2
.sh
sh
bsd-3-clause
deajan/osync
10050042
<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...
4
Added another troubleshooting guideline
0
.md
md
bsd-3-clause
deajan/osync
10050043
<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...
4
Added another troubleshooting guideline
0
.md
md
bsd-3-clause
deajan/osync
10050044
<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=...
19
Quick _SoftDeleteLocal refactor
18
.sh
sh
bsd-3-clause
deajan/osync
10050045
<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=...
19
Quick _SoftDeleteLocal refactor
18
.sh
sh
bsd-3-clause
deajan/osync
10050046
<NME> ssh_filter.sh <BEF> #!/usr/bin/env bash ##### osync / obackup ssh command filter ##### This script should be located in /usr/local/bin in the remote system to sync / backup ##### It will filter the commands that can be run remotely via ssh. ##### Please chmod 755 and chown root:root this file ##### Any command ...
6
Updated booleans in ssh filter
6
.sh
sh
bsd-3-clause
deajan/osync
10050047
<NME> ssh_filter.sh <BEF> #!/usr/bin/env bash ##### osync / obackup ssh command filter ##### This script should be located in /usr/local/bin in the remote system to sync / backup ##### It will filter the commands that can be run remotely via ssh. ##### Please chmod 755 and chown root:root this file ##### Any command ...
6
Updated booleans in ssh filter
6
.sh
sh
bsd-3-clause
deajan/osync
10050048
<NME> plugin-set-options-v3.js <BEF> ADDFILE <MSG> Plugins: If minVersion >= 3.0.0, don't "pre-run" .setOptions() (#3247) * dev – add .editorconfig * AbstractPluginLoader – check for minVersion < 3 before running .setOptions() twice * tests – separate unspecified minVersion test from minVersion: [2,0,0] test <DFF>...
31
Plugins: If minVersion >= 3.0.0, don't "pre-run" .setOptions() (#3247)
0
.js
js
apache-2.0
less/less.js
10050049
<NME> plugin-set-options-v3.js <BEF> ADDFILE <MSG> Plugins: If minVersion >= 3.0.0, don't "pre-run" .setOptions() (#3247) * dev – add .editorconfig * AbstractPluginLoader – check for minVersion < 3 before running .setOptions() twice * tests – separate unspecified minVersion test from minVersion: [2,0,0] test <DFF>...
31
Plugins: If minVersion >= 3.0.0, don't "pre-run" .setOptions() (#3247)
0
.js
js
apache-2.0
less/less.js