├── .bowerrc ├── .gitignore ├── 404.php ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── admin ├── admin-functions.php ├── admin-interface.php ├── admin-style.css ├── css │ └── colorpicker.css ├── images │ ├── 2cl.png │ ├── 2cr.png │ ├── 3cm.png │ ├── 3cr.png │ ├── Thumbs.db │ ├── accept.png │ ├── colorpicker │ │ ├── Thumbs.db │ │ ├── blank.gif │ │ ├── colorpicker_background.png │ │ ├── colorpicker_hex.png │ │ ├── colorpicker_hsb_b.png │ │ ├── colorpicker_hsb_h.png │ │ ├── colorpicker_hsb_s.png │ │ ├── colorpicker_indic.gif │ │ ├── colorpicker_overlay.png │ │ ├── colorpicker_rgb_b.png │ │ ├── colorpicker_rgb_g.png │ │ ├── colorpicker_rgb_r.png │ │ ├── colorpicker_select.gif │ │ ├── colorpicker_submit.png │ │ └── select.png │ ├── favicon.ico │ ├── icon_option.png │ ├── loading-bottom.gif │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ ├── warning.png │ └── wrench.png ├── js │ ├── ajaxupload.js │ ├── colorpicker.js │ └── jquery.maskedinput-1.2.2.js ├── theme-functions.php └── theme-options.php ├── assets ├── github-activity-master │ ├── .gitignore │ ├── Gruntfile.js │ ├── LICENSE.md │ ├── README.md │ ├── bower.json │ ├── package.json │ └── src │ │ ├── github-activity.css │ │ └── github-activity.js └── img │ └── default.jpg ├── author.php ├── bower.json ├── category.php ├── footer.php ├── functions.php ├── header.php ├── index.php ├── loop.php ├── page.php ├── screenshot.png ├── search.php ├── single.php ├── style.css └── tag.php /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "vendor" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
7 | 8 | 9 |18 | We could not find the page you were looking for. 19 | Meanwhile, you may return to home or try using the search form. 20 |
21 | 29 |541 | // tag and performs html encoding on the contents. In this case, 542 | // we need to pull the original text content from the text node's 543 | // nodeValue property to retrieve the unmangled content. 544 | // Note that IE6 only understands text/html 545 | if (doc.body.firstChild && doc.body.firstChild.nodeName.toUpperCase() == 'PRE'){ 546 | response = doc.body.firstChild.firstChild.nodeValue; 547 | } 548 | if (response) { 549 | response = window["eval"]("(" + response + ")"); 550 | } else { 551 | response = {}; 552 | } 553 | } 554 | } else { 555 | // response is a xml document 556 | var response = doc; 557 | } 558 | 559 | settings.onComplete.call(self, file, response); 560 | 561 | // Reload blank page, so that reloading main page 562 | // does not re-submit the post. Also, remember to 563 | // delete the frame 564 | toDeleteFlag = true; 565 | 566 | // Fix IE mixed content issue 567 | iframe.src = "javascript:'';"; 568 | }); 569 | 570 | } else { 571 | // clear input to allow user to select same file 572 | // Doesn't work in IE6 573 | // this._input.value = ''; 574 | d.body.removeChild(this._input); 575 | this._input = null; 576 | 577 | // create new input 578 | this._createInput(); 579 | } 580 | }, 581 | /** 582 | * Creates form, that will be submitted to iframe 583 | */ 584 | _createForm : function(iframe){ 585 | var settings = this._settings; 586 | 587 | // method, enctype must be specified here 588 | // because changing this attr on the fly is not allowed in IE 6/7 589 | var form = toElement(''); 590 | form.style.display = 'none'; 591 | form.action = settings.action; 592 | form.target = iframe.name; 593 | d.body.appendChild(form); 594 | 595 | // Create hidden input element for each data key 596 | for (var prop in settings.data){ 597 | var el = d.createElement("input"); 598 | el.type = 'hidden'; 599 | el.name = prop; 600 | el.value = settings.data[prop]; 601 | form.appendChild(el); 602 | } 603 | return form; 604 | } 605 | }; 606 | })(); -------------------------------------------------------------------------------- /admin/js/colorpicker.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * Color picker 4 | * Author: Stefan Petre www.eyecon.ro 5 | * 6 | * Dependencies: jQuery 7 | * 8 | */ 9 | (function ($) { 10 | var ColorPicker = function () { 11 | var 12 | ids = {}, 13 | inAction, 14 | charMin = 65, 15 | visible, 16 | tpl = '
86 | There is no article. 87 | Meanwhile, you may return to home or try using the 88 | search form. 89 |
90 | 91 | 102 |