[CORE] Move public resources to a /public directory
Advantages: * Increases security by preventing direct access to file/ * We are careful and have a defined('GNUSOCIAL') || die() to prevent direct access to GS files, but we may miss one or a vendor/extlib may not be as careful * Improves directory structure - It's more natural to physically separate what is public from what are GNU social resources
This commit is contained in:
Binary file not shown.
Before Width: | Height: | Size: 1.2 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.4 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.3 KiB |
@@ -1,5 +0,0 @@
|
||||
Feed icon rendered from http://commons.wikimedia.org/wiki/File:Feed-icon.svg
|
||||
|
||||
Originally distributed by the Mozilla Foundation under a MPL/GPL/LGPL tri-license:
|
||||
|
||||
http://www.mozilla.org/MPL/boilerplate-1.1/mpl-tri-license-html
|
@@ -1,90 +0,0 @@
|
||||
/*
|
||||
* StatusNet - a distributed open-source microblogging tool
|
||||
* Copyright (C) 2010, StatusNet, Inc.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @category OStatus UI interaction
|
||||
* @package StatusNet
|
||||
* @author Sarven Capadisli <csarven@status.net>
|
||||
* @copyright 2010 StatusNet, Inc.
|
||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||
* @link http://status.net/
|
||||
* @note Everything in here should eventually migrate over to /js/util.js's SN.
|
||||
*/
|
||||
|
||||
SN.U.DialogBox = {
|
||||
Subscribe: function (a) {
|
||||
var f = a.parent().find('.form_settings');
|
||||
if (f.length > 0) {
|
||||
f.show();
|
||||
}
|
||||
else {
|
||||
$.ajax({
|
||||
type: 'GET',
|
||||
dataType: 'xml',
|
||||
url: a[0].href + ((a[0].href.match(/[\\?]/) === null)?'?':'&') + 'ajax=1',
|
||||
beforeSend: function (formData) {
|
||||
a.addClass('processing');
|
||||
},
|
||||
error: function (xhr, textStatus, errorThrown) {
|
||||
alert(errorThrown || textStatus);
|
||||
},
|
||||
success: function (data, textStatus, xhr) {
|
||||
if (typeof($('form', data)[0]) != 'undefined') {
|
||||
a.after(document._importNode($('form', data)[0], true));
|
||||
|
||||
var form = a.parent().find('.form_settings');
|
||||
|
||||
form
|
||||
.addClass('dialogbox')
|
||||
.append('<button class="close">×</button>');
|
||||
|
||||
form
|
||||
.find('.submit')
|
||||
.addClass('submit_dialogbox')
|
||||
.removeClass('submit')
|
||||
.bind('click', function () {
|
||||
form.addClass('processing');
|
||||
});
|
||||
|
||||
form.find('button.close').click(function (){
|
||||
form.hide();
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
form.find('#profile').focus();
|
||||
}
|
||||
|
||||
a.removeClass('processing');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
SN.Init.Subscribe = function () {
|
||||
$(document).on('click',
|
||||
'.entity_subscribe .entity_remote_subscribe, .entity_tag .entity_remote_tag',
|
||||
function () { SN.U.DialogBox.Subscribe($(this)); return false; });
|
||||
};
|
||||
|
||||
$(document).ready(function () {
|
||||
SN.Init.Subscribe();
|
||||
|
||||
$('.form_remote_authorize').bind('submit', function () {
|
||||
$(this).addClass(SN.C.S.Processing); return true;
|
||||
});
|
||||
});
|
@@ -1,39 +0,0 @@
|
||||
#form_ostatus_connect.dialogbox .form_data label,
|
||||
#form_ostatus_sub.dialogbox .form_data label {
|
||||
display: block;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#form_ostatus_connect.dialogbox .form_data input,
|
||||
#form_ostatus_sub.dialogbox .form_data input {
|
||||
width: 90%;
|
||||
padding: 4px;
|
||||
margin: 0;
|
||||
background-color: #fff !important;
|
||||
border: 1px solid #888;
|
||||
}
|
||||
|
||||
#form_ostatus_connect.dialogbox .form_data .form_guide,
|
||||
#form_ostatus_sub.dialogbox .form_data .form_guide {
|
||||
margin-left: 0;
|
||||
background-color: #fff !important;
|
||||
}
|
||||
|
||||
#form_ostatus_connect.dialogbox #ostatus_nickname,
|
||||
#form_ostatus_sub.dialogbox #ostatus_nickname {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#form_ostatus_connect.dialogbox input.submit_dialogbox,
|
||||
#form_ostatus_sub.dialogbox input.submit_dialogbox {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.entity_remote_tag {
|
||||
background-position: 5px -257px;
|
||||
}
|
||||
|
||||
.section .entity_remote_tag {
|
||||
background-position: 5px -257px;
|
||||
}
|
Reference in New Issue
Block a user