From cba253fe84cfac4a68b8c3e61eb43c6083706cfa Mon Sep 17 00:00:00 2001 From: Awilum Date: Fri, 13 Apr 2018 12:10:51 +0300 Subject: [PATCH] Remove admin plugin for a while --- site/plugins/admin/CHANGELOG.md | 2 - site/plugins/admin/LICENSE.txt | 21 -- site/plugins/admin/README.md | 1 - site/plugins/admin/admin.php | 145 -------- site/plugins/admin/admin.yml | 13 - site/plugins/admin/css/auth.css | 54 --- site/plugins/admin/languages/en.yml | 4 - site/plugins/admin/languages/ru.yml | 1 - .../admin/node_modules/bootstrap/LICENSE | 22 -- .../admin/node_modules/bootstrap/README.md | 167 ---------- .../admin/node_modules/bootstrap/package.json | 241 -------------- .../admin/node_modules/jquery/AUTHORS.txt | 313 ------------------ .../admin/node_modules/jquery/LICENSE.txt | 36 -- .../admin/node_modules/jquery/README.md | 67 ---- .../admin/node_modules/jquery/bower.json | 14 - .../admin/node_modules/jquery/package.json | 133 -------- site/plugins/admin/package-lock.json | 20 -- site/plugins/admin/package.json | 8 - site/plugins/admin/views/dashboard.php | 1 - site/plugins/admin/views/login.php | 26 -- site/plugins/admin/views/pages.php | 1 - site/plugins/admin/views/settings.php | 1 - 22 files changed, 1291 deletions(-) delete mode 100755 site/plugins/admin/CHANGELOG.md delete mode 100755 site/plugins/admin/LICENSE.txt delete mode 100755 site/plugins/admin/README.md delete mode 100755 site/plugins/admin/admin.php delete mode 100755 site/plugins/admin/admin.yml delete mode 100644 site/plugins/admin/css/auth.css delete mode 100755 site/plugins/admin/languages/en.yml delete mode 100755 site/plugins/admin/languages/ru.yml delete mode 100644 site/plugins/admin/node_modules/bootstrap/LICENSE delete mode 100644 site/plugins/admin/node_modules/bootstrap/README.md delete mode 100644 site/plugins/admin/node_modules/bootstrap/package.json delete mode 100644 site/plugins/admin/node_modules/jquery/AUTHORS.txt delete mode 100644 site/plugins/admin/node_modules/jquery/LICENSE.txt delete mode 100644 site/plugins/admin/node_modules/jquery/README.md delete mode 100644 site/plugins/admin/node_modules/jquery/bower.json delete mode 100644 site/plugins/admin/node_modules/jquery/package.json delete mode 100644 site/plugins/admin/package-lock.json delete mode 100644 site/plugins/admin/package.json delete mode 100644 site/plugins/admin/views/dashboard.php delete mode 100644 site/plugins/admin/views/login.php delete mode 100644 site/plugins/admin/views/pages.php delete mode 100644 site/plugins/admin/views/settings.php diff --git a/site/plugins/admin/CHANGELOG.md b/site/plugins/admin/CHANGELOG.md deleted file mode 100755 index 40510895..00000000 --- a/site/plugins/admin/CHANGELOG.md +++ /dev/null @@ -1,2 +0,0 @@ -# v0.0.0, 2018-XX-XX -* Initial release diff --git a/site/plugins/admin/LICENSE.txt b/site/plugins/admin/LICENSE.txt deleted file mode 100755 index 3f865be1..00000000 --- a/site/plugins/admin/LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2018 Flextype - -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. diff --git a/site/plugins/admin/README.md b/site/plugins/admin/README.md deleted file mode 100755 index a3b085bf..00000000 --- a/site/plugins/admin/README.md +++ /dev/null @@ -1 +0,0 @@ -# Admin Plugin for [Flextype](http://flextype.org/) diff --git a/site/plugins/admin/admin.php b/site/plugins/admin/admin.php deleted file mode 100755 index b423eebe..00000000 --- a/site/plugins/admin/admin.php +++ /dev/null @@ -1,145 +0,0 @@ - - * @link http://flextype.org - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Flextype; - -use Url; -use Arr; -use Response; -use Request; -use Symfony\Component\Yaml\Yaml; - -// -// Add listner for onPageBeforeRender event -// -if (Url::getUriSegment(0) == 'admin') { - Events::addListener('onPageBeforeRender', function () { - Admin::instance(); - }); -} - - -class Admin { - - /** - * An instance of the Admin class - * - * @var object - * @access protected - */ - protected static $instance = null; - - /** - * Is logged in - * - * @var bool - * @access protected - */ - protected static $isLoggedIn = false; - - /** - * Protected clone method to enforce singleton behavior. - * - * @access protected - */ - protected function __clone() - { - // Nothing here. - } - - /** - * Protected constructor since this is a static class. - * - * @access protected - */ - protected function __construct() - { - static::init(); - } - - protected static function init() - { - if (static::isLoggedIn()) { - static::getAdminPage(); - } else { - static::getAuthPage(); - } - - Request::shutdown(); - } - - protected static function getAdminPage() - { - switch (Url::getUriSegment(1)) { - case 'pages': - static::getPagesManagerPage(); - break; - case 'settings': - static::getSettingsPage(); - break; - default: - static::getDashboardPage(); - break; - } - } - - protected static function getPagesManagerPage() - { - include 'views/pages.php'; - } - - protected static function getSettingsPage() - { - include 'views/settings.php'; - } - - protected static function getDashboardPage() - { - include 'views/dashboard.php'; - } - - protected static function getAuthPage() - { - - $login = Request::post('login'); - - if (isset($login)) { - if (Flextype::filesystem()->exists($_user_file = ACCOUNTS_PATH . '/' . Request::post('username') . '.yml')) { - $user_file = Yaml::parseFile($_user_file); - - - } - - var_dump($user_file); - } - - include 'views/login.php'; - } - - public static function isLoggedIn() : bool - { - return static::$isLoggedIn; - } - - /** - * Return the Admin instance. - * Create it if it's not already created. - * - * @access public - * @return object - */ - public static function instance() - { - return !isset(self::$instance) and self::$instance = new Admin(); - } -} diff --git a/site/plugins/admin/admin.yml b/site/plugins/admin/admin.yml deleted file mode 100755 index 31f462ab..00000000 --- a/site/plugins/admin/admin.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Admin -version: 0.0.0 -description: "Admin plugin for Flextype" -author: - name: Sergey Romanenko - email: awilum@yandex.ru - url: http://flextype.org -homepage: https://github.com/flextype/flextype -bugs: https://github.com/flextype/flextype/issues -license: MIT - -# Plugin settings -enabled: true diff --git a/site/plugins/admin/css/auth.css b/site/plugins/admin/css/auth.css deleted file mode 100644 index bf07b4d8..00000000 --- a/site/plugins/admin/css/auth.css +++ /dev/null @@ -1,54 +0,0 @@ -html, -body { - height: 100%; -} - -body { - display: -ms-flexbox; - display: -webkit-box; - display: flex; - -ms-flex-align: center; - -ms-flex-pack: center; - -webkit-box-align: center; - align-items: center; - -webkit-box-pack: center; - justify-content: center; - padding-top: 40px; - padding-bottom: 40px; - background-color: #f5f5f5; -} - -.form-signin { - width: 100%; - max-width: 330px; - padding: 15px; - margin: 0 auto; -} - -.form-signin .checkbox { - font-weight: 400; -} - -.form-signin .form-control { - position: relative; - box-sizing: border-box; - height: auto; - padding: 10px; - font-size: 16px; -} - -.form-signin .form-control:focus { - z-index: 2; -} - -.form-signin input[type="input"] { - margin-bottom: -1px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.form-signin input[type="password"] { - margin-bottom: 10px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} diff --git a/site/plugins/admin/languages/en.yml b/site/plugins/admin/languages/en.yml deleted file mode 100755 index 8aab8098..00000000 --- a/site/plugins/admin/languages/en.yml +++ /dev/null @@ -1,4 +0,0 @@ -admin: "Admin" -admin_username: "Username" -admin_password: "Password" -admin_login: "Login" diff --git a/site/plugins/admin/languages/ru.yml b/site/plugins/admin/languages/ru.yml deleted file mode 100755 index da5c1c74..00000000 --- a/site/plugins/admin/languages/ru.yml +++ /dev/null @@ -1 +0,0 @@ -admin: "Admin" diff --git a/site/plugins/admin/node_modules/bootstrap/LICENSE b/site/plugins/admin/node_modules/bootstrap/LICENSE deleted file mode 100644 index 86f4b8ca..00000000 --- a/site/plugins/admin/node_modules/bootstrap/LICENSE +++ /dev/null @@ -1,22 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2011-2018 Twitter, Inc. -Copyright (c) 2011-2018 The Bootstrap Authors - -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. diff --git a/site/plugins/admin/node_modules/bootstrap/README.md b/site/plugins/admin/node_modules/bootstrap/README.md deleted file mode 100644 index 6734d355..00000000 --- a/site/plugins/admin/node_modules/bootstrap/README.md +++ /dev/null @@ -1,167 +0,0 @@ -

- - - - -

Bootstrap

- -

- Sleek, intuitive, and powerful front-end framework for faster and easier web development. -
- Explore Bootstrap docs » -
-
- Bootstrap Themes - · - Job Board - · - Blog -

-

- -
- -## Table of contents - -- [Quick start](#quick-start) -- [Status](#status) -- [What's included](#whats-included) -- [Bugs and feature requests](#bugs-and-feature-requests) -- [Documentation](#documentation) -- [Contributing](#contributing) -- [Community](#community) -- [Versioning](#versioning) -- [Creators](#creators) -- [Copyright and license](#copyright-and-license) - -## Quick start - -Several quick start options are available: - -- [Download the latest release.](https://github.com/twbs/bootstrap/archive/v4.0.0.zip) -- Clone the repo: `git clone https://github.com/twbs/bootstrap.git` -- Install with [npm](https://www.npmjs.com/): `npm install bootstrap` -- Install with [yarn](https://yarnpkg.com/): `yarn add bootstrap@4.0.0` -- Install with [Composer](https://getcomposer.org/): `composer require twbs/bootstrap:4.0.0` -- Install with [NuGet](https://www.nuget.org/): CSS: `Install-Package bootstrap -Pre` Sass: `Install-Package bootstrap.sass -Pre` (`-Pre` is only required until Bootstrap v4 has a stable release). - -Read the [Getting started page](https://getbootstrap.com/docs/4.0/getting-started/introduction/) for information on the framework contents, templates and examples, and more. - -## Status - -[![Slack](https://bootstrap-slack.herokuapp.com/badge.svg)](https://bootstrap-slack.herokuapp.com/) -[![Build Status](https://img.shields.io/travis/twbs/bootstrap/v4-dev.svg)](https://travis-ci.org/twbs/bootstrap) -[![npm version](https://img.shields.io/npm/v/bootstrap.svg)](https://www.npmjs.com/package/bootstrap) -[![Gem version](https://img.shields.io/gem/v/bootstrap.svg)](https://rubygems.org/gems/bootstrap) -[![Meteor Atmosphere](https://img.shields.io/badge/meteor-twbs%3Abootstrap-blue.svg)](https://atmospherejs.com/twbs/bootstrap) -[![Packagist Prerelease](https://img.shields.io/packagist/vpre/twbs/bootstrap.svg)](https://packagist.org/packages/twbs/bootstrap) -[![NuGet](https://img.shields.io/nuget/vpre/bootstrap.svg)](https://www.nuget.org/packages/bootstrap/absoluteLatest) -[![peerDependencies Status](https://img.shields.io/david/peer/twbs/bootstrap.svg)](https://david-dm.org/twbs/bootstrap?type=peer) -[![devDependency Status](https://img.shields.io/david/dev/twbs/bootstrap.svg)](https://david-dm.org/twbs/bootstrap?type=dev) -[![CSS gzip size](http://img.badgesize.io/twbs/bootstrap/v4-dev/dist/css/bootstrap.min.css?compression=gzip&label=CSS+gzip+size)](https://github.com/twbs/bootstrap/tree/v4-dev/dist/css/bootstrap.min.css) -[![JS gzip size](http://img.badgesize.io/twbs/bootstrap/v4-dev/dist/js/bootstrap.min.js?compression=gzip&label=JS+gzip+size)](https://github.com/twbs/bootstrap/tree/v4-dev/dist/js/bootstrap.min.js) - -[![Sauce Labs Test Status](https://saucelabs.com/browser-matrix/bootstrap.svg)](https://saucelabs.com/u/bootstrap) - -## What's included - -Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this: - -``` -bootstrap/ -├── css/ -│ ├── bootstrap.css -│ ├── bootstrap.css.map -│ ├── bootstrap.min.css -│ ├── bootstrap.min.css.map -│ ├── bootstrap-grid.css -│ ├── bootstrap-grid.css.map -│ ├── bootstrap-grid.min.css -│ ├── bootstrap-grid.min.css.map -│ ├── bootstrap-reboot.css -│ ├── bootstrap-reboot.css.map -│ ├── bootstrap-reboot.min.css -│ └── bootstrap-reboot.min.css.map -└── js/ - ├── bootstrap.bundle.js - ├── bootstrap.bundle.min.js - ├── bootstrap.js - └── bootstrap.min.js -``` - -We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). CSS [source maps](https://developers.google.com/web/tools/chrome-devtools/debug/readability/source-maps) (`bootstrap.*.map`) are available for use with certain browsers' developer tools. Bundled JS files (`bootstrap.bundle.js` and minified `bootstrap.bundle.min.js`) include [Popper](https://popper.js.org/), but not [jQuery](https://jquery.com/). - - -## Bugs and feature requests - -Have a bug or a feature request? Please first read the [issue guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md#using-the-issue-tracker) and search for existing and closed issues. If your problem or idea is not addressed yet, [please open a new issue](https://github.com/twbs/bootstrap/issues/new). - - -## Documentation - -Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](https://jekyllrb.com/) and publicly hosted on GitHub Pages at . The docs may also be run locally. - -Documentation search is powered by [Algolia's DocSearch](https://community.algolia.com/docsearch/). Working on our search? Be sure to set `debug: true` in the `_scripts.html` include. - -### Running documentation locally - -1. Run through the [tooling setup](https://getbootstrap.com/docs/4.0/getting-started/build-tools/#tooling-setup) to install Jekyll (the site builder) and other Ruby dependencies with `bundle install`. -2. Run `npm install` to install Node.js dependencies. -3. Run `npm run test` (or a specific NPM script) to rebuild distributed CSS and JavaScript files, as well as our docs assets. -4. From the root `/bootstrap` directory, run `npm run docs-serve` in the command line. -5. Open `http://localhost:9001` in your browser, and voilà. - -Learn more about using Jekyll by reading its [documentation](https://jekyllrb.com/docs/home/). - -### Documentation for previous releases - -- For v2.3.2: -- For v3.3.x: - -[Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download. - - -## Contributing - -Please read through our [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development. - -Moreover, if your pull request contains JavaScript patches or features, you must include [relevant unit tests](https://github.com/twbs/bootstrap/tree/master/js/tests). All HTML and CSS should conform to the [Code Guide](https://github.com/mdo/code-guide), maintained by [Mark Otto](https://github.com/mdo). - -Editor preferences are available in the [editor config](https://github.com/twbs/bootstrap/blob/master/.editorconfig) for easy use in common text editors. Read more and download plugins at . - - -## Community - -Get updates on Bootstrap's development and chat with the project maintainers and community members. - -- Follow [@getbootstrap on Twitter](https://twitter.com/getbootstrap). -- Read and subscribe to [The Official Bootstrap Blog](https://blog.getbootstrap.com/). -- Join [the official Slack room](https://bootstrap-slack.herokuapp.com/). -- Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##bootstrap` channel. -- Implementation help may be found at Stack Overflow (tagged [`bootstrap-4`](https://stackoverflow.com/questions/tagged/bootstrap-4)). -- Developers should use the keyword `bootstrap` on packages which modify or add to the functionality of Bootstrap when distributing through [npm](https://www.npmjs.com/browse/keyword/bootstrap) or similar delivery mechanisms for maximum discoverability. - - -## Versioning - -For transparency into our release cycle and in striving to maintain backward compatibility, Bootstrap is maintained under [the Semantic Versioning guidelines](http://semver.org/). Sometimes we screw up, but we'll adhere to those rules whenever possible. - -See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. Release announcement posts on [the official Bootstrap blog](https://blog.getbootstrap.com/) contain summaries of the most noteworthy changes made in each release. - - -## Creators - -**Mark Otto** - -- -- - -**Jacob Thornton** - -- -- - - -## Copyright and license - -Code and documentation copyright 2011-2018 the [Bootstrap Authors](https://github.com/twbs/bootstrap/graphs/contributors) and [Twitter, Inc.](https://twitter.com) Code released under the [MIT License](https://github.com/twbs/bootstrap/blob/master/LICENSE). Docs released under [Creative Commons](https://github.com/twbs/bootstrap/blob/master/docs/LICENSE). diff --git a/site/plugins/admin/node_modules/bootstrap/package.json b/site/plugins/admin/node_modules/bootstrap/package.json deleted file mode 100644 index aa2455d2..00000000 --- a/site/plugins/admin/node_modules/bootstrap/package.json +++ /dev/null @@ -1,241 +0,0 @@ -{ - "_from": "bootstrap@^4.0.0", - "_id": "bootstrap@4.0.0", - "_inBundle": false, - "_integrity": "sha512-gulJE5dGFo6Q61V/whS6VM4WIyrlydXfCgkE+Gxe5hjrJ8rXLLZlALq7zq2RPhOc45PSwQpJkrTnc2KgD6cvmA==", - "_location": "/bootstrap", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "bootstrap@^4.0.0", - "name": "bootstrap", - "escapedName": "bootstrap", - "rawSpec": "^4.0.0", - "saveSpec": null, - "fetchSpec": "^4.0.0" - }, - "_requiredBy": [ - "#DEV:/" - ], - "_resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.0.0.tgz", - "_shasum": "ceb03842c145fcc1b9b4e15da2a05656ba68469a", - "_spec": "bootstrap@^4.0.0", - "_where": "/Applications/MAMP/htdocs/flextype/site/plugins/admin", - "author": { - "name": "The Bootstrap Authors", - "url": "https://github.com/twbs/bootstrap/graphs/contributors" - }, - "browserslist": [ - "last 1 major version", - ">= 1%", - "Chrome >= 45", - "Firefox >= 38", - "Edge >= 12", - "Explorer >= 10", - "iOS >= 9", - "Safari >= 9", - "Android >= 4.4", - "Opera >= 30" - ], - "bugs": { - "url": "https://github.com/twbs/bootstrap/issues" - }, - "bundleDependencies": false, - "bundlesize": [ - { - "path": "./dist/css/bootstrap-grid.css", - "maxSize": "5 kB" - }, - { - "path": "./dist/css/bootstrap-grid.min.css", - "maxSize": "5 kB" - }, - { - "path": "./dist/css/bootstrap-reboot.css", - "maxSize": "3 kB" - }, - { - "path": "./dist/css/bootstrap-reboot.min.css", - "maxSize": "3 kB" - }, - { - "path": "./dist/css/bootstrap.css", - "maxSize": "25 kB" - }, - { - "path": "./dist/css/bootstrap.min.css", - "maxSize": "21 kB" - }, - { - "path": "./dist/js/bootstrap.bundle.js", - "maxSize": "45 kB" - }, - { - "path": "./dist/js/bootstrap.bundle.min.js", - "maxSize": "25 kB" - }, - { - "path": "./dist/js/bootstrap.js", - "maxSize": "20 kB" - }, - { - "path": "./dist/js/bootstrap.min.js", - "maxSize": "15 kB" - } - ], - "contributors": [ - { - "name": "Twitter, Inc." - } - ], - "dependencies": {}, - "deprecated": false, - "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.", - "devDependencies": { - "@babel/cli": "7.0.0-beta.37", - "@babel/core": "7.0.0-beta.37", - "@babel/preset-env": "7.0.0-beta.37", - "autoprefixer": "^7.2.4", - "babel-eslint": "^8.2.1", - "babel-plugin-transform-es2015-modules-strip": "^0.1.1", - "bundlesize": "^0.15.3", - "clean-css-cli": "^4.1.10", - "cross-env": "^5.1.3", - "eslint": "^4.15.0", - "eslint-plugin-compat": "^2.1.0", - "glob": "^7.1.2", - "htmllint-cli": "^0.0.6", - "jsunitsaucelabs": "^1.3.0", - "karma": "^2.0.0", - "karma-chrome-launcher": "^2.2.0", - "karma-detect-browsers": "^2.2.6", - "karma-firefox-launcher": "^1.1.0", - "karma-qunit": "^1.2.1", - "node-sass": "^4.7.2", - "nodemon": "^1.14.10", - "npm-run-all": "^4.1.2", - "popper.js": "^1.12.9", - "postcss-cli": "^4.1.1", - "qunitjs": "^2.4.1", - "rollup": "^0.53.4", - "rollup-plugin-babel": "4.0.0-beta.0", - "rollup-plugin-node-resolve": "^3.0.2", - "shelljs": "^0.7.8", - "shx": "^0.2.2", - "sri-toolbox": "^0.2.0", - "stylelint": "^8.4.0", - "stylelint-config-recommended-scss": "^3.0.0", - "stylelint-config-standard": "^18.0.0", - "stylelint-order": "^0.8.0", - "stylelint-scss": "^2.2.0", - "uglify-js": "^3.3.5", - "vnu-jar": "^17.11.1", - "workbox-build": "^2.1.2" - }, - "engines": { - "node": ">=6" - }, - "files": [ - "dist/", - "js/{src,dist}/", - "scss/" - ], - "homepage": "https://getbootstrap.com", - "jspm": { - "registry": "npm", - "main": "js/bootstrap", - "directories": { - "lib": "dist" - }, - "shim": { - "js/bootstrap": { - "deps": [ - "jquery", - "popper.js" - ], - "exports": "$" - } - }, - "dependencies": {}, - "peerDependencies": { - "jquery": "1.9.1 - 3", - "popper.js": "^1.12.9" - } - }, - "keywords": [ - "css", - "sass", - "mobile-first", - "responsive", - "front-end", - "framework", - "web" - ], - "license": "MIT", - "main": "dist/js/bootstrap", - "name": "bootstrap", - "peerDependencies": { - "jquery": "1.9.1 - 3", - "popper.js": "^1.12.9" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/twbs/bootstrap.git" - }, - "sass": "scss/bootstrap.scss", - "scripts": { - "bundlesize": "bundlesize", - "css": "npm-run-all --parallel css-lint* css-compile* --sequential css-prefix* css-minify*", - "css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap.scss dist/css/bootstrap.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap-grid.scss dist/css/bootstrap-grid.css && node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/bootstrap-reboot.scss dist/css/bootstrap-reboot.css", - "css-compile-docs": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 assets/scss/docs.scss assets/css/docs.min.css", - "css-docs": "npm-run-all --parallel css-lint-docs css-compile-docs --sequential css-prefix-docs css-minify-docs", - "css-lint": "stylelint --syntax scss \"scss/**/*.scss\"", - "css-lint-docs": "stylelint --syntax scss \"assets/scss/*.scss\" && stylelint \"docs/**/*.css\"", - "css-lint-vars": "node build/lint-vars.js scss/ assets/scss/", - "css-main": "npm-run-all --parallel css-lint css-compile --sequential css-prefix css-minify", - "css-minify": "cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/bootstrap.min.css dist/css/bootstrap.css && cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/bootstrap-grid.min.css dist/css/bootstrap-grid.css && cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/bootstrap-reboot.min.css dist/css/bootstrap-reboot.css", - "css-minify-docs": "cleancss --level 1 --source-map --source-map-inline-sources --output assets/css/docs.min.css assets/css/docs.min.css", - "css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"", - "css-prefix-docs": "postcss --config build/postcss.config.js --replace \"assets/css/docs.min.css\" \"docs/**/*.css\"", - "dist": "npm-run-all --parallel css js", - "docs": "npm-run-all --parallel css-docs js-docs --sequential docs-compile docs-lint", - "docs-compile": "bundle exec jekyll build", - "docs-github": "shx echo \"github: true\" > twbsconfig.yml && npm run docs-compile -- --config _config.yml,twbsconfig.yml && shx rm ./twbsconfig.yml", - "docs-github-serve": "bundle exec jekyll serve --skip-initial-build --no-watch", - "docs-lint": "npm-run-all docs-lint-*", - "docs-lint-htmllint": "htmllint --rc build/.htmllintrc \"_gh_pages/**/*.html\" \"js/tests/**/*.html\"", - "docs-lint-vnu-jar": "node build/vnu-jar.js", - "docs-serve": "bundle exec jekyll serve", - "docs-upload-preview": "build/upload-preview.sh", - "docs-workbox-precache": "node build/workbox.js", - "js": "npm-run-all js-lint* js-compile js-minify", - "js-compile": "npm-run-all --parallel js-compile-*", - "js-compile-bundle": "rollup --environment BUNDLE:true --config build/rollup.config.js --sourcemap", - "js-compile-plugins": "cross-env PLUGINS=true babel js/src/ --out-dir js/dist/ --source-maps", - "js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap", - "js-docs": "npm-run-all js-lint-docs js-minify-docs", - "js-lint": "eslint js/ build/", - "js-lint-docs": "eslint assets/js/ docs/ sw.js", - "js-main": "npm-run-all js-lint js-compile js-minify", - "js-minify": "npm-run-all --parallel js-minify-*", - "js-minify-bundle": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.bundle.js.map,includeSources,url=bootstrap.bundle.min.js.map\" --output dist/js/bootstrap.bundle.min.js dist/js/bootstrap.bundle.js", - "js-minify-docs": "uglifyjs --mangle --comments \"/^!/\" --output assets/js/docs.min.js assets/js/vendor/anchor.min.js assets/js/vendor/clipboard.min.js assets/js/vendor/holder.min.js \"assets/js/src/*.js\"", - "js-minify-standalone": "uglifyjs --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/bootstrap.js.map,includeSources,url=bootstrap.min.js.map\" --output dist/js/bootstrap.min.js dist/js/bootstrap.js", - "js-test": "npm-run-all --parallel js-test-karma*", - "js-test-cloud": "ruby -r webrick -e \"s = WEBrick::HTTPServer.new(:Port => 3000, :DocumentRoot => Dir.pwd, :Logger => WEBrick::Log.new('/dev/null'), :AccessLog => []); trap('INT') { s.shutdown }; s.start\" & node build/saucelabs-unit-test.js", - "js-test-karma": "karma start js/tests/karma.conf.js", - "js-test-karma-old": "cross-env USE_OLD_JQUERY=true npm run js-test-karma", - "maintenance-dependencies": "ncu -a -x jquery && npm update && bundle update && shx echo \"Manually update assets/js/vendor/*, js/tests/vendor/* and .travis.yml\"", - "postdocs-compile": "npm run docs-workbox-precache", - "release-sri": "node build/generate-sri.js", - "release-version": "node build/change-version.js", - "release-zip": "cd dist/ && zip -r9 bootstrap-$npm_package_version-dist.zip * && shx mv bootstrap-$npm_package_version-dist.zip ..", - "test": "npm-run-all dist js-test docs-compile docs-lint bundlesize", - "watch": "npm-run-all --parallel watch-css watch-js", - "watch-css": "nodemon --ignore js/ --ignore dist/ -e scss -x \"npm run css\"", - "watch-js": "nodemon --ignore scss/ --ignore js/dist/ --ignore dist/ -e js -x \"npm run js-compile\"" - }, - "style": "dist/css/bootstrap.css", - "version": "4.0.0" -} diff --git a/site/plugins/admin/node_modules/jquery/AUTHORS.txt b/site/plugins/admin/node_modules/jquery/AUTHORS.txt deleted file mode 100644 index 4bb5da15..00000000 --- a/site/plugins/admin/node_modules/jquery/AUTHORS.txt +++ /dev/null @@ -1,313 +0,0 @@ -Authors ordered by first contribution. - -John Resig -Gilles van den Hoven -Michael Geary -Stefan Petre -Yehuda Katz -Corey Jewett -Klaus Hartl -Franck Marcia -Jörn Zaefferer -Paul Bakaus -Brandon Aaron -Mike Alsup -Dave Methvin -Ed Engelhardt -Sean Catchpole -Paul Mclanahan -David Serduke -Richard D. Worth -Scott González -Ariel Flesler -Jon Evans -TJ Holowaychuk -Michael Bensoussan -Robert Katić -Louis-Rémi Babé -Earle Castledine -Damian Janowski -Rich Dougherty -Kim Dalsgaard -Andrea Giammarchi -Mark Gibson -Karl Swedberg -Justin Meyer -Ben Alman -James Padolsey -David Petersen -Batiste Bieler -Alexander Farkas -Rick Waldron -Filipe Fortes -Neeraj Singh -Paul Irish -Iraê Carvalho -Matt Curry -Michael Monteleone -Noah Sloan -Tom Viner -Douglas Neiner -Adam J. Sontag -Dave Reed -Ralph Whitbeck -Carl Fürstenberg -Jacob Wright -J. Ryan Stinnett -unknown -temp01 -Heungsub Lee -Colin Snover -Ryan W Tenney -Pinhook -Ron Otten -Jephte Clain -Anton Matzneller -Alex Sexton -Dan Heberden -Henri Wiechers -Russell Holbrook -Julian Aubourg -Gianni Alessandro Chiappetta -Scott Jehl -James Burke -Jonas Pfenniger -Xavi Ramirez -Jared Grippe -Sylvester Keil -Brandon Sterne -Mathias Bynens -Timmy Willison <4timmywil@gmail.com> -Corey Frang -Digitalxero -Anton Kovalyov -David Murdoch -Josh Varner -Charles McNulty -Jordan Boesch -Jess Thrysoee -Michael Murray -Lee Carpenter -Alexis Abril -Rob Morgan -John Firebaugh -Sam Bisbee -Gilmore Davidson -Brian Brennan -Xavier Montillet -Daniel Pihlstrom -Sahab Yazdani -avaly -Scott Hughes -Mike Sherov -Greg Hazel -Schalk Neethling -Denis Knauf -Timo Tijhof -Steen Nielsen -Anton Ryzhov -Shi Chuan -Berker Peksag -Toby Brain -Matt Mueller -Justin -Daniel Herman -Oleg Gaidarenko -Richard Gibson -Rafaël Blais Masson -cmc3cn <59194618@qq.com> -Joe Presbrey -Sindre Sorhus -Arne de Bree -Vladislav Zarakovsky -Andrew E Monat -Oskari -Joao Henrique de Andrade Bruni -tsinha -Matt Farmer -Trey Hunner -Jason Moon -Jeffery To -Kris Borchers -Vladimir Zhuravlev -Jacob Thornton -Chad Killingsworth -Nowres Rafid -David Benjamin -Uri Gilad -Chris Faulkner -Elijah Manor -Daniel Chatfield -Nikita Govorov -Wesley Walser -Mike Pennisi -Markus Staab -Dave Riddle -Callum Macrae -Benjamin Truyman -James Huston -Erick Ruiz de Chávez -David Bonner -Akintayo Akinwunmi -MORGAN -Ismail Khair -Carl Danley -Mike Petrovich -Greg Lavallee -Daniel Gálvez -Sai Lung Wong -Tom H Fuertes -Roland Eckl -Jay Merrifield -Allen J Schmidt Jr -Jonathan Sampson -Marcel Greter -Matthias Jäggli -David Fox -Yiming He -Devin Cooper -Paul Ramos -Rod Vagg -Bennett Sorbo -Sebastian Burkhard -Zachary Adam Kaplan -nanto_vi -nanto -Danil Somsikov -Ryunosuke SATO -Jean Boussier -Adam Coulombe -Andrew Plummer -Mark Raddatz -Isaac Z. Schlueter -Karl Sieburg -Pascal Borreli -Nguyen Phuc Lam -Dmitry Gusev -Michał Gołębiowski-Owczarek -Li Xudong -Steven Benner -Tom H Fuertes -Renato Oliveira dos Santos -ros3cin -Jason Bedard -Kyle Robinson Young -Chris Talkington -Eddie Monge -Terry Jones -Jason Merino -Jeremy Dunck -Chris Price -Guy Bedford -Amey Sakhadeo -Mike Sidorov -Anthony Ryan -Dominik D. Geyer -George Kats -Lihan Li -Ronny Springer -Chris Antaki -Marian Sollmann -njhamann -Ilya Kantor -David Hong -John Paul -Jakob Stoeck -Christopher Jones -Forbes Lindesay -S. Andrew Sheppard -Leonardo Balter -Roman Reiß -Benjy Cui -Rodrigo Rosenfeld Rosas -John Hoven -Philip Jägenstedt -Christian Kosmowski -Liang Peng -TJ VanToll -Senya Pugach -Aurelio De Rosa -Nazar Mokrynskyi -Amit Merchant -Jason Bedard -Arthur Verschaeve -Dan Hart -Bin Xin -David Corbacho -Veaceslav Grimalschi -Daniel Husar -Frederic Hemberger -Ben Toews -Aditya Raghavan -Victor Homyakov -Shivaji Varma -Nicolas HENRY -Anne-Gaelle Colom -George Mauer -Leonardo Braga -Stephen Edgar -Thomas Tortorini -Winston Howes -Jon Hester -Alexander O'Mara -Bastian Buchholz -Arthur Stolyar -Calvin Metcalf -Mu Haibao -Richard McDaniel -Chris Rebert -Gabriel Schulhof -Gilad Peleg -Martin Naumann -Marek Lewandowski -Bruno Pérel -Reed Loden -Daniel Nill -Yongwoo Jeon -Sean Henderson -Richard Kraaijenhagen -Connor Atherton -Gary Ye -Christian Grete -Liza Ramo -Julian Alexander Murillo -Joelle Fleurantin -Jae Sung Park -Jun Sun -Josh Soref -Henry Wong -Jon Dufresne -Martijn W. van der Lee -Devin Wilson -Steve Mao -Zack Hall -Bernhard M. Wiedemann -Todor Prikumov -Jha Naman -William Robinet -Alexander Lisianoi -Vitaliy Terziev -Joe Trumbull -Alexander K -Damian Senn -Ralin Chimev -Felipe Sateler -Christophe Tafani-Dereeper -Manoj Kumar -David Broder-Rodgers -Alex Louden -Alex Padilla -南漂一卒 -karan-96 -Boom Lee -Andreas Solleder -CDAGaming -Pierre Spring -Shashanka Nataraj -Erik Lax -Matan Kotler-Berkowitz <205matan@gmail.com> -Jordan Beland -Henry Zhu -Saptak Sengupta -Nilton Cesar -basil.belokon diff --git a/site/plugins/admin/node_modules/jquery/LICENSE.txt b/site/plugins/admin/node_modules/jquery/LICENSE.txt deleted file mode 100644 index e4e5e00e..00000000 --- a/site/plugins/admin/node_modules/jquery/LICENSE.txt +++ /dev/null @@ -1,36 +0,0 @@ -Copyright JS Foundation and other contributors, https://js.foundation/ - -This software consists of voluntary contributions made by many -individuals. For exact contribution history, see the revision history -available at https://github.com/jquery/jquery - -The following license applies to all parts of this software except as -documented below: - -==== - -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. - -==== - -All files located in the node_modules and external directories are -externally maintained libraries used by this software which have their -own licenses; we recommend you read them, as their terms may differ from -the terms above. diff --git a/site/plugins/admin/node_modules/jquery/README.md b/site/plugins/admin/node_modules/jquery/README.md deleted file mode 100644 index 83e7b937..00000000 --- a/site/plugins/admin/node_modules/jquery/README.md +++ /dev/null @@ -1,67 +0,0 @@ -# jQuery - -> jQuery is a fast, small, and feature-rich JavaScript library. - -For information on how to get started and how to use jQuery, please see [jQuery's documentation](http://api.jquery.com/). -For source files and issues, please visit the [jQuery repo](https://github.com/jquery/jquery). - -If upgrading, please see the [blog post for 3.3.1](https://blog.jquery.com/2017/03/20/jquery-3.3.1-now-available/). This includes notable differences from the previous version and a more readable changelog. - -## Including jQuery - -Below are some of the most common ways to include jQuery. - -### Browser - -#### Script tag - -```html - -``` - -#### Babel - -[Babel](http://babeljs.io/) is a next generation JavaScript compiler. One of the features is the ability to use ES6/ES2015 modules now, even though browsers do not yet support this feature natively. - -```js -import $ from "jquery"; -``` - -#### Browserify/Webpack - -There are several ways to use [Browserify](http://browserify.org/) and [Webpack](https://webpack.github.io/). For more information on using these tools, please refer to the corresponding project's documention. In the script, including jQuery will usually look like this... - -```js -var $ = require("jquery"); -``` - -#### AMD (Asynchronous Module Definition) - -AMD is a module format built for the browser. For more information, we recommend [require.js' documentation](http://requirejs.org/docs/whyamd.html). - -```js -define(["jquery"], function($) { - -}); -``` - -### Node - -To include jQuery in [Node](nodejs.org), first install with npm. - -```sh -npm install jquery -``` - -For jQuery to work in Node, a window with a document is required. Since no such window exists natively in Node, one can be mocked by tools such as [jsdom](https://github.com/tmpvar/jsdom). This can be useful for testing purposes. - -```js -require("jsdom").env("", function(err, window) { - if (err) { - console.error(err); - return; - } - - var $ = require("jquery")(window); -}); -``` diff --git a/site/plugins/admin/node_modules/jquery/bower.json b/site/plugins/admin/node_modules/jquery/bower.json deleted file mode 100644 index 95798d5a..00000000 --- a/site/plugins/admin/node_modules/jquery/bower.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "name": "jquery", - "main": "dist/jquery.js", - "license": "MIT", - "ignore": [ - "package.json" - ], - "keywords": [ - "jquery", - "javascript", - "browser", - "library" - ] -} \ No newline at end of file diff --git a/site/plugins/admin/node_modules/jquery/package.json b/site/plugins/admin/node_modules/jquery/package.json deleted file mode 100644 index b95fcde0..00000000 --- a/site/plugins/admin/node_modules/jquery/package.json +++ /dev/null @@ -1,133 +0,0 @@ -{ - "_from": "jquery@^3.3.1", - "_id": "jquery@3.3.1", - "_inBundle": false, - "_integrity": "sha512-Ubldcmxp5np52/ENotGxlLe6aGMvmF4R8S6tZjsP6Knsaxd/xp3Zrh50cG93lR6nPXyUFwzN3ZSOQI0wRJNdGg==", - "_location": "/jquery", - "_phantomChildren": {}, - "_requested": { - "type": "range", - "registry": true, - "raw": "jquery@^3.3.1", - "name": "jquery", - "escapedName": "jquery", - "rawSpec": "^3.3.1", - "saveSpec": null, - "fetchSpec": "^3.3.1" - }, - "_requiredBy": [ - "#DEV:/" - ], - "_resolved": "https://registry.npmjs.org/jquery/-/jquery-3.3.1.tgz", - "_shasum": "958ce29e81c9790f31be7792df5d4d95fc57fbca", - "_spec": "jquery@^3.3.1", - "_where": "/Applications/MAMP/htdocs/flextype/site/plugins/admin", - "author": { - "name": "JS Foundation and other contributors", - "url": "https://github.com/jquery/jquery/blob/3.3.1/AUTHORS.txt" - }, - "bugs": { - "url": "https://github.com/jquery/jquery/issues" - }, - "bundleDependencies": false, - "commitplease": { - "nohook": true, - "components": [ - "Docs", - "Tests", - "Build", - "Support", - "Release", - "Core", - "Ajax", - "Attributes", - "Callbacks", - "CSS", - "Data", - "Deferred", - "Deprecated", - "Dimensions", - "Effects", - "Event", - "Manipulation", - "Offset", - "Queue", - "Selector", - "Serialize", - "Traversing", - "Wrap" - ], - "markerPattern": "^((clos|fix|resolv)(e[sd]|ing))|^(refs?)", - "ticketPattern": "^((Closes|Fixes) ([a-zA-Z]{2,}-)[0-9]+)|^(Refs? [^#])" - }, - "dependencies": {}, - "deprecated": false, - "description": "JavaScript library for DOM operations", - "devDependencies": { - "babel-core": "7.0.0-beta.0", - "babel-plugin-transform-es2015-for-of": "7.0.0-beta.0", - "commitplease": "2.7.10", - "core-js": "2.4.1", - "eslint-config-jquery": "1.0.1", - "grunt": "1.0.1", - "grunt-babel": "7.0.0", - "grunt-cli": "1.2.0", - "grunt-compare-size": "0.4.2", - "grunt-contrib-uglify": "3.0.1", - "grunt-contrib-watch": "1.0.0", - "grunt-eslint": "20.0.0", - "grunt-git-authors": "3.2.0", - "grunt-jsonlint": "1.1.0", - "grunt-karma": "2.0.0", - "grunt-newer": "1.3.0", - "grunt-npmcopy": "0.1.0", - "gzip-js": "0.3.2", - "husky": "0.14.3", - "insight": "0.8.4", - "jsdom": "5.6.1", - "karma": "1.7.0", - "karma-browserstack-launcher": "1.3.0", - "karma-chrome-launcher": "2.2.0", - "karma-firefox-launcher": "1.0.1", - "karma-qunit": "1.2.1", - "load-grunt-tasks": "3.5.2", - "native-promise-only": "0.8.1", - "promises-aplus-tests": "2.1.2", - "q": "1.5.0", - "qunit-assert-step": "1.0.3", - "qunitjs": "1.23.1", - "raw-body": "2.2.0", - "requirejs": "2.3.3", - "sinon": "2.3.7", - "sizzle": "2.3.3", - "strip-json-comments": "2.0.1", - "testswarm": "1.1.0", - "uglify-js": "3.3.4" - }, - "homepage": "https://jquery.com", - "keywords": [ - "jquery", - "javascript", - "browser", - "library" - ], - "license": "MIT", - "main": "dist/jquery.js", - "name": "jquery", - "repository": { - "type": "git", - "url": "git+https://github.com/jquery/jquery.git" - }, - "scripts": { - "build": "npm install && grunt", - "commitmsg": "node node_modules/commitplease", - "jenkins": "npm run test:browserless", - "precommit": "grunt lint:newer qunit_fixture", - "start": "grunt watch", - "test": "grunt && grunt test:slow && grunt karma:main", - "test:browser": "grunt && grunt karma:main", - "test:browserless": "grunt && grunt test:slow" - }, - "title": "jQuery", - "version": "3.3.1" -} diff --git a/site/plugins/admin/package-lock.json b/site/plugins/admin/package-lock.json deleted file mode 100644 index 9ffb9780..00000000 --- a/site/plugins/admin/package-lock.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "flextype", - "version": "1.0.0", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "bootstrap": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.0.0.tgz", - "integrity": "sha512-gulJE5dGFo6Q61V/whS6VM4WIyrlydXfCgkE+Gxe5hjrJ8rXLLZlALq7zq2RPhOc45PSwQpJkrTnc2KgD6cvmA==", - "dev": true - }, - "jquery": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.3.1.tgz", - "integrity": "sha512-Ubldcmxp5np52/ENotGxlLe6aGMvmF4R8S6tZjsP6Knsaxd/xp3Zrh50cG93lR6nPXyUFwzN3ZSOQI0wRJNdGg==", - "dev": true - } - } -} diff --git a/site/plugins/admin/package.json b/site/plugins/admin/package.json deleted file mode 100644 index 3ed8d62b..00000000 --- a/site/plugins/admin/package.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "name": "flextype", - "version": "1.0.0", - "devDependencies": { - "bootstrap": "^4.0.0", - "jquery": "^3.3.1" - } -} diff --git a/site/plugins/admin/views/dashboard.php b/site/plugins/admin/views/dashboard.php deleted file mode 100644 index dcabf8fd..00000000 --- a/site/plugins/admin/views/dashboard.php +++ /dev/null @@ -1 +0,0 @@ -Dashboard diff --git a/site/plugins/admin/views/login.php b/site/plugins/admin/views/login.php deleted file mode 100644 index 566e315a..00000000 --- a/site/plugins/admin/views/login.php +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - <?php echo Flextype\I18n::find('admin_login', 'admin', Flextype\Config::get('site.locale')); ?> - - - - - - - - - - - diff --git a/site/plugins/admin/views/pages.php b/site/plugins/admin/views/pages.php deleted file mode 100644 index 0610de97..00000000 --- a/site/plugins/admin/views/pages.php +++ /dev/null @@ -1 +0,0 @@ -Pages diff --git a/site/plugins/admin/views/settings.php b/site/plugins/admin/views/settings.php deleted file mode 100644 index 163d304a..00000000 --- a/site/plugins/admin/views/settings.php +++ /dev/null @@ -1 +0,0 @@ -Settings