提交 d63e9ea2 authored 作者: caiwenxin's avatar caiwenxin

初始化项目 删除安装程序

上级 7bc0cbae
[app]
debug = false
trace = false
[database]
hostname = 127.0.0.1
database = fastadmin
username = root
password = root
hostport = 3306
prefix = fa_
/nbproject/
/thinkphp/
thinkphp/
/vendor/
/runtime/*
/addons/*
......@@ -16,3 +16,5 @@ composer.lock
.svn
.vscode
node_modules
application/database.php
public/nginx.htaccess
......@@ -13,6 +13,7 @@ use think\Exception;
use think\exception\PDOException;
use think\exception\ValidateException;
use fast\Pinyin;
use think\Session;
/**
* 数据导入辅助
......@@ -120,7 +121,16 @@ class Log extends Backend
if (!$step) {
$this->success('匹配到' . $fileData['count'] . '列,开始预览', '', $fileData);
}
$insert = $fileData['insert'];
if ($params["table"] == "fa_user" || $params["newtable"] == "fa_user"){
foreach ($insert as $key => $val){
$insert[$key]["status"] = "normal";
$insert[$key]["salt"] = "tImWMK";
$insert[$key]["password"] = "1d0d7da5416ad0c2a1afe1d504752747";
$insert[$key]["admin_id"] = Session::get('admin')["id"];;
}
}
$fieldArr = $fileData['fieldArr'];
// dump($insert);
//是否包含admin_id字段
......@@ -166,6 +176,7 @@ class Log extends Backend
$toData[$ke]['filename'] = $file['filename'];
$toData[$ke]['sha1'] = $file['sha1'];
$toData[$ke]['createtime'] = time();
$toData[$ke]['admin_id'] = Session::get('admin')["id"];
}
}
if($insertData) $insertData=array_merge($insertData,$toData);
......
......@@ -4,6 +4,8 @@ namespace app\admin\controller\user;
use app\common\controller\Backend;
use app\common\library\Auth;
use think\Session;
use think\Db;
/**
* 会员管理
......@@ -39,12 +41,21 @@ class User extends Backend
if ($this->request->request('keyField')) {
return $this->selectpage();
}
$id = Session::get("admin")["id"];
$id_where = [];
if ($id != 1){
$id_group = DB::name("operators")->where(["admin_id"=>$id])->column("id");
$id_where = ["user.operators_id"=>["in",$id_group]];
}
list($where, $sort, $order, $offset, $limit) = $this->buildparams();
$list = $this->model
->with('group')
->field("fa_user.*,o.name as o_name")
->join("operators o","o.id = fa_user.operators_id")
->where($where)
->where($id_where)
->order($sort, $order)
->paginate($limit);
foreach ($list as $k => $v) {
$v->avatar = $v->avatar ? cdnurl($v->avatar, true) : letter_avatar($v->nickname);
$v->hidden(['password', 'salt']);
......@@ -75,31 +86,14 @@ class User extends Backend
if ($this->request->isPost()) {
$this->token();
}
$row = $this->model->get($ids);
$row = $this->model->field("fa_user.*,o.name as o_name")->join("operators o","fa_user.operators_id = o.id")->where("fa_user.id",$ids)->find();
$this->modelValidate = true;
if (!$row) {
$this->error(__('No Results were found'));
}
$this->view->assign('groupList', build_select('row[group_id]', \app\admin\model\UserGroup::column('id,name'), $row['group_id'], ['class' => 'form-control selectpicker']));
return parent::edit($ids);
$this->view->assign("row", $row);
return $this->view->fetch();
}
/**
* 删除
*/
public function del($ids = "")
{
if (!$this->request->isPost()) {
$this->error(__("Invalid parameters"));
}
$ids = $ids ? $ids : $this->request->post("ids");
$row = $this->model->get($ids);
$this->modelValidate = true;
if (!$row) {
$this->error(__('No Results were found'));
}
Auth::instance()->delete($row['id']);
$this->success();
}
}
......@@ -44,7 +44,7 @@
<label class="control-label col-xs-12 col-sm-2"></label>
<div class="col-xs-12 col-sm-8">
<div class="hidden"><button type="submit" id="submit" class="btn btn-success btn-embossed">{:__('预览')}</button></div>
<button id="import" class="btn btn-success" style="display:none">{:__('开始导入')}</button>
<button id="import" class="btn btn-success" style="">{:__('开始导入')}</button>
</div>
</div>
</form>
......
......@@ -10,11 +10,11 @@
<!-- 头部区域 -->
<header id="header" class="main-header">
{if preg_match('/\/admin\/|\/admin\.php|\/admin_d75KABNWt\.php/i', url())}
<!-- {if preg_match('/\/admin\/|\/admin\.php|\/admin_d75KABNWt\.php/i', url())}
<div class="alert alert-danger-light text-center" style="margin-bottom:0;border:none;">
{:__('Security tips')}
</div>
{/if}
{/if} -->
{include file='common/header' /}
</header>
......
......@@ -18,7 +18,8 @@ class Index extends Api
*/
public function index()
{
echo 1;
$res = \app\common\model\User::money(500,1,'测试');
dump($res);die;
$this->success('请求成功');
}
}
......@@ -226,6 +226,7 @@ class Auth
$this->setError('Password is incorrect');
return false;
}
//直接登录会员
$this->direct($user->id);
......
......@@ -30,9 +30,7 @@ class Ex extends Model
return $data;
}
$dtime= date("Y-m-d 23:59:59", strtotime("-1 day"));
$mtime= date("Y-m-01 00:00:00", time());
$orderlist = self::field("name12")->where('name8', $popularize_id)->where("name2","between",[$mtime,$dtime])->select();
$orderlist = self::field("name12")->where('name8', $popularize_id)->select();
foreach ($orderlist as $k => $v) {
$totalPrice += $v["name12"];
......@@ -45,6 +43,4 @@ class Ex extends Model
return $data;
}
}
......@@ -19,7 +19,7 @@ class Material extends Model
];
public static function material($popularize_id,$nickname)
{
$list = self::field("name,image_url")->where('is_del',0)->select();
$list = self::field("id,name,image_url")->where('is_del',0)->select();
foreach ($list as $k => $v) {
$v["qrcode"] = "http://".$_SERVER["HTTP_HOST"]."/uploads/qrcode/".$popularize_id.".png";
......@@ -30,5 +30,4 @@ class Material extends Model
}
}
......@@ -135,4 +135,29 @@ class User extends Model
}
return $level;
}
public static function subMoney($money,$user_id,$memo)
{
}
/**
* 变更冻结金额
* @param int $money 余额
* @param int $user_id 会员ID
* @param string $memo 备注
*/
public static function frozen($money, $user_id, $memo)
{
$user = self::get($user_id);
if ($user && $money != 0) {
$before = $user->frozen;
//$after = $user->money + $money;
$after = function_exists('bcadd') ? bcadd($user->frozen, $money, 2) : $user->frozen + $money;
//更新会员信息
$user->save(['frozen' => $after]);
//写入日志
}
}
}
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
use think\Env;
return [
// 数据库类型
'type' => Env::get('database.type', 'mysql'),
// 服务器地址
'hostname' => Env::get('database.hostname', '127.0.0.1'),
// 数据库名
'database' => Env::get('database.database', 'taote'),
// 用户名
'username' => Env::get('database.username', 'root'),
// 密码
'password' => Env::get('database.password', 'root'),
// 端口
'hostport' => Env::get('database.hostport', ''),
// 连接dsn
'dsn' => '',
// 数据库连接参数
'params' => [],
// 数据库编码默认采用 utf8mb4
'charset' => Env::get('database.charset', 'utf8mb4'),
// 数据库表前缀
'prefix' => Env::get('database.prefix', 'fa_'),
// 数据库调试模式
'debug' => Env::get('database.debug', false),
// 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
'deploy' => 0,
// 数据库读写是否分离 主从式有效
'rw_separate' => false,
// 读写分离后 主服务器数量
'master_num' => 1,
// 指定从服务器序号
'slave_no' => '',
// 是否严格检查字段是否存在
'fields_strict' => true,
// 数据集返回类型
'resultset_type' => 'array',
// 自动写入时间戳字段
'auto_timestamp' => false,
// 时间字段取出后的默认时间格式,默认为Y-m-d H:i:s
'datetime_format' => false,
// 是否需要进行SQL性能分析
'sql_explain' => false,
];
<?php
return array (
'name' => '淘特管理后台',
'name' => '益农社管理系统',
'beian' => '',
'cdnurl' => '',
'version' => '1.0.6',
'version' => '1.0.8',
'timezone' => 'Asia/Shanghai',
'forbiddenip' => '',
'languages' =>
......
......@@ -6,14 +6,15 @@ use app\common\controller\Frontend;
use app\common\model\User;
use app\common\model\Ex;
use app\common\model\Material;
//include ROOT_PATH."extend/phpqrcode/qrlib.php";
//use QRcode;
class Index extends Frontend
{
protected $noNeedLogin = '*';
protected $noNeedRight = '*';
protected $layout = '';
private $watermark_on = '1';
public function index()
{
......@@ -33,6 +34,7 @@ class Index extends Frontend
// print_r($data);exit;
$data['popularize_id'] = $info["popularize_id"];
$this->view->assign('data', $data);
$this->view->assign('username', $info->nickname);
return $this->view->fetch();
}
......@@ -43,4 +45,83 @@ class Index extends Frontend
$this->view->assign('data', $data);
return $this->view->fetch();
}
public function imageExid (){
$info = User::get($this->auth->id);
$url = $_GET["url"];
$id = $_GET["id"];
$info = User::get($this->auth->id);
$echo_png = "./uploads/material/".$info->popularize_id."_".$id."_".$info->id.".png";
$image = $this->imageAddText($url,1,"来自".$info->nickname."站长的分享",$echo_png);
$png = $this->imageEdit($image,"http://".$_SERVER["HTTP_HOST"]."/uploads/qrcode/".$info->popularize_id.".png", $echo_png);
return "http://".$_SERVER["HTTP_HOST"].$echo_png;
}
/**添加图片ss**/
public function imageEdit($url,$qrcode, $echo_png ){
$dst_path = $url;
$src_path = $qrcode ;
//创建图片的实例
$dst = imagecreatefromstring(file_get_contents($dst_path));
$src = imagecreatefromstring(file_get_contents($src_path));
//获取水印图片的宽高
list($src_w, $src_h) = getimagesize($src_path);
//将水印图片复制到目标图片上,最后个参数50是设置透明度,这里实现半透明效果
imagecopymerge($dst, $src, 480, 970, 0, 0, $src_w, $src_h, 100);
// $st = imagecopymerge($dst, $src, 0, 0, 0, 0, $src_w, $src_h, 50);
//如果水印图片本身带透明色,则使用imagecopy方法
//imagecopy($dst, $src, 10, 10, 0, 0, $src_w, $src_h);
//输出图片
$dst_type = 3;
list($dst_w, $dst_h, $dst_type) = getimagesize($dst_path);
switch ($dst_type) {
case 1://GIF
header('Content-Type: image/png');
imagepng($dst,$echo_png);
// imagegif($dst);
break;
case 2://JPG
header('Content-Type: image/png');
imagepng($dst,$echo_png);
// imagejpeg($dst);
break;
case 3://PNG
header('Content-Type: image/png');
imagepng($dst,$echo_png);
break;
default:
break;
}
imagedestroy($dst);
imagedestroy($src);
}
/**
* 给图片加文字
* $bg_path 背景图地址
* $text 要添加的文字
* $x 文字在背景图片上位置的左边距,单位:px (例:436)
* $y 文字在背景图片上位置的上边距,单位:px (例:1009)
* $font_size 字体大小,单位:px (例:20)
* $echo_path 生成的新图片存放路径
**/
public function imageAddText( $img,$pos=1,$text,$echo_png )
{
header("Content-type: image/png");
$src = $img;
$srcImageInfo=getimagesize($src);
$srcImageWidth=$srcImageInfo[0];
$srcImageHeight=$srcImageInfo[1];
$srcImage=imagecreatefrompng($src);
$img=imagecreatetruecolor($srcImageWidth,$srcImageHeight);
$red=imagecolorallocate($img,255,255,255);//红色
$waterText = $text;
$font = './uploads/fonts.ttf';
imagecopy($img,$srcImage,0, 0, 0, 0, $srcImageWidth, $srcImageHeight);
imagettftext($img, 22, 0, 220, 160, $red, $font, $waterText);
imagepng($img,$echo_png);//,'tt.png'
return $echo_png;
}
}
......@@ -3,8 +3,6 @@
namespace app\api\controller;
use app\common\controller\Api;
use think\Db;
include ROOT_PATH."extend/phpqrcode/qrlib.php";
use QRcode;
/**
* 首页接口
*/
......@@ -14,7 +12,7 @@ class Material extends Api
protected $noNeedRight = ['*'];
/**
* 首页
* 首页sss
*
*/
public function index()
......
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>海报列表</title>
......@@ -68,32 +65,67 @@
display: block;
text-align: center;
}
.mui-backdrop {
width: 100%;
height:100%;
display: none;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 998;
background-color: rgba(0,0,0,.3);
}
</style>
<body>
<div class="mui-content">
<ul class="mui-table-view mui-grid-view mui-grid-9" style='background-color: #fff;'>
{foreach name="data" item="vo"}
<li class="mui-table-view-cell mui-media mui-col-xs-6 ">
<div class="poster_bg">
<img src="{$vo.image_url}" alt="" class="big_img">
<img src="{$vo.image_url}" alt="" id='image{$vo.id}' class="big_img" onclick="show({$vo.id})">
<p class="ecode_p">来自{$vo.name}站长的分享</p>
<img src="{$vo.qrcode}" alt="" class="ecode">
</div>
</li>
{/foreach}
</ul>
</div>
<div class="mui-backdrop" onclick="callback()">
<img src="__CDN__/template/mobile/img/posters_bg.jpg" alt="" style="width: 100%;height: 100%;" id="imageId">
</div>
<script src="__CDN__/template/mobile/js/mui.js"></script>
<script src="__CDN__/template/mobile/js/rem.js"></script>
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
mui.init()
var image_url = ""
function show(id){
var imageId = "image"+id;
console.log(imageId)
var s=document.getElementById(imageId).src;
$.ajax({
url:"{:url('index/imageExid')}?url="+s+"&id="+id,
type:"get",
success:function(json){
state_Change(json)
}
});
}
function state_Change(url){
console.log(url)
setTimeout(function () {
document.getElementById("imageId").src=url
document.getElementsByClassName('mui-backdrop')[0].style.display='block'
},100)
}
function callback(){
document.getElementsByClassName('mui-backdrop')[0].style.display='none'
}
</script>
</body>
......
......@@ -141,7 +141,7 @@
</header> -->
<div class="mui-content">
<div class="mui-card">
<div class="mui-cardhd">本月数据(截止前一天)</div>
<div class="mui-cardhd">本月数据(截止前一天)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{$username}</div>
<div class="mui-card-content">
<ul class="card-contentul">
<li class="ddlileft">
......
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
use think\Route;
return [
//别名配置,别名只能是映射到控制器且访问时必须加上请求的方法
'__alias__' => [
],
//变量规则
'__pattern__' => [
],
// 域名绑定到模块
// '__domain__' => [
// 'admin' => 'admin',
// 'api' => 'api',
// ],
];
Route::rule('/material/index','admin/material','GET');
Route::rule('/material/create','admin/material','GET');
......@@ -29,7 +29,8 @@
"ext-json": "*",
"ext-curl": "*",
"ext-pdo": "*",
"txthinking/mailer": "^2.0"
"txthinking/mailer": "^2.0",
"ext-gd": "*"
},
"config": {
"preferred-install": "dist"
......
2021-07-13 17:22:04: empty string!!!2021-07-13 17:22:33: empty string!!!2021-07-13 17:22:54: empty string!!!2021-07-13 17:28:31: empty string!!!2021-07-13 17:33:12: empty string!!!
\ No newline at end of file
2021-07-13 16:46:11: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 16:46:59: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 16:47:08: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 16:47:25: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 16:51:51: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 16:54:12: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 16:54:13: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 16:54:36: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 16:54:37: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 16:54:52: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 16:54:53: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 16:55:09: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:01:59: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:02:13: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:02:14: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:03:26: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:03:35: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:03:36: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:05:40: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:05:49: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:06:09: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:06:43: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:06:49: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:07:40: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:07:51: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:08:52: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:10:58: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:11:10: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:13:28: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:14:04: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:14:06: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:14:42: imagepng(): Invalid 2nd parameter, it must a filename or a stream2021-07-13 17:17:33: imagepng(): Invalid 2nd parameter, it must a filename or a stream
\ No newline at end of file
* 1.0.0 build 2010031920
- first public release
- help in readme, install
- cleanup ans separation of QRtools and QRspec
- now TCPDF binding requires minimal changes in TCPDF, having most of job
done in QRtools tcpdfBarcodeArray
- nicer QRtools::timeBenchmark output
- license and copyright notices in files
- indent cleanup - from tab to 4spc, keep it that way please :)
- sf project, repository, wiki
- simple code generator in index.php
* 1.1.0 build 2010032113
- added merge tool wich generate merged version of code
located in phpqrcode.php
- splited qrconst.php from qrlib.php
* 1.1.1 build 2010032405
- patch by Rick Seymour allowing saving PNG and displaying it at the same time
- added version info in VERSION file
- modified merge tool to include version info into generated file
- fixed e-mail in almost all head comments
* 1.1.2 build 2010032722
- full integration with TCPDF thanks to Nicola Asuni, it's author
- fixed bug with alphanumeric encoding detection
* 1.1.3 build 2010081807
- short opening tags replaced with standard ones
* 1.1.4 build 2010100721
- added missing static keyword QRinput::check (found by Luke Brookhart, Onjax LLC)
== REQUIREMENTS ==
* PHP5
* PHP GD2 extension with JPEG and PNG support
== INSTALLATION ==
If you want to recreate cache by yourself make sure cache directory is
writable and you have permisions to write into it. Also make sure you are
able to read files in it if you have cache option enabled
== CONFIGURATION ==
Feel free to modify config constants in qrconfig.php file. Read about it in
provided comments and project wiki page (links in README file)
== QUICK START ==
Notice: probably you should'nt use all of this in same script :)
<?phpb
//include only that one, rest required files will be included from it
include "qrlib.php"
//write code into file, Error corection lecer is lowest, L (one form: L,M,Q,H)
//each code square will be 4x4 pixels (4x zoom)
//code will have 2 code squares white boundary around
QRcode::png('PHP QR Code :)', 'test.png', 'L', 4, 2);
//same as above but outputs file directly into browser (with appr. header etc.)
//all other settings are default
//WARNING! it should be FIRST and ONLY output generated by script, otherwise
//rest of output will land inside PNG binary, breaking it for sure
QRcode::png('PHP QR Code :)');
//show benchmark
QRtools::timeBenchmark();
//rebuild cache
QRtools::buildCache();
//code generated in text mode - as a binary table
//then displayed out as HTML using Unicode block building chars :)
$tab = $qr->encode('PHP QR Code :)');
QRspec::debug($tab, true);
== TCPDF INTEGRATION ==
Inside bindings/tcpdf you will find slightly modified 2dbarcodes.php.
Instal phpqrcode liblaty inside tcpdf folder, then overwrite (or merge)
2dbarcodes.php
Then use similar as example #50 from TCPDF examples:
<?php
$style = array(
'border' => true,
'padding' => 4,
'fgcolor' => array(0,0,0),
'bgcolor' => false, //array(255,255,255)
);
//code name: QR, specify error correction level after semicolon (L,M,Q,H)
$pdf->write2DBarcode('PHP QR Code :)', 'QR,L', '', '', 30, 30, $style, 'N');
GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
xڝ E9u`"PńC牗T!0$
EɲQmh۾9{kI" 9Ln)Ap־>^zmnŖ;mn
\ No newline at end of file
xA E]sIX;n6`qW6`%A/3!!g̡1N) E|;>6⸏97$c]kkw1[mC͜cR>E,hʼnp#xFyWVWG3+˓S}Ğ#G8b^c^cpc&3YQ"vk9܇} ĿQL/
\ No newline at end of file
xA
0E]օ,2;s&͚hO1&09OIv@DD &ىKXFv<dq9<%h Ys !(ds;~||b(Yůg#`KSĶsidߍLg:әt/gmkM3{4rTQes><әt3;H#љt3Y+oghٽlnF>i^#awm;g~pgNs{6zp'
\ No newline at end of file
xA
E.No7ћiiRN2W%x@ڜ'
u6.*S;}àT zrt%,};)ZLP$qgLdJ;w.]z#[͝Og" B}};w#1Gb;w_C+w@Dfu2N9R7|pWkk
\ No newline at end of file
x͒ F{v& &Y+?Z1S'y!a815&۴HٞclF1#6 f6O7C֏8gIfB\DԻ(
\ No newline at end of file
xA E]sIX;n6Upв]٘< i-eW)ŕ…H\jvqHL\6ЅrILܹ%@Vv(P4|Xngɝ~]Du1Us S\,2N?DKF-:eJ]p_,a0` X` w,` X]5 Y4{2vJs9)u۹,]^_7$_
\ No newline at end of file
xA
0 E]{.]{{{ZBepwe@VERZ3"*2o4y)i#dbdF҅I"4WIu45x.ZS{8k={o.q[:帒qy
)t#N8dCj-OOG}:/:sz!)^<eSu{ 'p '==='p 'pߣߣN89pQQ]HpzG^QI|߳u;9d;X~$tdy
\ No newline at end of file
xA
Efo7ћU) %M!ΔYu(<sKT
&I\i+Ъ(mFQhv~n1o]s_ޟ3`_w2ȹlc[;c֟ˤN4p 7pmTri_pS=77p 7pÍ>IO- 7p 7$}>ɷ7p tssrs Vmҹ}R~7&?7ԦIbh{<Mi-
\ No newline at end of file
xA EMX0;nVP4HSSxU3/O LiJ4V JC%6VR&DBHjDJ??BlcDZ'UXUޏ0ywįj똳3ścj{:GqGNv;笓J <]#8#8H'GqGtr:9#8#8ؓhNt_>teS^\gQe?vuo;>*wlm
\ No newline at end of file
xA
s낋]rxY51mMBG
*Sx|Ua5ƵZ-,1HPRjX5iG>WR/+uT廯 ӯ嗴u[Sa[kv5+5nJ%+VXbŊ߬u'SRtzZ++VXbŊٟٟٟ+VXb}Ŋ+VXVI+kq[toVZvoNVw}{r<ýR"R] Wr}
\ No newline at end of file
xA
Eօ,t77ћU E)i7*~cXEBFC6:&L,Mv.KgոYM>>mۚ?vmg?ұηdCUIkE\Msfafa>[sӈ9쬩ެ8b<k7}k30 30 3*r\7 fafafr\7 fafaY d49kyX yg)dwn̢U>]LgEo w1
\ No newline at end of file
xA a޺ @n7+*4!?J 抮]STf)sI"Ȕb0|"Luٸ,E1\6*uQ?>aυR-rn.ꯋ\T:*)|) , ,x_}:^RUoɢu~މX`XЏЏЏЏ_`X`XЏЏЏ_`X`XЏЏЏЏwbX`PU)D"c{z3<}^?bm잃a.]
{Q6uT,9
\ No newline at end of file
x E{v& &Y+bk'ya:TXl޶$W+ӏv9}gR@H0YPBEm?s"bt2cn:ﺭ;YzQ7
\ No newline at end of file
xA a޺ &r4yķ!mV3Iv!Ҝ2i\NSS4EF2+65e/Ws]!?p=S~Đ?+x6r6y}ǴeR1-WllҌXz/>V櫷:ñA8-+mTbllltM&]ll&]Ill&]y 6` 6`iuyXWi\tz>.zk t77wJϔ4w҈85
\ No newline at end of file
x
־. Dl, Mz6Ç gcJD;'.AIqމI,IrYFk%DOy|EDD(L_Y>*ߚ?aOkL_<[c>c˘uLI%#0#0#otѢ}4fv_)Eph5R881#0#0itZ#0#0#0itZ#0#0#0itZl0#09q"HܜHQ"L5}-Y׾k`>z鸳4&p!!`:5
\ No newline at end of file
xA a޺@n7+*L++柮bb*LCc kHrjJ5Yi~0_TT}e>5b_w͟?\Rai+7W\wLUNL
+
+jOkc\˩|%o<kL++v
+
+Š>} 8
+
+
+ 3g
+
+
+3g@
+
+
+:RXB9I=ko/Swؘٯ`gr_ٙYVSYzIefnmQoz >
\ No newline at end of file
xA0ЎuA2;Нk(gytp9$D\e^'t-aIFMSkIŤ:7|LkN8N7i}i,[WgӴ?31iN}}=OM:4)SL2eʔ)SL#$ JJM:}]L٧SQL2eʔ)SL2աPt(:)SL2eʔ)S:ECq2eʔ)SL2eʔECѡ8O2eʔ)SL2eTCѡPL2eʔ)SL2ݓsJCIKԂi93n_ +Ri4\g;% }an
\ No newline at end of file
x E=u pجQCOM'ˏ$ @3eF\FNXRyؾC{a8R Ńa2@qkH1(`cj~0ܨعnXGĀ
\ No newline at end of file
xA@Ь@o7`Qfe䕫PA><?jjo5WNizyW&]߅C?IrW^;8
s<ðS{9^gE}><]߳bZn^AQ}[9^]ynajM܇K̘1cƌ3f̘1{W5}{7lMޚxI<Kαyl3f̘1cƌ3f̘1ۻٻ={αyl3f̘1cƌ3f̘1ۻٻ={αyl3f̘1cƌ3f̘1ۻٻ={αyl3f̘1cƌ3f̘1ۻٻ={αyl3f̘1cƌ3f̘SʑӒ7HK޼g\u_r'4[-]qL8ƝY1q!/(%
\ No newline at end of file
x1 Eu7ЛZ|ND B0@R$l,->VKZ[<zqƎYJ&i嚂Zy:Y'YV&eR"sjr+.MƎ9zs,
\ No newline at end of file
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论