code stringlengths 1 2.01M | repo_name stringlengths 3 62 | path stringlengths 1 267 | language stringclasses 231
values | license stringclasses 13
values | size int64 1 2.01M |
|---|---|---|---|---|---|
/*
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute ... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/lang/he.js | JavaScript | gpl3 | 8,869 |
/*
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute ... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/lang/sl.js | JavaScript | gpl3 | 8,735 |
/*
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute ... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/lang/cs.js | JavaScript | gpl3 | 8,857 |
/*
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute ... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/lang/es-mx.js | JavaScript | gpl3 | 9,038 |
/*
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute ... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/lang/pt-br.js | JavaScript | gpl3 | 8,717 |
/*
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute ... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/lang/nn.js | JavaScript | gpl3 | 8,789 |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckfinder.com/license
*/
CKFinder.customConfig = function (config) {
// Define changes to default configuration here. For example:
// config.skin = 'v1';
config.language = 'zh-cn... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/config.js | JavaScript | gpl3 | 330 |
<?php
class Watermark
{
function onAfterFileUpload($currentFolder, $uploadedFile, $sFilePath)
{
global $config;
$watermarkSettings = $config['Plugin_Watermark'];
$this->createWatermark($sFilePath, $watermarkSettings['source'], $watermarkSettings['marginRight'],
$w... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/watermark/plugin.php | PHP | gpl3 | 6,314 |
CKFinder.addPlugin( 'imageresize', {
connectorInitialized : function( api, xml ) {
var node = xml.selectSingleNode( 'Connector/PluginsInfo/imageresize/@smallThumb' );
if ( node )
CKFinder.config.imageresize_thumbSmall = node.value;
node = xml.selectSingleNode( 'Connector/PluginsInfo/imageresize/@mediu... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/imageresize/plugin.js | JavaScript | gpl3 | 19,335 |
<?php
/*
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute th... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/imageresize/plugin.php | PHP | gpl3 | 10,328 |
/* Demonstration of embedding CodeMirror in a bigger application. The
* interface defined here is a mess of prompts and confirms, and
* should probably not be used in a real project.
*/
function MirrorFrame(place, options) {
this.home = document.createElement("div");
if (place.appendChild)
place.ap... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/mirrorframe.js | JavaScript | gpl3 | 2,354 |
var HTMLMixedParser = Editor.Parser = (function() {
// tags that trigger seperate parsers
var triggers = {
"script": "JSParser",
"style": "CSSParser"
};
function checkDependencies() {
var parsers = ['XMLParser'];
for (var p in triggers) parsers.push(triggers[p]);
for (var i in... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/parsehtmlmixed.js | JavaScript | gpl3 | 2,823 |
/* Simple parser for CSS */
var CSSParser = Editor.Parser = (function() {
var tokenizeCSS = (function() {
function normal(source, setState) {
var ch = source.next();
if (ch == "@") {
source.nextWhileMatches(/\w/);
return "css-at";
}
else if (ch == "/" && source.... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/parsecss.js | JavaScript | gpl3 | 4,685 |
/* Functionality for finding, storing, and restoring selections
*
* This does not provide a generic API, just the minimal functionality
* required by the CodeMirror system.
*/
// Namespace object.
var select = {};
(function() {
select.ie_selection = document.selection && document.selection.createRang... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/select.js | JavaScript | gpl3 | 24,516 |
/* A few useful utility functions. */
// Capture a method on an object.
function method(obj, name) {
return function() {obj[name].apply(obj, arguments);};
}
// The value used to signal the end of a sequence in iterators.
var StopIteration = {toString: function() {return "StopIteration"}};
// Apply a fun... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/util.js | JavaScript | gpl3 | 3,724 |
var SparqlParser = Editor.Parser = (function() {
function wordRegexp(words) {
return new RegExp("^(?:" + words.join("|") + ")$", "i");
}
var ops = wordRegexp(["str", "lang", "langmatches", "datatype", "bound", "sameterm", "isiri", "isuri",
"isblank", "isliteral", "union", "a"]);
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/parsesparql.js | JavaScript | gpl3 | 5,312 |
/* This file defines an XML parser, with a few kludges to make it
* useable for HTML. autoSelfClosers defines a set of tag names that
* are expected to not have a closing tag, and doNotIndent specifies
* the tags inside of which no indentation should happen (see Config
* object). These can be disabled by passi... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/parsexml.js | JavaScript | gpl3 | 9,039 |
/* Tokenizer for JavaScript code */
var tokenizeJavaScript = (function() {
// Advance the stream until the given character (not preceded by a
// backslash) is encountered, or the end of the line is reached.
function nextUntilUnescaped(source, end) {
var escaped = false;
while (!source.endOfLine()... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/tokenizejavascript.js | JavaScript | gpl3 | 6,985 |
// A framework for simple tokenizers. Takes care of newlines and
// white-space, and of getting the text from the source stream into
// the token object. A state is a function of two arguments -- a
// string stream and a setState function. The second can be used to
// change the tokenizer's state, and can be ignor... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/tokenize.js | JavaScript | gpl3 | 2,060 |
/* CodeMirror main module (http://codemirror.net/)
*
* Implements the CodeMirror constructor and prototype, which take care
* of initializing the editor frame, and providing the outside interface.
*/
// The CodeMirrorConfig object is used to specify a default
// configuration. If you specify such an object... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/codemirror.js | JavaScript | gpl3 | 22,836 |
// Minimal framing needed to use CodeMirror-style parsers to highlight
// code. Load this along with tokenize.js, stringstream.js, and your
// parser. Then call highlightText, passing a string as the first
// argument, and as the second argument either a callback function
// that will be called with an array of SP... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/highlight.js | JavaScript | gpl3 | 2,162 |
/* The Editor object manages the content of the editable frame. It
* catches events, colours nodes, and indents lines. This file also
* holds some functions for transforming arbitrary DOM structures into
* plain sequences of <span> and <br> elements
*/
var internetExplorer = document.selection && window.Act... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/editor.js | JavaScript | gpl3 | 65,322 |
/* String streams are the things fed to parsers (which can feed them
* to a tokenizer if they want). They provide peek and next methods
* for looking at the current character (next 'consumes' this
* character, peek does not), and a get method for retrieving all the
* text that was consumed since the last time ... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/stringstream.js | JavaScript | gpl3 | 5,095 |
/**
* Storage and control for undo information within a CodeMirror
* editor. 'Why on earth is such a complicated mess required for
* that?', I hear you ask. The goal, in implementing this, was to make
* the complexity of storing and reverting undo information depend
* only on the size of the edited or restor... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/undo.js | JavaScript | gpl3 | 14,916 |
/* Parse function for JavaScript. Makes use of the tokenizer from
* tokenizejavascript.js. Note that your parsers do not have to be
* this complicated -- if you don't want to recognize local variables,
* in many languages it is enough to just look for braces, semicolons,
* parentheses, etc, and know when you a... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/parsejavascript.js | JavaScript | gpl3 | 14,294 |
var DummyParser = Editor.Parser = (function() {
function tokenizeDummy(source) {
while (!source.endOfLine()) source.next();
return "text";
}
function parseDummy(source) {
function indentTo(n) {return function() {return n;}}
source = tokenizer(source, tokenizeDummy);
var space = 0;
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/js/parsedummy.js | JavaScript | gpl3 | 880 |
/* Tokenizer for CSharp code */
var tokenizeCSharp = (function() {
// Advance the stream until the given character (not preceded by a
// backslash) is encountered, or the end of the line is reached.
function nextUntilUnescaped(source, end) {
var escaped = false;
var next;
while (!source.endO... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/contrib/csharp/js/tokenizecsharp.js | JavaScript | gpl3 | 8,028 |
/* Parse function for JavaScript. Makes use of the tokenizer from
* tokenizecsharp.js. Note that your parsers do not have to be
* this complicated -- if you don't want to recognize local variables,
* in many languages it is enough to just look for braces, semicolons,
* parentheses, etc, and know when you are i... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/contrib/csharp/js/parsecsharp.js | JavaScript | gpl3 | 13,271 |
html {
cursor: text;
}
.editbox {
margin: .4em;
padding: 0;
font-family: monospace;
font-size: 10pt;
color: black;
}
pre.code, .editbox {
color: #666666;
}
.editbox p {
margin: 0;
}
span.csharp-punctuation {
color: green;
}
span.csharp-operator {
color: purple;
}
sp... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/contrib/csharp/css/csharpcolors.css | CSS | gpl3 | 685 |
/*
Copyright (c) 2008-2009 Yahoo! Inc. All rights reserved.
The copyrights embodied in the content of this file are licensed by
Yahoo! Inc. under the BSD (revised) open source license
@author Dan Vlad Dascalescu <dandv@yahoo-inc.com>
Parse function for PHP. Makes use of the tokenizer from tokenizephp.js.
B... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/contrib/php/js/parsephp.js | JavaScript | gpl3 | 17,353 |
/*
Copyright (c) 2008-2009 Yahoo! Inc. All rights reserved.
The copyrights embodied in the content of this file are licensed by
Yahoo! Inc. under the BSD (revised) open source license
@author Dan Vlad Dascalescu <dandv@yahoo-inc.com>
Based on parsehtmlmixed.js by Marijn Haverbeke.
*/
var PHPHTMLMixedParse... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/contrib/php/js/parsephphtmlmixed.js | JavaScript | gpl3 | 4,100 |
/*
Copyright (c) 2008-2009 Yahoo! Inc. All rights reserved.
The copyrights embodied in the content of this file are licensed by
Yahoo! Inc. under the BSD (revised) open source license
@author Vlad Dan Dascalescu <dandv@yahoo-inc.com>
Tokenizer for PHP code
References:
+ http://php.net/manual/en/reser... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/contrib/php/js/tokenizephp.js | JavaScript | gpl3 | 79,265 |
/*
Copyright (c) 2008-2009 Yahoo! Inc. All rights reserved.
The copyrights embodied in the content of this file are licensed by
Yahoo! Inc. under the BSD (revised) open source license
@author Dan Vlad Dascalescu <dandv@yahoo-inc.com>
*/
html {
cursor: text;
}
.editbox {
margin: .4em;
padding: 0;
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/contrib/php/css/phpcolors.css | CSS | gpl3 | 2,439 |
html {
cursor: text;
}
.editbox {
margin: .4em;
padding: 0;
font-family: monospace;
font-size: 10pt;
color: black;
}
pre.code, .editbox {
color: #666666;
}
.editbox p {
margin: 0;
}
span.js-punctuation {
color: #666666;
}
span.js-operator {
color: #666666;
}
span.js... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/css/jscolors.css | CSS | gpl3 | 659 |
html {
cursor: text;
}
.editbox {
margin: .4em;
padding: 0;
font-family: monospace;
font-size: 10pt;
color: black;
}
.editbox p {
margin: 0;
}
span.xml-tagname {
color: #A0B;
}
span.xml-attribute {
color: #281;
}
span.xml-punctuation {
color: black;
}
span.xml-attna... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/css/xmlcolors.css | CSS | gpl3 | 597 |
html {
cursor: text;
}
.editbox {
margin: .4em;
padding: 0;
font-family: monospace;
font-size: 10pt;
color: black;
}
pre.code, .editbox {
color: #666;
}
.editbox p {
margin: 0;
}
span.css-at {
color: #708;
}
span.css-unit {
color: #281;
}
span.css-value {
color: ... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/css/csscolors.css | CSS | gpl3 | 584 |
html {
cursor: text;
}
.editbox {
margin: .4em;
padding: 0;
font-family: monospace;
font-size: 10pt;
color: black;
}
.editbox p {
margin: 0;
}
span.sp-keyword {
color: #708;
}
span.sp-prefixed {
color: #5d1;
}
span.sp-var {
color: #00c;
}
span.sp-comment {
color:... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/css/sparqlcolors.css | CSS | gpl3 | 448 |
function waitForStyles() {
for (var i = 0; i < document.styleSheets.length; i++)
if (/googleapis/.test(document.styleSheets[i].href))
return document.body.className += " droid";
setTimeout(waitForStyles, 100);
}
setTimeout(function() {
if (/AppleWebKit/.test(navigator.userAgent) && /iP[oa]d|iPho... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/css/font.js | JavaScript | gpl3 | 655 |
body {
font-family: Arial, sans-serif;
line-height: 1.5;
max-width: 64.3em;
margin: 3em auto;
padding: 0 1em;
}
body.droid {
font-family: Droid Sans, Arial, sans-serif;
}
h1 {
letter-spacing: -3px;
font-size: 3.23em;
font-weight: bold;
margin: 0;
}
h2 {
font-size: 1.23em;
f... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/codemirror/css/docs.css | CSS | gpl3 | 2,328 |
CKFinder.addPlugin( 'fileeditor', function( api ) {
var regexExt = /^(.*)\.([^\.]+)$/,
regexTextExt = /^(txt|css|html|htm|js|asp|cfm|cfc|ascx|php|inc|xml|xslt|xsl)$/i,
regexCodeMirrorExt = /^(css|html|htm|js|xml|xsl|php)$/i,
codemirror,
file,
fileLoaded = false,
doc;
var codemirrorPath = CKFi... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/plugin.js | JavaScript | gpl3 | 7,324 |
<?php
/*
* CKFinder
* ========
* http://ckfinder.com
* Copyright (C) 2007-2011, CKSource - Frederico Knabben. All rights reserved.
*
* The software, this file and its contents are subject to the CKFinder
* License. Please read the license.txt file before using, installing, copying,
* modifying or distribute th... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/fileeditor/plugin.php | PHP | gpl3 | 3,660 |
/**
* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*
* CKFinder 2.x - sample "dummy" plugin.
*
* To enable it, add the following line to config.js:
* config.extraPlugins = 'dummy';
*/
/**
* See http... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/dummy/plugin.js | JavaScript | gpl3 | 1,751 |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKFinder.setPluginLang( 'dummy', 'pl',
{
dummy :
{
title : 'Testowe okienko',
menuItem : 'Otwórz okienko dummy',
typeText : 'Podaj jakiś tekst... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/dummy/lang/pl.js | JavaScript | gpl3 | 341 |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKFinder.setPluginLang( 'dummy', 'en',
{
dummy :
{
title : 'Dummy dialog',
menuItem : 'Open dummy dialog',
typeText : 'Please type some text.'
}
});
| 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckfinder/plugins/dummy/lang/en.js | JavaScript | gpl3 | 321 |
<?php
include_once('common.inc.php');
func_register(array(
'tweet' => array(
'callback' => 'deal_tweet',
'security' => 'true',
),
));
function tweet_post()
{
$args = func_get_args();
$cate = $args[2];
$content = format_str($_POST['text'], false);
if(!$cate or !$c... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/tweet.inc.php | PHP | gpl3 | 3,645 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<meta name="keywords" content="免费发布微博招聘、求职信息,免费定制微职位、微简历" />
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/Copy of default.html | HTML | gpl3 | 13,240 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<title>管理中心 - 歪伯乐微招聘 - 微博招聘、求职、简历信息,一站聚合、管理、定制</title>
<lin... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/Copy of manager.html | HTML | gpl3 | 16,236 |
| 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/resume.html | HTML | gpl3 | 3 |
function AfterLogin() {
$.ajax({
type: 'POST',
url: 'user/info/',
success: function (msg) {
msg = $.trim(msg);
var username = msg.split(',')[0];
var type = msg.split(',')[1];
$("#name").html(username);
$("#my-microbloging"... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/script/help_feedback.js | JavaScript | gpl3 | 1,589 |
var MR = false;
var ML = false;
var position = 0;
var length = 0;
$(function () {
SetCompany();
});
var appyId = "";
var theItem;
function SentResume() {
$(theItem).hide();
$(theItem).next().show();
$("#popBox_apply1").hide();
$.ajax({
type: 'GET',
url: 'apply_sen... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/script/DMshare.js | JavaScript | gpl3 | 6,437 |
//Init - default.js
currentsearch = 0;
function guidGenerator() {
var S4 = function () {
return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
};
return (S4() + S4() + "-" + S4() + "-" + S4() + "-" + S4() + "-" + S4() + S4() + S4());
}
function ShowMiddlePic(url) {
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/script/default.js | JavaScript | gpl3 | 42,728 |
var currentsearch = 0;
var issearch = false;
var SearchResult = "all";
var count = 0;
var page = 0;
var prevLess = false;
var nextLess = false;
var nowFirst = "";
var isFreshed = false;
var isTurn = false;
var name = "";
var item;
var id;
var haveResume = false;
function CloseMTips() {
$("#manager... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/script/Copy of default.js | JavaScript | gpl3 | 65,409 |
var logined = true;
var rolekind = "jobs";
var auth = "";
var length = 0;
var position = 0;
var cate = 0;
$(function () {
$("a#logo").mouseover(function () {
$(this).html("回首页");
});
$("a#logo").mouseout(function () {
$(this).html("测试版");
});
Init();
CoverResize(... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/script/Copy of share.js | JavaScript | gpl3 | 7,691 |
var deleteitem;
var deleteid;
var deleteurl;
var page = 0;
var allpage = 0;
var type = "";
$(function () {
$("a#logo").mouseover(function () {
$(this).html("回首页");
});
$("a#logo").mouseout(function () {
$(this).html("测试版");
});
ShowNormal(0);
$("a.manager-control... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/script/admin.js | JavaScript | gpl3 | 12,607 |
var allpage;
var page;
$(function () {
$("#confirmBox_ok").position({
of: $("html"),
my: "center top",
at: "center top",
offset: "0 200",
collision: "none none"
});
$("#confirmBox_ok").css("position", "fixed");
$("#confirmBox_del").position({
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/script/manager.js | JavaScript | gpl3 | 32,185 |
/**
* Cookie plugin
*
* Copyright (c) 2006 Klaus Hartl (stilbuero.de)
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
*/
/**
* Create a cookie with the given name and value and other optional parameters.
*
* @examp... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/script/jquery.cookie.js | JavaScript | gpl3 | 4,246 |
/**
* jQuery.query - Query String Modification and Creation for jQuery
* Written by Blair Mitchelmore (blair DOT mitchelmore AT gmail DOT com)
* Licensed under the WTFPL (http://sam.zoy.org/wtfpl/).
* Date: 2009/8/13
*
* @author Blair Mitchelmore
* @version 2.1.7
*
**/
new function(settings) {
/... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/script/jquery.query-2.1.7.js | JavaScript | gpl3 | 7,844 |
var deleteitem;
var deleteid;
var deleteurl;
var page = 0;
var allpage = 0;
var type = "";
var editor;
$(function () {
$.ajax({
type: 'POST',
url: 'avatar/',
success: function (msg) {
$("#headpic").attr("src", msg);
}
});
$("div#profile-info").... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/script/Copy of manager.js | JavaScript | gpl3 | 40,812 |
//User Login - share.js
var logined = false;
var rolekind = "";
function showError(msg){
$("#errormsg").html(msg);
$("#error-info").dialog("open");
}
$(function () {
$("#error-info").dialog({
autoOpen: false,
draggable: false,
resizable: false,
modal: true,
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/script/share.js | JavaScript | gpl3 | 9,507 |
<?php
session_start();
include_once('common.inc.php');
include_once('theme.inc.php');
include_once('login.inc.php');
include_once('search.inc.php');
include_once('follow.inc.php');
include_once('like.inc.php');
include_once('hot.inc.php');
include_once('user.inc.php');
include_once('tweet.inc.php');
include_once('resum... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/index.php | PHP | gpl3 | 1,722 |
<?php
include_once('common.inc.php');
func_register(array(
'count' => array(
'callback' => 'count_show',
),
));
function count_show()
{
$counts = get_counts();
$r = $counts['tweets_thisweek'].','.$counts['tweets_today'];
echo $r;
}
| 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/count.inc.php | PHP | gpl3 | 262 |
<?php
include_once('common.inc.php');
func_register(array(
'follow' => array(
'callback' => 'deal_following',
'security' => 'true',
),
));
function get_followings($num)
{
include_once('login.inc.php');
$id = get_current_user_id();
connect_db();
$view = "SELECT * FROM followings... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/follow.inc.php | PHP | gpl3 | 3,908 |
<?php
/*
* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/*! \mainpage CKEditor - PHP server side intergation
* \section intro_sec CKEditor
* Visit <a href="http://ckeditor.com">CKEditor web site</a> to find ... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/ckeditor.php | PHP | gpl3 | 962 |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
body
{
/* Font */
font-family: Arial, Verdana, sans-serif;
font-size: 12px;
/* Text color */
color: #222;
/* Remove the background color to make it tran... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/contents.css | CSS | gpl3 | 940 |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
// Compressed version of core/ckeditor_base.js. See original for instructions.
/*jsl:ignore*/
if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',vers... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/ckeditor_source.js | JavaScript | gpl3 | 1,608 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
== BEGIN TEXT ONLY VERSION ==
Software License Agreement
==========================
CKEditor - The text editor for Internet - http://ckeditor.com
Copyright (c) 2003-2011, CKSource -... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/LICENSE.html | HTML | gpl3 | 71,136 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/INSTALL.html | HTML | gpl3 | 2,859 |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function (config) {
// Define changes to default configuration here. For example:
// config.language = 'fr';
// config.uiColor = ... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/config.js | JavaScript | gpl3 | 511 |
<%
'
' Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
' For licensing, see LICENSE.html or http://ckeditor.com/license
' Shared variable for all instances ("static")
dim CKEDITOR_initComplete
dim CKEDITOR_returnedEvents
''
' \brief CKEditor class that can be used to create... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/ckeditor.asp | Classic ASP | gpl3 | 30,817 |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('placeholder','en',{placeholder:{title:'Placeholder Properties',toolbar:'Create Placeholder',text:'Placeholder Text',edit:'Edit Placeholder',te... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/plugins/placeholder/lang/en.js | JavaScript | gpl3 | 374 |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('uicolor','en',{uicolor:{title:'UI Color Picker',preview:'Live preview',config:'Paste this string into your config.js file',predefined:'Predefi... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/plugins/uicolor/lang/en.js | JavaScript | gpl3 | 343 |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('uicolor','he',{uicolor:{title:'בחירת צבע ממשק משתמש',preview:'תצוגה מקדימה',config:'הדבק את הטקסט הבא לתוך הקובץ config.js',predefined:'קבוצות... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/plugins/uicolor/lang/he.js | JavaScript | gpl3 | 421 |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
| 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/plugins/dialog/dialogDefinition.js | JavaScript | gpl3 | 152 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<!--
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html>
<head>
<title></title>
<meta http-equiv="Content-Type... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/plugins/wsc/dialogs/tmpFrameset.html | HTML | gpl3 | 1,935 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!--
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/plugins/wsc/dialogs/ciframe.html | HTML | gpl3 | 1,120 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/CHANGES.html | HTML | gpl3 | 123,612 |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
// Compressed version of core/ckeditor_base.js. See original for instructions.
/*jsl:ignore*/
if(!window.CKEDITOR)window.CKEDITOR=(function(){var a={timestamp:'',vers... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/ckeditor_basic_source.js | JavaScript | gpl3 | 1,530 |
<?php
/*
* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* \brief CKEditor class that can be used to create editor
* instances in PHP pages on server side.
* @see http://ckeditor.com
*
* Sample usage:
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/ckeditor_php5.php | PHP | gpl3 | 16,038 |
<?php
/*
* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* \brief CKEditor class that can be used to create editor
* instances in PHP pages on server side.
* @see http://ckeditor.com
*
* Sample usage:
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/ckeditor/ckeditor_php4.php | PHP | gpl3 | 16,070 |
<?php
$db_host = '127.0.0.1';
$db_name = 'apis';
$db_user = 'apis';
$db_pass = 'G2WvPRsxGEr77wEd';
define("SINA_AKEY", '961495784');
define("SINA_SKEY", '47d9d806a1dc04cc758be6f7213465bc');
define("ENCRYPTION_KEY", 'HustGNGisVeryGelivable');
define("LONGURL_KEY", 'true');
$base_url = 'http://'.$_SERVER['HTTP_HOST'... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/config.inc.php | PHP | gpl3 | 457 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<title>管理中心 - 歪伯乐微招聘 - 微博招聘、求职、简历信息,一站聚合、管理、定制</title>
<lin... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/manager.html | HTML | gpl3 | 21,652 |
<?php
include_once('common.inc.php');
func_register(array(
'avatar' => array(
'callback' => 'deal_avatar',
'security' => 'true',
),
));
function resizeavatar($url, $size)
{
if($size == "big")
$url = str_replace("/50/","/180/", $url);
return $url;
}
function get_avatar($id... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/avatar.inc.php | PHP | gpl3 | 1,331 |
<?php
include_once('common.inc.php');
func_register(array(
'feedback' => array(
'callback' => 'deal_feedback',
),
));
function feedback_post($query)
{
include_once('login.inc.php');
if(user_is_authenticated())
{
$id1 = ', user_id';
$id2 = ', \''.get_current_u... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/feedback.inc.php | PHP | gpl3 | 3,693 |
<?php
date_default_timezone_set('Asia/Chongqing');
/*
* Code based on:
* Abraham Williams (abraham@abrah.am) http://abrah.am
*/
/* Load OAuth lib. You can find it at http://oauth.net */
/**
* @ignore
*/
class OAuthException extends Exception {
// pass
}
/**
* @ignore
*/
class OAuthConsumer... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/sinaoauth.inc.php | PHP | gpl3 | 53,769 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="keywords" content="免费发布微博招聘、求职信息,免费定制微职位、微简历" />
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/uindex.html | HTML | gpl3 | 6,298 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<title>网站帮助 - 歪伯乐微招聘 - 微博招聘、求职、简历信息,一站聚合、管理、定制</title>
<lin... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/help.html | HTML | gpl3 | 8,799 |
<?php
include_once('common.inc.php');
func_register(array(
'cate' => array(
'callback' => 'theme_cat',
),
));
$current_theme = false;
function theme()
{
global $current_theme;
$args = func_get_args();
$function = array_shift($args);
$function = 'theme_'.$function;
if ($current_... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/theme.inc.php | PHP | gpl3 | 12,802 |
<?php
include_once('common.inc.php');
func_register(array(
'search' => array(
'callback' => 'deal_search',
),
'history' => array(
'callback' => 'deal_search_history',
'security' => 'true',
),
));
function theme_search($key, $content)
{
/*if($title=='首页')
{
$GLOB... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/search.inc.php | PHP | gpl3 | 10,181 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<meta name="keywords" content="免费发布微博招聘、求职信息,免费定制微职位、微简历" />
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/default.html | HTML | gpl3 | 15,620 |
.feed a:hover
{
text-decoration:none;
}
.feed .addbox{ position:absolute; display:block; border:#D9E9EF solid 3px; background:#FFFFFF; width:192px; z-index:998; font-size:12px;}
.feed .bgfrm{filter: alpha(opacity=0);-moz-opacity:0;opacity: 0;}
.feed .addshow{ width:155px; height:auto;}
.feed .addh{ height:20... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/feed/CSS/feed.css | CSS | gpl3 | 2,069 |
$.fn.addfeed = function(options){
options = options || {};
//绑定每个按钮
return this.each(function() {
if (!$(this).attr("class").match(/(^|\s)feed($|\s)/)) $(this).addClass("feed");
$$addfeed.initBtn(this);
});
};
var $$addfeed = {
timeDelayout:420,
feeds:{
"rss":{id:0, name:"Rss订阅"},
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/feed/feed.js | JavaScript | gpl3 | 9,180 |
<?php
include_once('common.inc.php');
func_register(array(
'like' => array(
'callback' => 'deal_like',
'security' => 'true',
),
));
function like_count()
{
include_once('login.inc.php');
$row = get_likes(0, 0, true);
echo $row[0][0];
}
function get_likes($num, $page, $count = fals... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/like.inc.php | PHP | gpl3 | 5,928 |
<?php
/**
* Twitter Autolink Class
*
* Based on code by Matt Sanford, http://github.com/mzsanford
From http://github.com/mzsanford/twitter-text-php/blob/master/src/Twitter/Autolink.php
This file is
Copyright 2010 Mike Cochrane
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this fi... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/autolink.inc.php | PHP | gpl3 | 8,178 |
<?php
include_once('common.inc.php');
func_register(array(
'apply_sent' => array(
'callback' => 'deal_apply_sent',
'security' => 'true',
),
));
function get_sent_applies($num, $page, $count = false)
{
include_once('login.inc.php');
$id = get_current_user_id();
if($cou... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/apply_sent.inc.php | PHP | gpl3 | 6,325 |
<?php
include_once('common.inc.php');
func_register(array(
'apply_received' => array(
'callback' => 'deal_apply_received',
'security' => 'true',
),
));
function get_received_tweets($num, $page, $count = false)
{
include_once('login.inc.php');
$id = get_current_user_id();
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/apply_received.inc.php | PHP | gpl3 | 5,576 |
.fl
{
float: left;
}
.fr
{
float: right;
}
.udl
{
text-decoration: underline;
}
.popBox
{
height: 198px;
background-color: white;
font-family: 宋体, 微软雅黑;
font-size: 12px;
box-shadow: 0px 0px 10px #777777;
-moz-box-shadow: 0px 0px 10px #777777;
-webkit-box-shad... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/css/popupBox.css | CSS | gpl3 | 4,918 |
div#content
{
margin-top: 10px;
}
div#left
{
width: 300px;
}
div#blank
{
width: 300px;
height: 1px;
}
div#left div.left-title
{
height: 24px;
line-height: 24px;
margin-bottom: 3px;
margin-top: 20px;
}
div#left div.left-title-first
{
height: 24px;
line-heig... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/css/default-bak.css | CSS | gpl3 | 14,118 |
div#manager-title
{
height: 30px;
line-height: 30px;
margin-top: 20px;
}
div#manager-title span.manager-title
{
width: 57px;
background-image: url('../images/manager-pic.jpg');
background-repeat: no-repeat;
background-position: 5px center;
height: 30px;
color: #df7902;
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/css/admin.css | CSS | gpl3 | 10,651 |
body
{
font-size: 12px;
background-color: #f2f6fe;
background-image: url('../images/background.jpg');
background-repeat: repeat-x;
overflow-y: scroll;
font-family: Arial, Helvetica, sans-serif, 宋体 !important;
}
body, a, input, span, img
{
margin: 0;
padding: 0;
}
a
{
... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/css/share-bak.css | CSS | gpl3 | 12,632 |
div#content
{
margin-top: 10px;
overflow: hidden;
}
div#left
{
width: 300px;
overflow: hidden;
}
div#left div.left-title
{
height: 24px;
line-height: 24px;
margin-bottom: 3px;
margin-top: 20px;
}
div#left div.first
{
margin-top: 0px;
}
div#left span.left-title-t... | 0f523140-f3b3-4653-89b0-eb08c39940ad | trunk/src/html/css/default.css | CSS | gpl3 | 10,072 |