Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/friendica/friendica
Browse files Browse the repository at this point in the history
Conflicts:
	include/config.php
	update.php
  • Loading branch information
Alexander Kampmann committed Apr 5, 2012
2 parents cbf4544 + 9b6e910 commit 355c42c
Show file tree
Hide file tree
Showing 1,809 changed files with 48,636 additions and 6,998 deletions.
Empty file modified .gitignore 100755 → 100644
Empty file.
Empty file modified .htaccess 100755 → 100644
Empty file.
Empty file modified INSTALL.txt 100755 → 100644
Empty file.
Empty file modified LICENSE 100755 → 100644
Empty file.
90 changes: 82 additions & 8 deletions boot.php
Expand Up @@ -9,9 +9,9 @@
require_once('include/cache.php');

define ( 'FRIENDICA_PLATFORM', 'Friendica');
define ( 'FRIENDICA_VERSION', '2.3.1288' );
define ( 'FRIENDICA_VERSION', '2.3.1302' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1134 );
define ( 'DB_UPDATE_VERSION', 1135 );

define ( 'EOL', "<br />\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
Expand Down Expand Up @@ -90,13 +90,14 @@
define ( 'PAGE_COMMUNITY', 2 );
define ( 'PAGE_FREELOVE', 3 );
define ( 'PAGE_BLOG', 4 );
define ( 'PAGE_PRVGROUP', 5 );

/**
* Network and protocol family types
*/

define ( 'NETWORK_ZOT', 'zot!'); // Zot!
define ( 'NETWORK_DFRN', 'dfrn'); // Friendica, Mistpark, other DFRN implementations
define ( 'NETWORK_ZOT', 'zot!'); // Zot!
define ( 'NETWORK_OSTATUS', 'stat'); // status.net, identi.ca, GNU-social, other OStatus implementations
define ( 'NETWORK_FEED', 'feed'); // RSS/Atom feeds with no known "post/notify" protocol
define ( 'NETWORK_DIASPORA', 'dspr'); // Diaspora
Expand All @@ -108,6 +109,28 @@
define ( 'NETWORK_MYSPACE', 'mysp'); // MySpace
define ( 'NETWORK_GPLUS', 'goog'); // Google+

/*
* These numbers are used in stored permissions
* and existing allocations MUST NEVER BE CHANGED
* OR RE-ASSIGNED! You may only add to them.
*/

$netgroup_ids = array(
NETWORK_DFRN => (-1),
NETWORK_ZOT => (-2),
NETWORK_OSTATUS => (-3),
NETWORK_FEED => (-4),
NETWORK_DIASPORA => (-5),
NETWORK_MAIL => (-6),
NETWORK_MAIL2 => (-7),
NETWORK_FACEBOOK => (-8),
NETWORK_LINKEDIN => (-9),
NETWORK_XMPP => (-10),
NETWORK_MYSPACE => (-11),
NETWORK_GPLUS => (-12),
);


/**
* Maximum number of "people who like (or don't like) this" that we will list by name
*/
Expand Down Expand Up @@ -135,6 +158,9 @@
define ( 'NOTIFY_TAGSELF', 0x0080 );
define ( 'NOTIFY_TAGSHARE', 0x0100 );

define ( 'NOTIFY_SYSTEM', 0x8000 );


/**
* various namespaces we may need to parse
*/
Expand Down Expand Up @@ -268,6 +294,8 @@ class App {

public $nav_sel;

public $category;

private $scheme;
private $hostname;
private $baseurl;
Expand Down Expand Up @@ -352,6 +380,9 @@ function __construct() {
$this->argc = count($this->argv);
if((array_key_exists('0',$this->argv)) && strlen($this->argv[0])) {
$this->module = str_replace(".", "_", $this->argv[0]);
if(array_key_exists('2',$this->argv)) {
$this->category = $this->argv[2];
}
}
else {
$this->argc = 1;
Expand Down Expand Up @@ -560,6 +591,10 @@ function absurl($path) {
return $path;
}

function is_ajax() {
return (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest');
}


// Primarily involved with database upgrade, but also sets the
// base url for use in cmdline programs which don't have
Expand Down Expand Up @@ -955,6 +990,12 @@ function profile_sidebar($profile, $block = 0) {
if((remote_user()) && ($_SESSION['visitor_visiting'] == $profile['uid']))
$connect = False;

if(get_my_url() && $profile['unkmail'])
$wallmessage = t('Message');
else
$wallmessage = false;



// show edit profile to yourself
if ($profile['uid'] == local_user()) {
Expand Down Expand Up @@ -1037,6 +1078,7 @@ function profile_sidebar($profile, $block = 0) {
$o .= replace_macros($tpl, array(
'$profile' => $profile,
'$connect' => $connect,
'$wallmessage' => $wallmessage,
'$location' => template_escape($location),
'$gender' => $gender,
'$pdesc' => $pdesc,
Expand Down Expand Up @@ -1232,17 +1274,20 @@ function current_theme(){
$system_theme = ((isset($a->config['system']['theme'])) ? $a->config['system']['theme'] : '');
$theme_name = ((isset($_SESSION) && x($_SESSION,'theme')) ? $_SESSION['theme'] : $system_theme);

if($theme_name && file_exists('view/theme/' . $theme_name . '/style.css'))
if($theme_name &&
(file_exists('view/theme/' . $theme_name . '/style.css') ||
file_exists('view/theme/' . $theme_name . '/style.php')))
return($theme_name);

foreach($app_base_themes as $t) {
if(file_exists('view/theme/' . $t . '/style.css'))
if(file_exists('view/theme/' . $t . '/style.css')||
file_exists('view/theme/' . $t . '/style.php'))
return($t);
}

$fallback = glob('view/theme/*/style.css');
$fallback = glob('view/theme/*/style.[css|php]');
if(count($fallback))
return (str_replace('view/theme/','', str_replace("/style.css","",$fallback[0])));
return (str_replace('view/theme/','', substr($fallback[0],0,-10)));

}}

Expand All @@ -1254,6 +1299,8 @@ function current_theme(){
function current_theme_url() {
global $a;
$t = current_theme();
if (file_exists('view/theme/' . $t . '/style.php'))
return($a->get_baseurl() . '/view/theme/' . $t . '/style.pcss');
return($a->get_baseurl() . '/view/theme/' . $t . '/style.css');
}}

Expand All @@ -1279,8 +1326,12 @@ function feed_birthday($uid,$tz) {
*
*/


$birthday = '';

if(! strlen($tz))
$tz = 'UTC';

$p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
intval($uid)
);
Expand Down Expand Up @@ -1378,6 +1429,29 @@ function profile_tabs($a, $is_owner=False, $nickname=Null){
);
}


$arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
call_hooks('profile_tabs', $arr);

$tpl = get_markup_template('common_tabs.tpl');
return replace_macros($tpl,array('$tabs'=>$tabs));

return replace_macros($tpl,array('$tabs' => $arr['tabs']));
}}

function get_my_url() {
if(x($_SESSION,'my_url'))
return $_SESSION['my_url'];
return false;
}

function zrl($s) {
if(! strlen($s))
return $s;
if(! strpos($s,'/profile/'))
return $s;
$achar = strpos($s,'?') ? '&' : '?';
$mine = get_my_url();
if($mine and ! link_compare($mine,$s))
return $s . $achar . 'zrl=' . urlencode($mine);
return $s;
}
10 changes: 8 additions & 2 deletions database.sql
Expand Up @@ -290,9 +290,10 @@ CREATE TABLE IF NOT EXISTS `mail` (
`convid` int(10) unsigned NOT NULL,
`title` char(255) NOT NULL,
`body` mediumtext NOT NULL,
`seen` tinyint(1) NOT NULL,
`seen` tinyint(1) NOT NULL DEFAULT '0',
`reply` tinyint(1) NOT NULL DEFAULT '0',
`replied` tinyint(1) NOT NULL,
`replied` tinyint(1) NOT NULL DEFAULT '0',
`unknown` tinyint(1) NOT NULL DEFAULT '0',
`uri` char(255) NOT NULL,
`parent-uri` char(255) NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
Expand All @@ -301,6 +302,7 @@ CREATE TABLE IF NOT EXISTS `mail` (
KEY `guid` (`guid`),
KEY `convid` (`convid`),
KEY `reply` (`reply`),
KEY `unknown` (`unknown`),
KEY `uri` (`uri`),
KEY `parent-uri` (`parent-uri`),
KEY `created` (`created`)
Expand Down Expand Up @@ -454,6 +456,8 @@ CREATE TABLE IF NOT EXISTS `user` (
`blockwall` tinyint(1) unsigned NOT NULL DEFAULT '0',
`hidewall` tinyint(1) unsigned NOT NULL DEFAULT '0',
`blocktags` tinyint(1) unsigned NOT NULL DEFAULT '0',
`unkmail` tinyint(1) unsigned NOT NULL DEFAULT '0',
`cntunkmail` int(11) unsigned NOT NULL DEFAULT '10',
`notify-flags` int(11) unsigned NOT NULL DEFAULT '65535',
`page-flags` int(11) unsigned NOT NULL DEFAULT '0',
`prvnets` tinyint(1) NOT NULL DEFAULT '0',
Expand All @@ -473,6 +477,8 @@ CREATE TABLE IF NOT EXISTS `user` (
KEY `account_expired` (`account_expired`),
KEY `hidewall` (`hidewall`),
KEY `blockwall` (`blockwall`),
KEY `unkmail` (`unkmail`),
KEY `cntunkmail` (`cntunkmail`),
KEY `blocked` (`blocked`),
KEY `verified` (`verified`),
KEY `login_date` (`login_date`)
Expand Down
Empty file modified doc/Account-Basics.md 100755 → 100644
Empty file.
Empty file modified doc/Bugs-and-Issues.md 100755 → 100644
Empty file.
Empty file modified doc/Connectors.md 100755 → 100644
Empty file.
Empty file modified doc/Developers.md 100755 → 100644
Empty file.
1 change: 1 addition & 0 deletions doc/Home.md 100755 → 100644
Expand Up @@ -5,6 +5,7 @@ Friendica Documentation and Resources
**Contents**

* [Account Basics](help/Account-Basics)
* [New User Quick Start](help/guide)
* [Profiles](help/Profiles)
* [Connectors](help/Connectors)
* [Making Friends](help/Making-Friends)
Expand Down
Empty file modified doc/Install.md 100755 → 100644
Empty file.
Empty file modified doc/Installing-Connectors.md 100755 → 100644
Empty file.
Empty file modified doc/Making-Friends.md 100755 → 100644
Empty file.
Empty file modified doc/Message-Flow.md 100755 → 100644
Empty file.
Empty file modified doc/Pages.md 100755 → 100644
Empty file.
Empty file modified doc/Plugins.md 100755 → 100644
Empty file.
Empty file modified doc/Profiles.md 100755 → 100644
Empty file.
Empty file modified doc/Remove-Account.md 100755 → 100644
Empty file.
Empty file modified doc/Settings.md 100755 → 100644
Empty file.
Empty file modified doc/Tags-and-Mentions.md 100755 → 100644
Empty file.
24 changes: 24 additions & 0 deletions doc/andfinally.md
@@ -0,0 +1,24 @@
And that brings the Quick Start to an end.

Here are some more things to help get you started:

**Groups**


- <a href = "https://kakste.com/profile/newhere">New Here</a> - a group for people new to Friendica

- <a href = "http://helpers.pyxis.uberspace.de/profile/helpers">Friendica Support</a> - problems? This is the place to ask.

- <a href = "https://kakste.com/profile/public_stream">Public Stream</a> - a place to talk about anything to anyone.

- <a href = "https://letstalk.pyxis.uberspace.de/profile/letstalk">Let's Talk</a> a group for finding people and groups who share similar interests.

- <a href = "http://newzot.hydra.uberspace.de/profile/newzot">Local Friendica</a> a page for local Friendica groups</a>


**Documentation**

- <a href = "/help/Connectors">Connecting to more networks</a>
- <a href = "/help">Help Index</a>


11 changes: 11 additions & 0 deletions doc/groupsandpages.md
@@ -0,0 +1,11 @@
This is the global directory. If you get lost, you can <a href = "/help/groupsandpages">click this link</a> to bring yourself back here.

On this page, you'll find a collection of groups, forums and celebrity pages. Groups are not real people. Connecting to them is similar to "liking" something on Facebook, or signing up for a new forum. You don't have to feel awkward about introducing yourself to a new person, because they're not people!

When you connect to a group, all messages to that group will start appearing in your network tab. You can comment on these posts, or post to the group yourself without ever having to add any of the groups members. This is a great way to make friends dynamically - you'll find people you like and add each other naturally instead of adding random strangers. Simply find a group you're interested in, and connect to it the same way you did with people in the last section. There are a lot of groups, and you're likely to get lost. Remember the link at the top of this page will bring you back here.

Once you've added some groups, <a href = "/help/andfinally">move on to the next section</a>.

<iframe src="http://dir.friendica.com/directory/forum" width="950" height = "600"></iframe>


13 changes: 13 additions & 0 deletions doc/guide.md
@@ -0,0 +1,13 @@
First things first, let's make sure you're logged in to your account. If you're not already logged in, do so in the frame below.

Once you've logged in (or if you are already logged in), you'll now be looking at your profile page.

This is a bit like your Facebook wall. It's where all your status messgages are kept, and where your friends come to post on your wall. To write your status, simply click in the box that says "share". When you do this, the box will expand. You can see some formatting options at the top such as Bold, Italics and Underline, as well as ways to add links and pictures. At the bottom you'll find some more links. You can use these to upload pictures and files from your computer, share websites with a bit of preview text, or embed video and audio files from elsewhere on the web. You can also set your post location here.

Once you've finished writing your post, click on the padlock icon to select who can see it. If you do not use the padlock icon, your post will be public. This means it will appear to anybody who views your profile, and in the community tab if your site has it enabled, as well as in the network tab of any of your contacts.

Play around with this a bit, then when you're ready to move on, we'll take a look at the <a href = "/help/network">Network Tab</a>

<iframe src="/login" width="950" height = "600"></iframe>


11 changes: 11 additions & 0 deletions doc/makingnewfriends.md
@@ -0,0 +1,11 @@
This is your Suggested Friends page. If you get lost, you can <a href = "/help/makenewfriends">click this link</a> to bring yourself back here.

This is a bit like the Friend Suggestions page of Facebook. Everybody on this list has agreed that they may be suggested as a friend. This means they're unlikely to refuse an introduction you send, and they want to meet new people too!

See somebody you like the look of? Click the connect button beneath their photograph. This will bring you to the introductions page. Fill in the form as instructed, and add a small note (optional). Now, wait a bit and they'll accept your request - note that these are real people, and it might take a while. Now you've added one, you're probably lost. Click the link at the top of this page to go back to the suggested friends list and add some more.

Feel uncomfortable adding people you don't know? Don't worry - that's where <a href = "/help/groupsandpages">Groups and Pages</a> come in!

<iframe src="/suggest" width="950" height = "600"></iframe>


9 changes: 9 additions & 0 deletions doc/network.md
@@ -0,0 +1,9 @@
This is your Network Tab. If you get lost, you can <a href = "/help/network">click this link</a> to bring yourself back here.

This is a bit like the Newsfeed at Facebook or the Stream at Diaspora. It's where all the posts from your contacts, groups, and feeds will appear. If you're new, you won't see anything in this page, unless you posted your status in the last step. If you've already added a few friends, you'll be able to see their posts. Here, you can comment, like, or dislike posts, or click on somebody's name to visit their profile page where you can write on their wall.

Now we need to fill it up, the first step, is to <a href = "/help/peopleyouknow"> add people you already know from Facebook</a>.

<iframe src="/network" width="950" height = "600"></iframe>


13 changes: 13 additions & 0 deletions doc/peopleyouknow.md
@@ -0,0 +1,13 @@
This is your connector settings page. If you get lost, you can <a href = "/help/network">click this link</a> to bring yourself back here.

This is the bit that makes Friendica unique. You can connect to <i>anybody on the internet</i> from your Friendica account using this page! The available connectors varies depending on which plugins you have installed, but for now, we'll walk you through Facebook. Note that not all servers have the Facebook connector installed. If you can't find it in the list below, don't worry, we'll look at ways of connecting to more people in the following pages.

The biggest of all social networks is Facebook. Fortunately, this connector is really easy. Scroll down the page, and click Facebook Connector Settings. Enter your Facebook user name and password and let the application (the connector) do everything the options suggest. You can <a href = "https://github.com/friendica/friendica/wiki/How-to:-Friendica%E2%80%99s-Facebook-connector" target="new">fine tune this</a> or experiment with the other connectors too. If you need help, you can always ask at <a href = "http://helpers.pyxis.uberspace.de/profile/helpers" target="new">Friendica Support</a> or <a href = "/help/Connectors" target="new">see the instructions here</a>.

When you're ready, we can move on to <a href = "/help/makingnewfriends">making new friends</a>.



<iframe src="/settings/connectors" width="950" height = "600"></iframe>


Empty file modified htconfig.php 100755 → 100644
Empty file.
Empty file modified images/article.gif 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/audio.gif 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/b_block.gif 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/b_drop.gif 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/b_drop.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/b_drophide.gif 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/b_dropshow.gif 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/b_edit.gif 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/b_edit.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/blank.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/calendar.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/camera-icon.gif 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/connect-bg.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/content-types.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/default-group-mm.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/default-profile-mm.jpg 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/default-profile-sm.jpg 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/default-profile.jpg 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/diaspora.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/dislike.gif 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/document.gif 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/ff-128.jpg 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/ff-16.jpg 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/ff-256.jpg 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/ff-32.jpg 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified images/ff-64.jpg 100755 → 100644
Empty file modified images/ff.xcf 100755 → 100644
Empty file.
Empty file modified images/friendica-128.jpg 100755 → 100644
Empty file modified images/friendica-128.png 100755 → 100644
Empty file modified images/friendica-16.jpg 100755 → 100644
Empty file modified images/friendica-16.png 100755 → 100644
Empty file modified images/friendica-1600.png 100755 → 100644
Empty file modified images/friendica-256.jpg 100755 → 100644
Empty file modified images/friendica-256.png 100755 → 100644
Empty file modified images/friendica-32.jpg 100755 → 100644
Empty file modified images/friendica-32.png 100755 → 100644
Empty file modified images/friendica-48.png 100755 → 100644
Empty file modified images/friendica-64.jpg 100755 → 100644
Empty file modified images/friendica-64.png 100755 → 100644
Empty file modified images/friendica-96.png 100755 → 100644
Empty file modified images/friendica.svg 100755 → 100644
Empty file modified images/friendika-128.jpg 100755 → 100644
Empty file modified images/friendika-128.png 100755 → 100644
Empty file modified images/friendika-16.jpg 100755 → 100644
Empty file modified images/friendika-16.png 100755 → 100644
Empty file modified images/friendika-1600.png 100755 → 100644
Empty file modified images/friendika-256.jpg 100755 → 100644
Empty file modified images/friendika-256.png 100755 → 100644
Empty file modified images/friendika-32.jpg 100755 → 100644
Empty file modified images/friendika-32.png 100755 → 100644
Empty file modified images/friendika-48.png 100755 → 100644
Empty file modified images/friendika-64.jpg 100755 → 100644
Empty file modified images/friendika-64.png 100755 → 100644
Empty file modified images/friendika-96.png 100755 → 100644
Empty file modified images/friendika.svg 100755 → 100644
Empty file modified images/globe.gif 100755 → 100644
Empty file modified images/hide_off.png 100755 → 100644
Empty file modified images/hide_on.png 100755 → 100644
Empty file modified images/icons.png 100755 → 100644
Empty file modified images/icons/10/add.png 100755 → 100644
Empty file modified images/icons/10/delete.png 100755 → 100644
Empty file modified images/icons/10/edit.png 100755 → 100644
Empty file modified images/icons/10/feed.png 100755 → 100644
Empty file modified images/icons/10/gear.png 100755 → 100644
Empty file modified images/icons/10/group.png 100755 → 100644
Empty file modified images/icons/10/info.png 100755 → 100644
Empty file modified images/icons/10/link.png 100755 → 100644
Empty file modified images/icons/10/lock.png 100755 → 100644
Empty file modified images/icons/10/menu.png 100755 → 100644
Empty file modified images/icons/10/notice.png 100755 → 100644
Empty file modified images/icons/10/notify_off.png 100755 → 100644
Empty file modified images/icons/10/notify_on.png 100755 → 100644
Empty file modified images/icons/10/play.png 100755 → 100644
Empty file modified images/icons/10/plugin.png 100755 → 100644
Empty file modified images/icons/10/star.png 100755 → 100644
Empty file modified images/icons/10/unlock.png 100755 → 100644
Empty file modified images/icons/10/user.png 100755 → 100644
Empty file modified images/icons/16/add.png 100755 → 100644
Empty file modified images/icons/16/delete.png 100755 → 100644
Empty file modified images/icons/16/edit.png 100755 → 100644
Empty file modified images/icons/16/feed.png 100755 → 100644
Empty file modified images/icons/16/gear.png 100755 → 100644
Empty file modified images/icons/16/group.png 100755 → 100644
Empty file modified images/icons/16/info.png 100755 → 100644
Empty file modified images/icons/16/link.png 100755 → 100644
Empty file modified images/icons/16/lock.png 100755 → 100644
Empty file modified images/icons/16/menu.png 100755 → 100644
Empty file modified images/icons/16/notice.png 100755 → 100644
Empty file modified images/icons/16/notify_off.png 100755 → 100644
Empty file modified images/icons/16/notify_on.png 100755 → 100644
Empty file modified images/icons/16/play.png 100755 → 100644
Empty file modified images/icons/16/plugin.png 100755 → 100644
Empty file modified images/icons/16/star.png 100755 → 100644
Empty file modified images/icons/16/unlock.png 100755 → 100644
Empty file modified images/icons/16/user.png 100755 → 100644
Empty file modified images/icons/22/add.png 100755 → 100644
Empty file modified images/icons/22/delete.png 100755 → 100644
Empty file modified images/icons/22/edit.png 100755 → 100644
Empty file modified images/icons/22/feed.png 100755 → 100644
Empty file modified images/icons/22/gear.png 100755 → 100644
Empty file modified images/icons/22/group.png 100755 → 100644
Empty file modified images/icons/22/info.png 100755 → 100644
Empty file modified images/icons/22/link.png 100755 → 100644
Empty file modified images/icons/22/lock.png 100755 → 100644
Empty file modified images/icons/22/menu.png 100755 → 100644
Empty file modified images/icons/22/notice.png 100755 → 100644
Empty file modified images/icons/22/notify_off.png 100755 → 100644
Empty file modified images/icons/22/notify_on.png 100755 → 100644
Empty file modified images/icons/22/play.png 100755 → 100644
Empty file modified images/icons/22/plugin.png 100755 → 100644
Empty file modified images/icons/22/star.png 100755 → 100644
Empty file modified images/icons/22/unlock.png 100755 → 100644
Empty file modified images/icons/22/user.png 100755 → 100644
Empty file modified images/icons/48/add.png 100755 → 100644
Empty file modified images/icons/48/delete.png 100755 → 100644
Empty file modified images/icons/48/edit.png 100755 → 100644
Empty file modified images/icons/48/feed.png 100755 → 100644
Empty file modified images/icons/48/gear.png 100755 → 100644
Empty file modified images/icons/48/group.png 100755 → 100644
Empty file modified images/icons/48/info.png 100755 → 100644
Empty file modified images/icons/48/link.png 100755 → 100644
Empty file modified images/icons/48/lock.png 100755 → 100644
Empty file modified images/icons/48/menu.png 100755 → 100644
Empty file modified images/icons/48/notice.png 100755 → 100644
Empty file modified images/icons/48/notify_off.png 100755 → 100644
Empty file modified images/icons/48/notify_on.png 100755 → 100644
Empty file modified images/icons/48/play.png 100755 → 100644
Empty file modified images/icons/48/plugin.png 100755 → 100644
Empty file modified images/icons/48/star.png 100755 → 100644
Empty file modified images/icons/48/unlock.png 100755 → 100644
Empty file modified images/icons/48/user.png 100755 → 100644
Empty file modified images/icons/Makefile 100755 → 100644
Empty file.
Empty file modified images/icons/add.png 100755 → 100644
Empty file modified images/icons/delete.png 100755 → 100644
Empty file modified images/icons/edit.png 100755 → 100644
Empty file modified images/icons/feed.png 100755 → 100644
Empty file modified images/icons/gear.png 100755 → 100644
Empty file modified images/icons/group.png 100755 → 100644
Empty file modified images/icons/info.png 100755 → 100644
Empty file modified images/icons/link.png 100755 → 100644
Empty file modified images/icons/lock.png 100755 → 100644
Empty file modified images/icons/menu.png 100755 → 100644
Empty file modified images/icons/notice.png 100755 → 100644
Empty file modified images/icons/notify_off.png 100755 → 100644
Empty file modified images/icons/notify_on.png 100755 → 100644
Empty file modified images/icons/play.png 100755 → 100644
Empty file modified images/icons/plugin.png 100755 → 100644
Empty file modified images/icons/star.png 100755 → 100644
Empty file modified images/icons/unlock.png 100755 → 100644
Empty file modified images/icons/user.png 100755 → 100644
Empty file modified images/larrow.gif 100755 → 100644
Empty file modified images/larrw.gif 100755 → 100644
Empty file modified images/like.gif 100755 → 100644
Empty file modified images/link-icon.gif 100755 → 100644
Empty file modified images/lock_icon.gif 100755 → 100644
Empty file modified images/logo.png 100755 → 100644
Empty file modified images/lrarrow.gif 100755 → 100644
Empty file modified images/mapicon.gif 100755 → 100644
Empty file modified images/no.gif 100755 → 100644
Empty file modified images/noglobe.gif 100755 → 100644
Empty file modified images/nosign.jpg 100755 → 100644
Empty file modified images/onoff.jpg 100755 → 100644
Empty file modified images/pause.gif 100755 → 100644
Empty file modified images/pen.png 100755 → 100644
Empty file modified images/pencil.gif 100755 → 100644
Empty file modified images/penhover.png 100755 → 100644
Empty file modified images/people.gif 100755 → 100644
Empty file modified images/play.gif 100755 → 100644
Empty file modified images/plugin.png 100755 → 100644
Empty file modified images/rarrow.gif 100755 → 100644
Empty file modified images/rarrw.gif 100755 → 100644
Empty file modified images/recycle.gif 100755 → 100644
Empty file modified images/remote-link.gif 100755 → 100644
Empty file modified images/rotator.gif 100755 → 100644
Empty file modified images/search_18.png 100755 → 100644
Empty file modified images/selected.png 100755 → 100644
Empty file modified images/share.gif 100755 → 100644
Empty file modified images/show_all_off.png 100755 → 100644
Empty file modified images/show_all_on.png 100755 → 100644
Empty file modified images/show_off.png 100755 → 100644
Empty file modified images/show_on.png 100755 → 100644
Empty file modified images/smiley-Oo.gif 100755 → 100644
Empty file modified images/smiley-brokenheart.gif 100755 → 100644
Empty file modified images/smiley-cool.gif 100755 → 100644
Empty file modified images/smiley-cry.gif 100755 → 100644
Empty file modified images/smiley-embarassed.gif 100755 → 100644
Empty file modified images/smiley-foot-in-mouth.gif 100755 → 100644
Empty file modified images/smiley-frown.gif 100755 → 100644
Empty file modified images/smiley-heart.gif 100755 → 100644
Empty file modified images/smiley-innocent.gif 100755 → 100644
Empty file modified images/smiley-kiss.gif 100755 → 100644
Empty file modified images/smiley-laughing.gif 100755 → 100644
Empty file modified images/smiley-money-mouth.gif 100755 → 100644
Empty file modified images/smiley-sealed.gif 100755 → 100644
Empty file modified images/smiley-smile.gif 100755 → 100644
Empty file modified images/smiley-surprised.gif 100755 → 100644
Empty file modified images/smiley-thumbsup.gif 100755 → 100644
Empty file modified images/smiley-tongue-out.gif 100755 → 100644
Empty file modified images/smiley-undecided.gif 100755 → 100644
Empty file modified images/smiley-wink.gif 100755 → 100644
Empty file modified images/smiley-yell.gif 100755 → 100644
Empty file modified images/spencil.gif 100755 → 100644
Empty file modified images/star.png 100755 → 100644
Empty file modified images/tag.png 100755 → 100644
Empty file modified images/tag_b.png 100755 → 100644
Empty file modified images/tools.png 100755 → 100644
Empty file modified images/twopeople.png 100755 → 100644
Empty file modified images/unlock_icon.gif 100755 → 100644
Empty file modified images/video.gif 100755 → 100644
Empty file modified images/youtube_icon.gif 100755 → 100644
Empty file modified include/Contact.php 100755 → 100644
Empty file.
Empty file modified include/EmailNotification.php 100755 → 100644
Empty file.
Empty file modified include/Photo.php 100755 → 100644
Empty file.
Empty file modified include/Scrape.php 100755 → 100644
Empty file.
Empty file modified include/acl_selectors.php 100755 → 100644
Empty file.

0 comments on commit 355c42c

Please sign in to comment.