It appears you have a well-structured Git repository with various files, including SVG icons and HTML documents. Here's a brief overview:

This commit is contained in:
2025-06-11 09:05:15 +02:00
parent 36c2466e53
commit 6d6aa954dd
15556 changed files with 1076330 additions and 1 deletions

4
backend/node_modules/spawn-command/.npmignore generated vendored Normal file
View File

@@ -0,0 +1,4 @@
npm-debug.log
node_modules
.DS_Store
.*.sw[op]

5
backend/node_modules/spawn-command/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,5 @@
language: node_js
node_js:
- 0.6
- 0.8
- 0.9

19
backend/node_modules/spawn-command/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,19 @@
Copyright (C) 2011 by Maciej Małecki
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

20
backend/node_modules/spawn-command/README.md generated vendored Normal file
View File

@@ -0,0 +1,20 @@
# spawn-command [![Build Status](https://secure.travis-ci.org/mmalecki/spawn-command.png)](http://travis-ci.org/mmalecki/spawn-command)
Spawn commands like `child_process.exec` does but return a `ChildProcess`.
## Installation
npm install spawn-command
## Usage
```js
var spawnCommand = require('spawn-command'),
child = spawnCommand('echo "Hello spawn" | base64');
child.stdout.on('data', function (data) {
console.log('data', data);
});
child.on('exit', function (exitCode) {
console.log('exit', exitCode);
});
```

11
backend/node_modules/spawn-command/examples/simple.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
var spawnCommand = require('../'),
command = (process.platform === 'win32') ? 'echo "Hello spawn"' : 'echo "Hello spawn" | base64',
child = spawnCommand(command);
child.stdout.on('data', function (data) {
console.log('data', data.toString());
});
child.on('exit', function (exitCode) {
console.log('exit', exitCode);
});

View File

@@ -0,0 +1,17 @@
var util = require('util');
var spawn = require('child_process').spawn;
module.exports = function (command, options) {
var file, args;
if (process.platform === 'win32') {
file = 'cmd.exe';
args = ['/s', '/c', '"' + command + '"'];
options = util._extend({}, options);
options.windowsVerbatimArguments = true;
}
else {
file = '/bin/sh';
args = ['-c', command];
}
return spawn(file, args, options);
};

13
backend/node_modules/spawn-command/package.json generated vendored Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "spawn-command",
"author": "Maciej Małecki <me@mmalecki.com>",
"description": "Spawn commands like `child_process.exec` does but return a `ChildProcess`",
"version": "0.0.2",
"main": "./lib/spawn-command",
"scripts": {
"test": "node test/spawn-command-test.js"
},
"devDependencies": {
"assert-called": "0.1.x"
}
}

View File

@@ -0,0 +1,9 @@
commit 26b11915b1c16440468a4b5f4b07d2409b98c68c
Author: Bert Belder <bertbelder@gmail.com>
Date: Wed Jun 20 01:07:57 2012 +0200
test-domain: fix the test to work on Windows
On Windows, full pathnames are stored in the Error object when
a file i/o error happens. This is not the case on Unix. Before
this fix the test would break because of these full paths.

View File

@@ -0,0 +1,26 @@
var path = require('path'),
assert = require('assert'),
assertCalled = require('assert-called'),
spawnCommand = require('../');
var win32 = (process.platform === 'win32'),
newln = win32 ? '\r\n' : '\n',
grep = win32 ? 'findstr' : 'grep',
child = spawnCommand(grep + ' commit < ' + path.join(__dirname, 'fixtures', 'commit')),
stderr = '',
stdout = '',
exited = false;
child.stdout.on('data', function (chunk) {
stdout += chunk;
});
child.stderr.on('data', function (chunk) {
stderr += chunk;
});
child.on('exit', assertCalled(function (exitCode) {
assert.equal(exitCode, 0);
assert.equal(stdout, 'commit 26b11915b1c16440468a4b5f4b07d2409b98c68c' + newln);
assert.equal(stderr, '');
}));