Uploading the main structure

هذا الالتزام موجود في:
2025-08-18 23:23:28 +03:00
التزام e696f2f4cd
1011 ملفات معدلة مع 275020 إضافات و0 حذوفات

13
node_modules/doctypes/.npmignore مولّد مباع Normal file
عرض الملف

@@ -0,0 +1,13 @@
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz
pids
logs
results
npm-debug.log
node_modules

3
node_modules/doctypes/.travis.yml مولّد مباع Normal file
عرض الملف

@@ -0,0 +1,3 @@
language: node_js
node_js:
- "0.10"

14
node_modules/doctypes/HISTORY.md مولّد مباع Normal file
عرض الملف

@@ -0,0 +1,14 @@
# Change log
## 1.1.0 / 2016-08-10
- Bump minor (to fix a packaging error in 1.0.1)
- Update plist doctype
## 1.0.1 / 2016-08-09
- Add property list doctype
## 1.0.0 / 2015-01-22
- Initial release

19
node_modules/doctypes/LICENSE مولّد مباع Normal file
عرض الملف

@@ -0,0 +1,19 @@
Copyright (c) 2015 Forbes Lindesay
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.

24
node_modules/doctypes/README.md مولّد مباع Normal file
عرض الملف

@@ -0,0 +1,24 @@
# doctypes
Shorthands for commonly used doctypes
[![Build Status](https://img.shields.io/travis/pugjs/doctypes/master.svg)](https://travis-ci.org/pugjs/doctypes)
[![NPM version](https://img.shields.io/npm/v/doctypes.svg)](https://www.npmjs.org/package/doctypes)
## Installation
npm install doctypes
## Usage
```js
var assert = require('assert');
var doctypes = require('doctypes');
assert(doctypes['html'] === '<!DOCTYPE html>');
assert(doctypes['xml'] === '<?xml version="1.0" encoding="utf-8" ?>');
```
## License
MIT

13
node_modules/doctypes/index.js مولّد مباع Normal file
عرض الملف

@@ -0,0 +1,13 @@
'use strict';
module.exports = {
'html': '<!DOCTYPE html>',
'xml': '<?xml version="1.0" encoding="utf-8" ?>',
'transitional': '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
'strict': '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
'frameset': '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
'1.1': '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">',
'basic': '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">',
'mobile': '<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" "http://www.openmobilealliance.org/tech/DTD/xhtml-mobile12.dtd">',
'plist': '<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">'
};

19
node_modules/doctypes/package.json مولّد مباع Normal file
عرض الملف

@@ -0,0 +1,19 @@
{
"name": "doctypes",
"version": "1.1.0",
"description": "Shorthands for commonly used doctypes",
"keywords": [
"doctype"
],
"dependencies": {},
"devDependencies": {},
"scripts": {
"test": "node test"
},
"repository": {
"type": "git",
"url": "https://github.com/pugjs/doctypes.git"
},
"author": "ForbesLindesay",
"license": "MIT"
}

9
node_modules/doctypes/test.js مولّد مباع Normal file
عرض الملف

@@ -0,0 +1,9 @@
'use strict';
var assert = require('assert');
var doctypes = require('./');
assert(doctypes['html'] === '<!DOCTYPE html>');
assert(doctypes['xml'] === '<?xml version="1.0" encoding="utf-8" ?>');
console.log('tests passed');