From ddf1caf0fd9ea4fc97147ba7b45587bcf7a6fab4 Mon Sep 17 00:00:00 2001
From: Fabrixxm
Date: Wed, 27 Mar 2013 10:37:59 -0400
Subject: [PATCH 1/5] template engine rework - use smarty3 as default engine -
new pluggable template engine system
---
boot.php | 74 ++++++++++++++++++++++++++++++++--
include/friendica_smarty.php | 32 +++++++++++++--
include/template_processor.php | 21 +++++++---
include/text.php | 32 +++++----------
object/TemplateEngine.php | 11 +++++
5 files changed, 136 insertions(+), 34 deletions(-)
create mode 100644 object/TemplateEngine.php
diff --git a/boot.php b/boot.php
index 0475f6ab3..477b8331c 100644
--- a/boot.php
+++ b/boot.php
@@ -385,6 +385,11 @@ if(! class_exists('App')) {
'stylesheet' => '',
'template_engine' => 'internal',
);
+
+ // array of registered template engines ('name'=>'class name')
+ public $template_engines = array();
+ // array of instanced template engines ('name'=>'instance')
+ public $template_engine_instance = array();
private $ldelim = array(
'internal' => '',
@@ -539,6 +544,17 @@ if(! class_exists('App')) {
$mobile_detect = new Mobile_Detect();
$this->is_mobile = $mobile_detect->isMobile();
$this->is_tablet = $mobile_detect->isTablet();
+
+ /**
+ * register template engines
+ */
+ $dc = get_declared_classes();
+ foreach ($dc as $k) {
+ if (in_array("ITemplateEngine", class_implements($k))){
+ $this->register_template_engine($k);
+ }
+ }
+
}
function get_basepath() {
@@ -712,13 +728,63 @@ if(! class_exists('App')) {
return $this->cached_profile_image[$avatar_image];
}
+
+ /**
+ * register template engine class
+ * if $name is "", is used class static property $class::$name
+ * @param string $class
+ * @param string $name
+ */
+ function register_template_engine($class, $name = '') {
+ if ($name===""){
+ $v = get_class_vars( $class );
+ if(x($v,"name")) $name = $v['name'];
+ }
+ if ($name===""){
+ echo "template engine $class cannot be registered without a name.\n";
+ killme();
+ }
+ $this->template_engines[$name] = $class;
+ }
+
+ /**
+ * return template engine instance. If $name is not defined,
+ * return engine defined by theme, or default
+ *
+ * @param strin $name Template engine name
+ * @return object Template Engine instance
+ */
+ function template_engine($name = ''){
+
+ if ($name!=="") {
+ $template_engine = $name;
+ } else {
+ $template_engine = 'smarty3';
+ if (x($this->theme, 'template_engine')) {
+ $template_engine = $this->theme['template_engine'];
+ }
+ }
+ if (isset($this->template_engines[$template_engine])){
+ if(isset($this->template_engine_instance[$template_engine])){
+ return $this->template_engine_instance[$template_engine];
+ } else {
+ $class = $this->template_engines[$template_engine];
+ $obj = new $class;
+ $this->template_engine_instance[$template_engine] = $obj;
+ return $obj;
+ }
+ }
+
+ echo "template engine $template_engine is not registered!\n"; killme();
+ }
+
function get_template_engine() {
return $this->theme['template_engine'];
}
- function set_template_engine($engine = 'internal') {
+ function set_template_engine($engine = 'smarty3') {
- $this->theme['template_engine'] = 'internal';
+ $this->theme['template_engine'] = 'smarty3';
switch($engine) {
case 'smarty3':
@@ -730,11 +796,11 @@ if(! class_exists('App')) {
}
}
- function get_template_ldelim($engine = 'internal') {
+ function get_template_ldelim($engine = 'smarty3') {
return $this->ldelim[$engine];
}
- function get_template_rdelim($engine = 'internal') {
+ function get_template_rdelim($engine = 'smarty3') {
return $this->rdelim[$engine];
}
diff --git a/include/friendica_smarty.php b/include/friendica_smarty.php
index b3f0d18a0..f9d91a827 100644
--- a/include/friendica_smarty.php
+++ b/include/friendica_smarty.php
@@ -1,9 +1,9 @@
fetch('file:' . $this->filename);
}
+
+
}
-
-
+class FriendicaSmartyEngine implements ITemplateEngine {
+ static $name ="smarty3";
+ // ITemplateEngine interface
+ public function replace_macros($s, $r) {
+ $template = '';
+ if(gettype($s) === 'string') {
+ $template = $s;
+ $s = new FriendicaSmarty();
+ }
+ foreach($r as $key=>$value) {
+ if($key[0] === '$') {
+ $key = substr($key, 1);
+ }
+ $s->assign($key, $value);
+ }
+ return $s->parsed($template);
+ }
+
+ public function get_template_file($file, $root=''){
+ $a = get_app();
+ $template_file = get_template_file($a, 'smarty3/' . $file, $root);
+ $template = new FriendicaSmarty();
+ $template->filename = $template_file;
+ return $template;
+ }
+}
diff --git a/include/template_processor.php b/include/template_processor.php
index ebc03b8d8..49d37488f 100644
--- a/include/template_processor.php
+++ b/include/template_processor.php
@@ -1,9 +1,11 @@
r = $r;
// remove comments block
@@ -276,12 +279,18 @@ class Template {
$count++;
$s = $this->var_replace($s);
}
- return $s;
+ return template_unescape($s);
}
-
+
+ public function get_template_file($file, $root='') {
+ $a = get_app();
+ $template_file = get_template_file($a, $file, $root);
+ $content = file_get_contents($template_file);
+ return $content;
+ }
+
}
-$t = new Template;
function template_escape($s) {
diff --git a/include/text.php b/include/text.php
index 3d244c61f..628b4fc2d 100644
--- a/include/text.php
+++ b/include/text.php
@@ -15,39 +15,20 @@ if(! function_exists('replace_macros')) {
/**
* This is our template processor
*
- * @global Template $t
* @param string|FriendicaSmarty $s the string requiring macro substitution,
* or an instance of FriendicaSmarty
* @param array $r key value pairs (search => replace)
* @return string substituted string
*/
function replace_macros($s,$r) {
- global $t;
$stamp1 = microtime(true);
$a = get_app();
- if($a->theme['template_engine'] === 'smarty3') {
- $template = '';
- if(gettype($s) === 'string') {
- $template = $s;
- $s = new FriendicaSmarty();
- }
- foreach($r as $key=>$value) {
- if($key[0] === '$') {
- $key = substr($key, 1);
- }
- $s->assign($key, $value);
- }
- $output = $s->parsed($template);
- }
- else {
- $r = $t->replace($s,$r);
+ $t = $a->template_engine();
+ $output = $t->replace_macros($s,$r);
- $output = template_unescape($r);
- }
- $a = get_app();
$a->save_timestamp($stamp1, "rendering");
return $output;
@@ -582,6 +563,14 @@ function get_markup_template($s, $root = '') {
$stamp1 = microtime(true);
$a = get_app();
+ $t = $a->template_engine();
+
+ $template = $t->get_template_file($s, $root);
+
+ $a->save_timestamp($stamp1, "file");
+
+ return $template;
+ /*
if($a->theme['template_engine'] === 'smarty3') {
$template_file = get_template_file($a, 'smarty3/' . $s, $root);
@@ -602,6 +591,7 @@ function get_markup_template($s, $root = '') {
return $content;
}
+ */
}}
if(! function_exists("get_template_file")) {
diff --git a/object/TemplateEngine.php b/object/TemplateEngine.php
new file mode 100644
index 000000000..cbd74aaec
--- /dev/null
+++ b/object/TemplateEngine.php
@@ -0,0 +1,11 @@
+
Date: Wed, 27 Mar 2013 10:41:23 -0400
Subject: [PATCH 2/5] template: remove old 'internal' template files, move
smarty3 templates into 'templates' subdir
---
include/friendica_smarty.php | 10 +-
view/404.tpl | 1 -
view/acl_selector.tpl | 26 --
view/admin_aside.tpl | 42 --
view/admin_logs.tpl | 19 -
view/admin_plugins.tpl | 15 -
view/admin_plugins_details.tpl | 36 --
view/admin_remoteupdate.tpl | 98 -----
view/admin_site.tpl | 116 ------
view/admin_summary.tpl | 40 --
view/admin_users.tpl | 98 -----
view/album_edit.tpl | 15 -
view/api_config_xml.tpl | 66 ---
view/api_friends_xml.tpl | 7 -
view/api_ratelimit_xml.tpl | 6 -
view/api_status_xml.tpl | 46 ---
view/api_test_xml.tpl | 1 -
view/api_timeline_atom.tpl | 90 -----
view/api_timeline_rss.tpl | 26 --
view/api_timeline_xml.tpl | 20 -
view/api_user_xml.tpl | 46 ---
view/apps.tpl | 7 -
view/atom_feed.tpl | 29 --
view/atom_feed_dfrn.tpl | 29 --
view/atom_mail.tpl | 17 -
view/atom_relocate.tpl | 17 -
view/atom_suggest.tpl | 11 -
view/auto_request.tpl | 37 --
view/birthdays_reminder.tpl | 10 -
view/categories_widget.tpl | 12 -
view/comment_item.tpl | 39 --
view/common_friends.tpl | 12 -
view/common_tabs.tpl | 5 -
view/confirm.tpl | 14 -
view/contact_block.tpl | 12 -
view/contact_edit.tpl | 88 ----
view/contact_end.tpl | 0
view/contact_head.tpl | 30 --
view/contact_template.tpl | 31 --
view/contacts-end.tpl | 0
view/contacts-head.tpl | 17 -
view/contacts-template.tpl | 26 --
view/contacts-widget-sidebar.tpl | 6 -
view/content.tpl | 2 -
view/conversation.tpl | 29 --
view/crepair.tpl | 46 ---
view/cropbody.tpl | 58 ---
view/cropend.tpl | 0
view/crophead.tpl | 4 -
view/delegate.tpl | 57 ---
view/dfrn_req_confirm.tpl | 21 -
view/dfrn_request.tpl | 65 ---
view/diasp_dec_hdr.tpl | 8 -
view/diaspora_comment.tpl | 11 -
view/diaspora_comment_relay.tpl | 12 -
view/diaspora_conversation.tpl | 29 --
view/diaspora_like.tpl | 12 -
view/diaspora_like_relay.tpl | 13 -
view/diaspora_message.tpl | 13 -
view/diaspora_photo.tpl | 13 -
view/diaspora_post.tpl | 11 -
view/diaspora_profile.tpl | 16 -
view/diaspora_relay_retraction.tpl | 10 -
view/diaspora_relayable_retraction.tpl | 11 -
view/diaspora_retract.tpl | 9 -
view/diaspora_share.tpl | 8 -
view/diaspora_signed_retract.tpl | 10 -
view/diaspora_vcard.tpl | 57 ---
view/directory_header.tpl | 16 -
view/directory_item.tpl | 11 -
view/display-head.tpl | 8 -
view/email_notify_html.tpl | 30 --
view/email_notify_text.tpl | 16 -
view/end.tpl | 0
view/event.tpl | 10 -
view/event_end.tpl | 0
view/event_form.tpl | 49 ---
view/event_head.tpl | 139 -------
view/events-js.tpl | 6 -
view/events.tpl | 24 --
view/events_reminder.tpl | 10 -
view/failed_updates.tpl | 17 -
view/fake_feed.tpl | 13 -
view/field.tpl | 4 -
view/field_checkbox.tpl | 6 -
view/field_combobox.tpl | 18 -
view/field_custom.tpl | 6 -
view/field_input.tpl | 6 -
view/field_intcheckbox.tpl | 6 -
view/field_openid.tpl | 6 -
view/field_password.tpl | 6 -
view/field_radio.tpl | 6 -
view/field_richtext.tpl | 6 -
view/field_select.tpl | 8 -
view/field_select_raw.tpl | 8 -
view/field_textarea.tpl | 6 -
view/field_themeselect.tpl | 9 -
view/field_yesno.tpl | 13 -
view/fileas_widget.tpl | 12 -
view/filebrowser.tpl | 84 ----
view/filer_dialog.tpl | 4 -
view/follow.tpl | 8 -
view/follow_slap.tpl | 25 --
view/generic_links_widget.tpl | 11 -
view/group_drop.tpl | 9 -
view/group_edit.tpl | 23 --
view/group_selection.tpl | 8 -
view/group_side.tpl | 33 --
view/groupeditor.tpl | 16 -
view/head.tpl | 112 ------
view/hide_comments.tpl | 4 -
view/install.tpl | 10 -
view/install_checks.tpl | 24 --
view/install_db.tpl | 30 --
view/install_settings.tpl | 25 --
view/intros.tpl | 28 --
view/invite.tpl | 30 --
view/jot-end.tpl | 0
view/jot-header.tpl | 322 ---------------
view/jot.tpl | 88 ----
view/jot_geotag.tpl | 8 -
view/lang_selector.tpl | 10 -
view/like_noshare.tpl | 7 -
view/login.tpl | 35 --
view/login_head.tpl | 0
view/logout.tpl | 6 -
view/lostpass.tpl | 18 -
view/magicsig.tpl | 9 -
view/mail_conv.tpl | 14 -
view/mail_display.tpl | 10 -
view/mail_head.tpl | 3 -
view/mail_list.tpl | 16 -
view/maintenance.tpl | 1 -
view/manage.tpl | 17 -
view/match.tpl | 16 -
view/message-end.tpl | 0
view/message-head.tpl | 17 -
view/message_side.tpl | 10 -
view/moderated_comment.tpl | 34 --
view/mood_content.tpl | 20 -
view/msg-end.tpl | 0
view/msg-header.tpl | 97 -----
view/nav.tpl | 68 ----
view/navigation.tpl | 103 -----
view/netfriend.tpl | 14 -
view/nets.tpl | 10 -
view/nogroup-template.tpl | 12 -
view/notifications.tpl | 8 -
view/notifications_comments_item.tpl | 3 -
view/notifications_dislikes_item.tpl | 3 -
view/notifications_friends_item.tpl | 3 -
view/notifications_likes_item.tpl | 3 -
view/notifications_network_item.tpl | 3 -
view/notifications_posts_item.tpl | 3 -
view/notify.tpl | 3 -
view/oauth_authorize.tpl | 10 -
view/oauth_authorize_done.tpl | 4 -
view/oembed_video.tpl | 4 -
view/oexchange_xrd.tpl | 33 --
view/opensearch.tpl | 13 -
view/pagetypes.tpl | 5 -
view/peoplefind.tpl | 14 -
view/photo_album.tpl | 7 -
view/photo_drop.tpl | 4 -
view/photo_edit.tpl | 50 ---
view/photo_edit_head.tpl | 11 -
view/photo_item.tpl | 22 -
view/photo_top.tpl | 8 -
view/photo_view.tpl | 37 --
view/photos_default_uploader_box.tpl | 1 -
view/photos_default_uploader_submit.tpl | 3 -
view/photos_head.tpl | 26 --
view/photos_recent.tpl | 11 -
view/photos_upload.tpl | 49 ---
view/poco_entry_xml.tpl | 7 -
view/poco_xml.tpl | 18 -
view/poke_content.tpl | 32 --
view/posted_date_widget.tpl | 9 -
view/profed_end.tpl | 0
view/profed_head.tpl | 38 --
view/profile-hide-friends.tpl | 16 -
view/profile-hide-wall.tpl | 16 -
view/profile-in-directory.tpl | 16 -
view/profile-in-netdir.tpl | 16 -
view/profile_advanced.tpl | 170 --------
view/profile_edit.tpl | 323 ---------------
view/profile_edlink.tpl | 2 -
view/profile_entry.tpl | 11 -
view/profile_listing_header.tpl | 8 -
view/profile_photo.tpl | 26 --
view/profile_publish.tpl | 16 -
view/profile_vcard.tpl | 50 ---
view/prv_message.tpl | 33 --
view/pwdreset.tpl | 17 -
view/register.tpl | 65 ---
view/remote_friends_common.tpl | 21 -
view/removeme.tpl | 20 -
view/saved_searches_aside.tpl | 14 -
view/search_item.tpl | 64 ---
view/settings-end.tpl | 0
view/settings-head.tpl | 25 --
view/settings.tpl | 147 -------
view/settings_addons.tpl | 10 -
view/settings_connectors.tpl | 35 --
view/settings_display.tpl | 22 -
view/settings_display_end.tpl | 0
view/settings_features.tpl | 20 -
view/settings_nick_set.tpl | 5 -
view/settings_nick_subdir.tpl | 6 -
view/settings_oauth.tpl | 31 --
view/settings_oauth_edit.tpl | 17 -
view/smarty3/404.tpl | 6 -
view/smarty3/acl_selector.tpl | 31 --
view/smarty3/admin_aside.tpl | 47 ---
view/smarty3/admin_logs.tpl | 24 --
view/smarty3/admin_plugins.tpl | 20 -
view/smarty3/admin_plugins_details.tpl | 41 --
view/smarty3/admin_remoteupdate.tpl | 103 -----
view/smarty3/admin_site.tpl | 121 ------
view/smarty3/admin_summary.tpl | 45 ---
view/smarty3/admin_users.tpl | 103 -----
view/smarty3/album_edit.tpl | 20 -
view/smarty3/api_config_xml.tpl | 71 ----
view/smarty3/api_friends_xml.tpl | 12 -
view/smarty3/api_ratelimit_xml.tpl | 11 -
view/smarty3/api_status_xml.tpl | 51 ---
view/smarty3/api_test_xml.tpl | 6 -
view/smarty3/api_timeline_atom.tpl | 95 -----
view/smarty3/api_timeline_rss.tpl | 31 --
view/smarty3/api_timeline_xml.tpl | 25 --
view/smarty3/api_user_xml.tpl | 51 ---
view/smarty3/apps.tpl | 12 -
view/smarty3/atom_feed.tpl | 34 --
view/smarty3/atom_feed_dfrn.tpl | 34 --
view/smarty3/atom_mail.tpl | 22 -
view/smarty3/atom_relocate.tpl | 22 -
view/smarty3/atom_suggest.tpl | 16 -
view/smarty3/auto_request.tpl | 42 --
view/smarty3/birthdays_reminder.tpl | 15 -
view/smarty3/categories_widget.tpl | 17 -
view/smarty3/comment_item.tpl | 44 --
view/smarty3/common_friends.tpl | 17 -
view/smarty3/common_tabs.tpl | 10 -
view/smarty3/confirm.tpl | 19 -
view/smarty3/contact_block.tpl | 17 -
view/smarty3/contact_edit.tpl | 93 -----
view/smarty3/contact_end.tpl | 5 -
view/smarty3/contact_head.tpl | 35 --
view/smarty3/contact_template.tpl | 36 --
view/smarty3/contacts-end.tpl | 5 -
view/smarty3/contacts-head.tpl | 22 -
view/smarty3/contacts-template.tpl | 31 --
view/smarty3/contacts-widget-sidebar.tpl | 11 -
view/smarty3/content.tpl | 7 -
view/smarty3/conversation.tpl | 34 --
view/smarty3/crepair.tpl | 51 ---
view/smarty3/cropbody.tpl | 63 ---
view/smarty3/cropend.tpl | 5 -
view/smarty3/crophead.tpl | 9 -
view/smarty3/delegate.tpl | 62 ---
view/smarty3/dfrn_req_confirm.tpl | 26 --
view/smarty3/dfrn_request.tpl | 70 ----
view/smarty3/diasp_dec_hdr.tpl | 13 -
view/smarty3/diaspora_comment.tpl | 16 -
view/smarty3/diaspora_comment_relay.tpl | 17 -
view/smarty3/diaspora_conversation.tpl | 34 --
view/smarty3/diaspora_like.tpl | 17 -
view/smarty3/diaspora_like_relay.tpl | 18 -
view/smarty3/diaspora_message.tpl | 18 -
view/smarty3/diaspora_photo.tpl | 18 -
view/smarty3/diaspora_post.tpl | 16 -
view/smarty3/diaspora_profile.tpl | 21 -
view/smarty3/diaspora_relay_retraction.tpl | 15 -
.../smarty3/diaspora_relayable_retraction.tpl | 16 -
view/smarty3/diaspora_retract.tpl | 14 -
view/smarty3/diaspora_share.tpl | 13 -
view/smarty3/diaspora_signed_retract.tpl | 15 -
view/smarty3/diaspora_vcard.tpl | 62 ---
view/smarty3/directory_header.tpl | 21 -
view/smarty3/directory_item.tpl | 16 -
view/smarty3/display-head.tpl | 13 -
view/smarty3/email_notify_html.tpl | 35 --
view/smarty3/email_notify_text.tpl | 21 -
view/smarty3/end.tpl | 5 -
view/smarty3/event.tpl | 15 -
view/smarty3/event_end.tpl | 5 -
view/smarty3/event_form.tpl | 54 ---
view/smarty3/event_head.tpl | 144 -------
view/smarty3/events-js.tpl | 11 -
view/smarty3/events.tpl | 29 --
view/smarty3/events_reminder.tpl | 15 -
view/smarty3/failed_updates.tpl | 22 -
view/smarty3/fake_feed.tpl | 18 -
view/smarty3/field.tpl | 9 -
view/smarty3/field_checkbox.tpl | 11 -
view/smarty3/field_combobox.tpl | 23 --
view/smarty3/field_custom.tpl | 11 -
view/smarty3/field_input.tpl | 11 -
view/smarty3/field_intcheckbox.tpl | 11 -
view/smarty3/field_openid.tpl | 11 -
view/smarty3/field_password.tpl | 11 -
view/smarty3/field_radio.tpl | 11 -
view/smarty3/field_richtext.tpl | 11 -
view/smarty3/field_select.tpl | 13 -
view/smarty3/field_select_raw.tpl | 13 -
view/smarty3/field_textarea.tpl | 11 -
view/smarty3/field_themeselect.tpl | 14 -
view/smarty3/field_yesno.tpl | 18 -
view/smarty3/fileas_widget.tpl | 17 -
view/smarty3/filebrowser.tpl | 89 ----
view/smarty3/filer_dialog.tpl | 9 -
view/smarty3/follow.tpl | 13 -
view/smarty3/follow_slap.tpl | 30 --
view/smarty3/generic_links_widget.tpl | 16 -
view/smarty3/group_drop.tpl | 14 -
view/smarty3/group_edit.tpl | 28 --
view/smarty3/group_selection.tpl | 13 -
view/smarty3/group_side.tpl | 38 --
view/smarty3/groupeditor.tpl | 21 -
view/smarty3/head.tpl | 117 ------
view/smarty3/hide_comments.tpl | 9 -
view/smarty3/install.tpl | 15 -
view/smarty3/install_checks.tpl | 29 --
view/smarty3/install_db.tpl | 35 --
view/smarty3/install_settings.tpl | 30 --
view/smarty3/intros.tpl | 33 --
view/smarty3/invite.tpl | 35 --
view/smarty3/jot-end.tpl | 5 -
view/smarty3/jot-header.tpl | 327 ---------------
view/smarty3/jot.tpl | 93 -----
view/smarty3/jot_geotag.tpl | 13 -
view/smarty3/lang_selector.tpl | 15 -
view/smarty3/like_noshare.tpl | 12 -
view/smarty3/login.tpl | 40 --
view/smarty3/login_head.tpl | 5 -
view/smarty3/logout.tpl | 11 -
view/smarty3/lostpass.tpl | 23 --
view/smarty3/magicsig.tpl | 14 -
view/smarty3/mail_conv.tpl | 19 -
view/smarty3/mail_display.tpl | 15 -
view/smarty3/mail_head.tpl | 8 -
view/smarty3/mail_list.tpl | 21 -
view/smarty3/maintenance.tpl | 6 -
view/smarty3/manage.tpl | 22 -
view/smarty3/match.tpl | 21 -
view/smarty3/message-end.tpl | 5 -
view/smarty3/message-head.tpl | 22 -
view/smarty3/message_side.tpl | 15 -
view/smarty3/moderated_comment.tpl | 39 --
view/smarty3/mood_content.tpl | 25 --
view/smarty3/msg-end.tpl | 5 -
view/smarty3/msg-header.tpl | 102 -----
view/smarty3/nav.tpl | 73 ----
view/smarty3/navigation.tpl | 108 -----
view/smarty3/netfriend.tpl | 19 -
view/smarty3/nets.tpl | 15 -
view/smarty3/nogroup-template.tpl | 17 -
view/smarty3/notifications.tpl | 13 -
view/smarty3/notifications_comments_item.tpl | 8 -
view/smarty3/notifications_dislikes_item.tpl | 8 -
view/smarty3/notifications_friends_item.tpl | 8 -
view/smarty3/notifications_likes_item.tpl | 8 -
view/smarty3/notifications_network_item.tpl | 8 -
view/smarty3/notifications_posts_item.tpl | 8 -
view/smarty3/notify.tpl | 8 -
view/smarty3/oauth_authorize.tpl | 15 -
view/smarty3/oauth_authorize_done.tpl | 9 -
view/smarty3/oembed_video.tpl | 9 -
view/smarty3/oexchange_xrd.tpl | 38 --
view/smarty3/opensearch.tpl | 18 -
view/smarty3/pagetypes.tpl | 10 -
view/smarty3/peoplefind.tpl | 19 -
view/smarty3/photo_album.tpl | 12 -
view/smarty3/photo_drop.tpl | 9 -
view/smarty3/photo_edit.tpl | 55 ---
view/smarty3/photo_edit_head.tpl | 16 -
view/smarty3/photo_item.tpl | 27 --
view/smarty3/photo_top.tpl | 13 -
view/smarty3/photo_view.tpl | 42 --
view/smarty3/photos_default_uploader_box.tpl | 6 -
.../photos_default_uploader_submit.tpl | 8 -
view/smarty3/photos_head.tpl | 31 --
view/smarty3/photos_recent.tpl | 16 -
view/smarty3/photos_upload.tpl | 54 ---
view/smarty3/poco_entry_xml.tpl | 12 -
view/smarty3/poco_xml.tpl | 23 --
view/smarty3/poke_content.tpl | 37 --
view/smarty3/posted_date_widget.tpl | 14 -
view/smarty3/profed_end.tpl | 5 -
view/smarty3/profed_head.tpl | 43 --
view/smarty3/profile-hide-friends.tpl | 21 -
view/smarty3/profile-hide-wall.tpl | 21 -
view/smarty3/profile-in-directory.tpl | 21 -
view/smarty3/profile-in-netdir.tpl | 21 -
view/smarty3/profile_advanced.tpl | 175 --------
view/smarty3/profile_edit.tpl | 328 ---------------
view/smarty3/profile_edlink.tpl | 7 -
view/smarty3/profile_entry.tpl | 16 -
view/smarty3/profile_listing_header.tpl | 13 -
view/smarty3/profile_photo.tpl | 31 --
view/smarty3/profile_publish.tpl | 21 -
view/smarty3/profile_vcard.tpl | 55 ---
view/smarty3/prv_message.tpl | 38 --
view/smarty3/pwdreset.tpl | 22 -
view/smarty3/register.tpl | 70 ----
view/smarty3/remote_friends_common.tpl | 26 --
view/smarty3/removeme.tpl | 25 --
view/smarty3/saved_searches_aside.tpl | 19 -
view/smarty3/search_item.tpl | 69 ----
view/smarty3/settings-end.tpl | 5 -
view/smarty3/settings-head.tpl | 30 --
view/smarty3/settings.tpl | 152 -------
view/smarty3/settings_addons.tpl | 15 -
view/smarty3/settings_connectors.tpl | 40 --
view/smarty3/settings_display.tpl | 27 --
view/smarty3/settings_display_end.tpl | 5 -
view/smarty3/settings_features.tpl | 25 --
view/smarty3/settings_nick_set.tpl | 10 -
view/smarty3/settings_nick_subdir.tpl | 11 -
view/smarty3/settings_oauth.tpl | 36 --
view/smarty3/settings_oauth_edit.tpl | 22 -
view/smarty3/suggest_friends.tpl | 21 -
view/smarty3/suggestions.tpl | 26 --
view/smarty3/tag_slap.tpl | 35 --
view/smarty3/threaded_conversation.tpl | 21 -
view/smarty3/toggle_mobile_footer.tpl | 7 -
view/smarty3/uexport.tpl | 14 -
view/smarty3/uimport.tpl | 18 -
view/smarty3/vcard-widget.tpl | 10 -
view/smarty3/viewcontact_template.tpl | 14 -
view/smarty3/voting_fakelink.tpl | 6 -
view/smarty3/wall_thread.tpl | 125 ------
view/smarty3/wallmessage.tpl | 37 --
view/smarty3/wallmsg-end.tpl | 5 -
view/smarty3/wallmsg-header.tpl | 87 ----
view/smarty3/xrd_diaspora.tpl | 8 -
view/smarty3/xrd_host.tpl | 23 --
view/smarty3/xrd_person.tpl | 43 --
view/suggest_friends.tpl | 16 -
view/suggestions.tpl | 21 -
view/tag_slap.tpl | 30 --
view/theme/cleanzero/nav.tpl | 85 ----
view/theme/cleanzero/smarty3/nav.tpl | 90 -----
.../cleanzero/smarty3/theme_settings.tpl | 15 -
view/theme/cleanzero/theme_settings.tpl | 10 -
view/theme/comix-plain/comment_item.tpl | 33 --
view/theme/comix-plain/search_item.tpl | 54 ---
.../comix-plain/smarty3/comment_item.tpl | 38 --
.../theme/comix-plain/smarty3/search_item.tpl | 59 ---
view/theme/comix/comment_item.tpl | 33 --
view/theme/comix/search_item.tpl | 54 ---
view/theme/comix/smarty3/comment_item.tpl | 38 --
view/theme/comix/smarty3/search_item.tpl | 59 ---
view/theme/decaf-mobile/acl_html_selector.tpl | 29 --
view/theme/decaf-mobile/acl_selector.tpl | 23 --
view/theme/decaf-mobile/admin_aside.tpl | 31 --
view/theme/decaf-mobile/admin_site.tpl | 67 ----
view/theme/decaf-mobile/admin_users.tpl | 98 -----
view/theme/decaf-mobile/album_edit.tpl | 15 -
view/theme/decaf-mobile/categories_widget.tpl | 12 -
view/theme/decaf-mobile/comment_item.tpl | 79 ----
view/theme/decaf-mobile/common_tabs.tpl | 6 -
view/theme/decaf-mobile/contact_block.tpl | 12 -
view/theme/decaf-mobile/contact_edit.tpl | 93 -----
view/theme/decaf-mobile/contact_head.tpl | 0
view/theme/decaf-mobile/contact_template.tpl | 38 --
view/theme/decaf-mobile/contacts-end.tpl | 4 -
view/theme/decaf-mobile/contacts-head.tpl | 5 -
view/theme/decaf-mobile/contacts-template.tpl | 28 --
.../decaf-mobile/contacts-widget-sidebar.tpl | 2 -
view/theme/decaf-mobile/conversation.tpl | 29 --
view/theme/decaf-mobile/cropbody.tpl | 27 --
view/theme/decaf-mobile/cropend.tpl | 4 -
view/theme/decaf-mobile/crophead.tpl | 1 -
view/theme/decaf-mobile/display-head.tpl | 4 -
view/theme/decaf-mobile/end.tpl | 25 --
view/theme/decaf-mobile/event_end.tpl | 4 -
view/theme/decaf-mobile/event_head.tpl | 6 -
view/theme/decaf-mobile/field_checkbox.tpl | 6 -
view/theme/decaf-mobile/field_input.tpl | 6 -
view/theme/decaf-mobile/field_openid.tpl | 6 -
view/theme/decaf-mobile/field_password.tpl | 6 -
view/theme/decaf-mobile/field_themeselect.tpl | 9 -
view/theme/decaf-mobile/field_yesno.tpl | 14 -
.../decaf-mobile/generic_links_widget.tpl | 12 -
view/theme/decaf-mobile/group_drop.tpl | 9 -
view/theme/decaf-mobile/group_side.tpl | 33 --
view/theme/decaf-mobile/head.tpl | 30 --
view/theme/decaf-mobile/jot-end.tpl | 5 -
view/theme/decaf-mobile/jot-header.tpl | 17 -
view/theme/decaf-mobile/jot.tpl | 99 -----
view/theme/decaf-mobile/jot_geotag.tpl | 11 -
view/theme/decaf-mobile/lang_selector.tpl | 10 -
view/theme/decaf-mobile/like_noshare.tpl | 7 -
view/theme/decaf-mobile/login.tpl | 45 ---
view/theme/decaf-mobile/login_head.tpl | 2 -
view/theme/decaf-mobile/lostpass.tpl | 21 -
view/theme/decaf-mobile/mail_conv.tpl | 18 -
view/theme/decaf-mobile/mail_list.tpl | 16 -
view/theme/decaf-mobile/manage.tpl | 18 -
view/theme/decaf-mobile/message-end.tpl | 4 -
view/theme/decaf-mobile/message-head.tpl | 0
view/theme/decaf-mobile/msg-end.tpl | 2 -
view/theme/decaf-mobile/msg-header.tpl | 10 -
view/theme/decaf-mobile/nav.tpl | 155 -------
view/theme/decaf-mobile/photo_drop.tpl | 4 -
view/theme/decaf-mobile/photo_edit.tpl | 60 ---
view/theme/decaf-mobile/photo_edit_head.tpl | 7 -
view/theme/decaf-mobile/photo_view.tpl | 42 --
view/theme/decaf-mobile/photos_head.tpl | 5 -
view/theme/decaf-mobile/photos_upload.tpl | 51 ---
view/theme/decaf-mobile/profed_end.tpl | 8 -
view/theme/decaf-mobile/profed_head.tpl | 5 -
view/theme/decaf-mobile/profile_edit.tpl | 324 ---------------
view/theme/decaf-mobile/profile_photo.tpl | 19 -
view/theme/decaf-mobile/profile_vcard.tpl | 51 ---
view/theme/decaf-mobile/prv_message.tpl | 43 --
view/theme/decaf-mobile/register.tpl | 80 ----
view/theme/decaf-mobile/search_item.tpl | 64 ---
view/theme/decaf-mobile/settings-head.tpl | 5 -
view/theme/decaf-mobile/settings.tpl | 151 -------
.../decaf-mobile/settings_display_end.tpl | 2 -
.../smarty3/acl_html_selector.tpl | 34 --
.../decaf-mobile/smarty3/acl_selector.tpl | 28 --
.../decaf-mobile/smarty3/admin_aside.tpl | 36 --
.../theme/decaf-mobile/smarty3/admin_site.tpl | 72 ----
.../decaf-mobile/smarty3/admin_users.tpl | 103 -----
.../theme/decaf-mobile/smarty3/album_edit.tpl | 20 -
.../smarty3/categories_widget.tpl | 17 -
.../decaf-mobile/smarty3/comment_item.tpl | 84 ----
.../decaf-mobile/smarty3/common_tabs.tpl | 11 -
.../decaf-mobile/smarty3/contact_block.tpl | 17 -
.../decaf-mobile/smarty3/contact_edit.tpl | 98 -----
.../decaf-mobile/smarty3/contact_head.tpl | 5 -
.../decaf-mobile/smarty3/contact_template.tpl | 43 --
.../decaf-mobile/smarty3/contacts-end.tpl | 9 -
.../decaf-mobile/smarty3/contacts-head.tpl | 10 -
.../smarty3/contacts-template.tpl | 33 --
.../smarty3/contacts-widget-sidebar.tpl | 7 -
.../decaf-mobile/smarty3/conversation.tpl | 34 --
view/theme/decaf-mobile/smarty3/cropbody.tpl | 32 --
view/theme/decaf-mobile/smarty3/cropend.tpl | 9 -
view/theme/decaf-mobile/smarty3/crophead.tpl | 6 -
.../decaf-mobile/smarty3/display-head.tpl | 9 -
view/theme/decaf-mobile/smarty3/end.tpl | 30 --
view/theme/decaf-mobile/smarty3/event_end.tpl | 9 -
.../theme/decaf-mobile/smarty3/event_head.tpl | 11 -
.../decaf-mobile/smarty3/field_checkbox.tpl | 11 -
.../decaf-mobile/smarty3/field_input.tpl | 11 -
.../decaf-mobile/smarty3/field_openid.tpl | 11 -
.../decaf-mobile/smarty3/field_password.tpl | 11 -
.../smarty3/field_themeselect.tpl | 14 -
.../decaf-mobile/smarty3/field_yesno.tpl | 19 -
.../smarty3/generic_links_widget.tpl | 17 -
.../theme/decaf-mobile/smarty3/group_drop.tpl | 14 -
.../theme/decaf-mobile/smarty3/group_side.tpl | 38 --
view/theme/decaf-mobile/smarty3/head.tpl | 35 --
view/theme/decaf-mobile/smarty3/jot-end.tpl | 10 -
.../theme/decaf-mobile/smarty3/jot-header.tpl | 22 -
view/theme/decaf-mobile/smarty3/jot.tpl | 104 -----
.../theme/decaf-mobile/smarty3/jot_geotag.tpl | 16 -
.../decaf-mobile/smarty3/lang_selector.tpl | 15 -
.../decaf-mobile/smarty3/like_noshare.tpl | 12 -
view/theme/decaf-mobile/smarty3/login.tpl | 50 ---
.../theme/decaf-mobile/smarty3/login_head.tpl | 7 -
view/theme/decaf-mobile/smarty3/lostpass.tpl | 26 --
view/theme/decaf-mobile/smarty3/mail_conv.tpl | 23 --
view/theme/decaf-mobile/smarty3/mail_list.tpl | 21 -
view/theme/decaf-mobile/smarty3/manage.tpl | 23 --
.../decaf-mobile/smarty3/message-end.tpl | 9 -
.../decaf-mobile/smarty3/message-head.tpl | 5 -
.../smarty3/moderated_comment.tpl | 66 ---
view/theme/decaf-mobile/smarty3/msg-end.tpl | 7 -
.../theme/decaf-mobile/smarty3/msg-header.tpl | 15 -
view/theme/decaf-mobile/smarty3/nav.tpl | 160 --------
.../theme/decaf-mobile/smarty3/photo_drop.tpl | 9 -
.../theme/decaf-mobile/smarty3/photo_edit.tpl | 65 ---
.../decaf-mobile/smarty3/photo_edit_head.tpl | 12 -
.../theme/decaf-mobile/smarty3/photo_view.tpl | 47 ---
.../decaf-mobile/smarty3/photos_head.tpl | 10 -
.../decaf-mobile/smarty3/photos_upload.tpl | 56 ---
.../theme/decaf-mobile/smarty3/profed_end.tpl | 13 -
.../decaf-mobile/smarty3/profed_head.tpl | 10 -
.../decaf-mobile/smarty3/profile_edit.tpl | 329 ---------------
.../decaf-mobile/smarty3/profile_photo.tpl | 24 --
.../decaf-mobile/smarty3/profile_vcard.tpl | 56 ---
.../decaf-mobile/smarty3/prv_message.tpl | 48 ---
view/theme/decaf-mobile/smarty3/register.tpl | 85 ----
.../decaf-mobile/smarty3/search_item.tpl | 69 ----
.../decaf-mobile/smarty3/settings-head.tpl | 10 -
view/theme/decaf-mobile/smarty3/settings.tpl | 156 -------
.../smarty3/settings_display_end.tpl | 7 -
.../decaf-mobile/smarty3/suggest_friends.tpl | 21 -
.../smarty3/threaded_conversation.tpl | 17 -
.../decaf-mobile/smarty3/voting_fakelink.tpl | 6 -
.../decaf-mobile/smarty3/wall_thread.tpl | 124 ------
.../smarty3/wall_thread_toponly.tpl | 106 -----
.../decaf-mobile/smarty3/wallmessage.tpl | 37 --
.../decaf-mobile/smarty3/wallmsg-end.tpl | 7 -
.../decaf-mobile/smarty3/wallmsg-header.tpl | 12 -
view/theme/decaf-mobile/suggest_friends.tpl | 16 -
.../decaf-mobile/threaded_conversation.tpl | 12 -
view/theme/decaf-mobile/voting_fakelink.tpl | 1 -
view/theme/decaf-mobile/wall_thread.tpl | 119 ------
.../decaf-mobile/wall_thread_toponly.tpl | 101 -----
view/theme/decaf-mobile/wallmessage.tpl | 32 --
view/theme/decaf-mobile/wallmsg-end.tpl | 2 -
view/theme/decaf-mobile/wallmsg-header.tpl | 7 -
view/theme/diabook/admin_users.tpl | 88 ----
view/theme/diabook/bottom.tpl | 155 -------
view/theme/diabook/ch_directory_item.tpl | 10 -
view/theme/diabook/comment_item.tpl | 43 --
view/theme/diabook/communityhome.tpl | 172 --------
view/theme/diabook/contact_template.tpl | 31 --
view/theme/diabook/directory_item.tpl | 42 --
view/theme/diabook/footer.tpl | 3 -
view/theme/diabook/generic_links_widget.tpl | 11 -
view/theme/diabook/group_side.tpl | 34 --
view/theme/diabook/jot.tpl | 87 ----
view/theme/diabook/login.tpl | 33 --
view/theme/diabook/mail_conv.tpl | 60 ---
view/theme/diabook/mail_display.tpl | 12 -
view/theme/diabook/mail_list.tpl | 8 -
view/theme/diabook/message_side.tpl | 10 -
view/theme/diabook/nav.tpl | 188 ---------
view/theme/diabook/nets.tpl | 17 -
view/theme/diabook/oembed_video.tpl | 4 -
view/theme/diabook/photo_item.tpl | 65 ---
view/theme/diabook/photo_view.tpl | 33 --
view/theme/diabook/profile_side.tpl | 21 -
view/theme/diabook/profile_vcard.tpl | 64 ---
view/theme/diabook/prv_message.tpl | 40 --
view/theme/diabook/right_aside.tpl | 20 -
view/theme/diabook/search_item.tpl | 111 -----
view/theme/diabook/smarty3/admin_users.tpl | 93 -----
view/theme/diabook/smarty3/bottom.tpl | 160 --------
.../diabook/smarty3/ch_directory_item.tpl | 15 -
view/theme/diabook/smarty3/comment_item.tpl | 48 ---
view/theme/diabook/smarty3/communityhome.tpl | 177 --------
.../diabook/smarty3/contact_template.tpl | 36 --
view/theme/diabook/smarty3/directory_item.tpl | 47 ---
view/theme/diabook/smarty3/footer.tpl | 8 -
.../diabook/smarty3/generic_links_widget.tpl | 16 -
view/theme/diabook/smarty3/group_side.tpl | 39 --
view/theme/diabook/smarty3/jot.tpl | 92 -----
view/theme/diabook/smarty3/login.tpl | 38 --
view/theme/diabook/smarty3/mail_conv.tpl | 65 ---
view/theme/diabook/smarty3/mail_display.tpl | 17 -
view/theme/diabook/smarty3/mail_list.tpl | 13 -
view/theme/diabook/smarty3/message_side.tpl | 15 -
view/theme/diabook/smarty3/nav.tpl | 193 ---------
view/theme/diabook/smarty3/nets.tpl | 22 -
view/theme/diabook/smarty3/oembed_video.tpl | 9 -
view/theme/diabook/smarty3/photo_item.tpl | 70 ----
view/theme/diabook/smarty3/photo_view.tpl | 38 --
view/theme/diabook/smarty3/profile_side.tpl | 26 --
view/theme/diabook/smarty3/profile_vcard.tpl | 69 ----
view/theme/diabook/smarty3/prv_message.tpl | 45 ---
view/theme/diabook/smarty3/right_aside.tpl | 25 --
view/theme/diabook/smarty3/search_item.tpl | 116 ------
view/theme/diabook/smarty3/theme_settings.tpl | 46 ---
view/theme/diabook/smarty3/wall_thread.tpl | 146 -------
view/theme/diabook/theme_settings.tpl | 41 --
view/theme/diabook/wall_thread.tpl | 141 -------
view/theme/dispy/bottom.tpl | 71 ----
view/theme/dispy/comment_item.tpl | 70 ----
view/theme/dispy/communityhome.tpl | 35 --
view/theme/dispy/contact_template.tpl | 36 --
view/theme/dispy/conversation.tpl | 29 --
view/theme/dispy/group_side.tpl | 29 --
view/theme/dispy/header.tpl | 0
view/theme/dispy/jot-header.tpl | 345 ----------------
view/theme/dispy/jot.tpl | 79 ----
view/theme/dispy/lang_selector.tpl | 10 -
view/theme/dispy/mail_head.tpl | 5 -
view/theme/dispy/nav.tpl | 145 -------
view/theme/dispy/photo_edit.tpl | 53 ---
view/theme/dispy/photo_view.tpl | 36 --
view/theme/dispy/profile_vcard.tpl | 82 ----
view/theme/dispy/saved_searches_aside.tpl | 14 -
view/theme/dispy/search_item.tpl | 64 ---
view/theme/dispy/smarty3/bottom.tpl | 76 ----
view/theme/dispy/smarty3/comment_item.tpl | 75 ----
view/theme/dispy/smarty3/communityhome.tpl | 40 --
view/theme/dispy/smarty3/contact_template.tpl | 41 --
view/theme/dispy/smarty3/conversation.tpl | 34 --
view/theme/dispy/smarty3/group_side.tpl | 34 --
view/theme/dispy/smarty3/header.tpl | 5 -
view/theme/dispy/smarty3/jot-header.tpl | 350 ----------------
view/theme/dispy/smarty3/jot.tpl | 84 ----
view/theme/dispy/smarty3/lang_selector.tpl | 15 -
view/theme/dispy/smarty3/mail_head.tpl | 10 -
view/theme/dispy/smarty3/nav.tpl | 150 -------
view/theme/dispy/smarty3/photo_edit.tpl | 58 ---
view/theme/dispy/smarty3/photo_view.tpl | 41 --
view/theme/dispy/smarty3/profile_vcard.tpl | 87 ----
.../dispy/smarty3/saved_searches_aside.tpl | 19 -
view/theme/dispy/smarty3/search_item.tpl | 69 ----
view/theme/dispy/smarty3/theme_settings.tpl | 15 -
.../dispy/smarty3/threaded_conversation.tpl | 20 -
view/theme/dispy/smarty3/wall_thread.tpl | 144 -------
view/theme/dispy/theme_settings.tpl | 10 -
view/theme/dispy/threaded_conversation.tpl | 15 -
view/theme/dispy/wall_thread.tpl | 139 -------
view/theme/duepuntozero/comment_item.tpl | 66 ---
view/theme/duepuntozero/lang_selector.tpl | 10 -
view/theme/duepuntozero/moderated_comment.tpl | 61 ---
view/theme/duepuntozero/nav.tpl | 70 ----
view/theme/duepuntozero/profile_vcard.tpl | 51 ---
view/theme/duepuntozero/prv_message.tpl | 39 --
.../duepuntozero/smarty3/comment_item.tpl | 71 ----
.../duepuntozero/smarty3/lang_selector.tpl | 15 -
.../smarty3/moderated_comment.tpl | 66 ---
view/theme/duepuntozero/smarty3/nav.tpl | 75 ----
.../duepuntozero/smarty3/profile_vcard.tpl | 56 ---
.../duepuntozero/smarty3/prv_message.tpl | 44 --
view/theme/facepark/comment_item.tpl | 33 --
view/theme/facepark/group_side.tpl | 28 --
view/theme/facepark/jot.tpl | 85 ----
view/theme/facepark/nav.tpl | 68 ----
view/theme/facepark/profile_vcard.tpl | 47 ---
view/theme/facepark/search_item.tpl | 54 ---
view/theme/facepark/smarty3/comment_item.tpl | 38 --
view/theme/facepark/smarty3/group_side.tpl | 33 --
view/theme/facepark/smarty3/jot.tpl | 90 -----
view/theme/facepark/smarty3/nav.tpl | 73 ----
view/theme/facepark/smarty3/profile_vcard.tpl | 52 ---
view/theme/facepark/smarty3/search_item.tpl | 59 ---
view/theme/frost-mobile/acl_selector.tpl | 23 --
view/theme/frost-mobile/admin_aside.tpl | 31 --
view/theme/frost-mobile/admin_site.tpl | 67 ----
view/theme/frost-mobile/admin_users.tpl | 98 -----
view/theme/frost-mobile/categories_widget.tpl | 12 -
view/theme/frost-mobile/comment_item.tpl | 78 ----
view/theme/frost-mobile/common_tabs.tpl | 6 -
view/theme/frost-mobile/contact_block.tpl | 12 -
view/theme/frost-mobile/contact_edit.tpl | 93 -----
view/theme/frost-mobile/contact_head.tpl | 0
view/theme/frost-mobile/contact_template.tpl | 36 --
view/theme/frost-mobile/contacts-end.tpl | 4 -
view/theme/frost-mobile/contacts-head.tpl | 5 -
view/theme/frost-mobile/contacts-template.tpl | 28 --
.../frost-mobile/contacts-widget-sidebar.tpl | 2 -
view/theme/frost-mobile/conversation.tpl | 29 --
view/theme/frost-mobile/cropbody.tpl | 27 --
view/theme/frost-mobile/cropend.tpl | 4 -
view/theme/frost-mobile/crophead.tpl | 1 -
view/theme/frost-mobile/display-head.tpl | 4 -
view/theme/frost-mobile/end.tpl | 22 -
view/theme/frost-mobile/event.tpl | 10 -
view/theme/frost-mobile/event_end.tpl | 4 -
view/theme/frost-mobile/event_head.tpl | 6 -
view/theme/frost-mobile/field_checkbox.tpl | 6 -
view/theme/frost-mobile/field_input.tpl | 6 -
view/theme/frost-mobile/field_openid.tpl | 6 -
view/theme/frost-mobile/field_password.tpl | 6 -
view/theme/frost-mobile/field_themeselect.tpl | 9 -
.../frost-mobile/generic_links_widget.tpl | 12 -
view/theme/frost-mobile/group_drop.tpl | 9 -
view/theme/frost-mobile/head.tpl | 31 --
view/theme/frost-mobile/jot-end.tpl | 5 -
view/theme/frost-mobile/jot-header.tpl | 18 -
view/theme/frost-mobile/jot.tpl | 91 -----
view/theme/frost-mobile/jot_geotag.tpl | 11 -
view/theme/frost-mobile/lang_selector.tpl | 10 -
view/theme/frost-mobile/like_noshare.tpl | 7 -
view/theme/frost-mobile/login.tpl | 45 ---
view/theme/frost-mobile/login_head.tpl | 2 -
view/theme/frost-mobile/lostpass.tpl | 21 -
view/theme/frost-mobile/mail_conv.tpl | 18 -
view/theme/frost-mobile/mail_list.tpl | 16 -
view/theme/frost-mobile/message-end.tpl | 4 -
view/theme/frost-mobile/message-head.tpl | 0
view/theme/frost-mobile/moderated_comment.tpl | 61 ---
view/theme/frost-mobile/msg-end.tpl | 2 -
view/theme/frost-mobile/msg-header.tpl | 10 -
view/theme/frost-mobile/nav.tpl | 146 -------
view/theme/frost-mobile/photo_drop.tpl | 4 -
view/theme/frost-mobile/photo_edit.tpl | 58 ---
view/theme/frost-mobile/photo_edit_head.tpl | 7 -
view/theme/frost-mobile/photo_view.tpl | 42 --
view/theme/frost-mobile/photos_head.tpl | 5 -
view/theme/frost-mobile/photos_upload.tpl | 50 ---
view/theme/frost-mobile/profed_end.tpl | 8 -
view/theme/frost-mobile/profed_head.tpl | 5 -
view/theme/frost-mobile/profile_edit.tpl | 322 ---------------
view/theme/frost-mobile/profile_photo.tpl | 19 -
view/theme/frost-mobile/profile_vcard.tpl | 51 ---
view/theme/frost-mobile/prv_message.tpl | 39 --
view/theme/frost-mobile/register.tpl | 80 ----
view/theme/frost-mobile/search_item.tpl | 64 ---
view/theme/frost-mobile/settings-head.tpl | 5 -
view/theme/frost-mobile/settings.tpl | 147 -------
.../frost-mobile/settings_display_end.tpl | 2 -
.../frost-mobile/smarty3/acl_selector.tpl | 28 --
.../frost-mobile/smarty3/admin_aside.tpl | 36 --
.../theme/frost-mobile/smarty3/admin_site.tpl | 72 ----
.../frost-mobile/smarty3/admin_users.tpl | 103 -----
.../smarty3/categories_widget.tpl | 17 -
.../frost-mobile/smarty3/comment_item.tpl | 83 ----
.../frost-mobile/smarty3/common_tabs.tpl | 11 -
.../frost-mobile/smarty3/contact_block.tpl | 17 -
.../frost-mobile/smarty3/contact_edit.tpl | 98 -----
.../frost-mobile/smarty3/contact_head.tpl | 5 -
.../frost-mobile/smarty3/contact_template.tpl | 41 --
.../frost-mobile/smarty3/contacts-end.tpl | 9 -
.../frost-mobile/smarty3/contacts-head.tpl | 10 -
.../smarty3/contacts-template.tpl | 33 --
.../smarty3/contacts-widget-sidebar.tpl | 7 -
.../frost-mobile/smarty3/conversation.tpl | 34 --
view/theme/frost-mobile/smarty3/cropbody.tpl | 32 --
view/theme/frost-mobile/smarty3/cropend.tpl | 9 -
view/theme/frost-mobile/smarty3/crophead.tpl | 6 -
.../frost-mobile/smarty3/display-head.tpl | 9 -
view/theme/frost-mobile/smarty3/end.tpl | 27 --
view/theme/frost-mobile/smarty3/event.tpl | 15 -
view/theme/frost-mobile/smarty3/event_end.tpl | 9 -
.../theme/frost-mobile/smarty3/event_head.tpl | 11 -
.../frost-mobile/smarty3/field_checkbox.tpl | 11 -
.../frost-mobile/smarty3/field_input.tpl | 11 -
.../frost-mobile/smarty3/field_openid.tpl | 11 -
.../frost-mobile/smarty3/field_password.tpl | 11 -
.../smarty3/field_themeselect.tpl | 14 -
.../smarty3/generic_links_widget.tpl | 17 -
.../theme/frost-mobile/smarty3/group_drop.tpl | 14 -
view/theme/frost-mobile/smarty3/head.tpl | 36 --
view/theme/frost-mobile/smarty3/jot-end.tpl | 10 -
.../theme/frost-mobile/smarty3/jot-header.tpl | 23 --
view/theme/frost-mobile/smarty3/jot.tpl | 96 -----
.../theme/frost-mobile/smarty3/jot_geotag.tpl | 16 -
.../frost-mobile/smarty3/lang_selector.tpl | 15 -
.../frost-mobile/smarty3/like_noshare.tpl | 12 -
view/theme/frost-mobile/smarty3/login.tpl | 50 ---
.../theme/frost-mobile/smarty3/login_head.tpl | 7 -
view/theme/frost-mobile/smarty3/lostpass.tpl | 26 --
view/theme/frost-mobile/smarty3/mail_conv.tpl | 23 --
view/theme/frost-mobile/smarty3/mail_list.tpl | 21 -
.../frost-mobile/smarty3/message-end.tpl | 9 -
.../frost-mobile/smarty3/message-head.tpl | 5 -
.../smarty3/moderated_comment.tpl | 66 ---
view/theme/frost-mobile/smarty3/msg-end.tpl | 7 -
.../theme/frost-mobile/smarty3/msg-header.tpl | 15 -
view/theme/frost-mobile/smarty3/nav.tpl | 151 -------
.../theme/frost-mobile/smarty3/photo_drop.tpl | 9 -
.../theme/frost-mobile/smarty3/photo_edit.tpl | 63 ---
.../frost-mobile/smarty3/photo_edit_head.tpl | 12 -
.../theme/frost-mobile/smarty3/photo_view.tpl | 47 ---
.../frost-mobile/smarty3/photos_head.tpl | 10 -
.../frost-mobile/smarty3/photos_upload.tpl | 55 ---
.../theme/frost-mobile/smarty3/profed_end.tpl | 13 -
.../frost-mobile/smarty3/profed_head.tpl | 10 -
.../frost-mobile/smarty3/profile_edit.tpl | 327 ---------------
.../frost-mobile/smarty3/profile_photo.tpl | 24 --
.../frost-mobile/smarty3/profile_vcard.tpl | 56 ---
.../frost-mobile/smarty3/prv_message.tpl | 44 --
view/theme/frost-mobile/smarty3/register.tpl | 85 ----
.../frost-mobile/smarty3/search_item.tpl | 69 ----
.../frost-mobile/smarty3/settings-head.tpl | 10 -
view/theme/frost-mobile/smarty3/settings.tpl | 152 -------
.../smarty3/settings_display_end.tpl | 7 -
.../frost-mobile/smarty3/suggest_friends.tpl | 21 -
.../smarty3/threaded_conversation.tpl | 20 -
.../frost-mobile/smarty3/voting_fakelink.tpl | 6 -
.../frost-mobile/smarty3/wall_thread.tpl | 131 ------
.../frost-mobile/smarty3/wallmsg-end.tpl | 7 -
.../frost-mobile/smarty3/wallmsg-header.tpl | 12 -
view/theme/frost-mobile/suggest_friends.tpl | 16 -
.../frost-mobile/threaded_conversation.tpl | 15 -
view/theme/frost-mobile/voting_fakelink.tpl | 1 -
view/theme/frost-mobile/wall_thread.tpl | 126 ------
view/theme/frost-mobile/wallmsg-end.tpl | 2 -
view/theme/frost-mobile/wallmsg-header.tpl | 7 -
view/theme/frost/acl_selector.tpl | 23 --
view/theme/frost/admin_aside.tpl | 31 --
view/theme/frost/admin_site.tpl | 76 ----
view/theme/frost/admin_users.tpl | 98 -----
view/theme/frost/comment_item.tpl | 77 ----
view/theme/frost/contact_edit.tpl | 88 ----
view/theme/frost/contact_end.tpl | 2 -
view/theme/frost/contact_head.tpl | 4 -
view/theme/frost/contact_template.tpl | 33 --
view/theme/frost/contacts-end.tpl | 4 -
view/theme/frost/contacts-head.tpl | 5 -
view/theme/frost/contacts-template.tpl | 28 --
view/theme/frost/cropbody.tpl | 27 --
view/theme/frost/cropend.tpl | 4 -
view/theme/frost/crophead.tpl | 1 -
view/theme/frost/display-head.tpl | 4 -
view/theme/frost/end.tpl | 25 --
view/theme/frost/event.tpl | 10 -
view/theme/frost/event_end.tpl | 5 -
view/theme/frost/event_form.tpl | 50 ---
view/theme/frost/event_head.tpl | 7 -
view/theme/frost/field_combobox.tpl | 18 -
view/theme/frost/field_input.tpl | 6 -
view/theme/frost/field_openid.tpl | 6 -
view/theme/frost/field_password.tpl | 6 -
view/theme/frost/field_themeselect.tpl | 9 -
view/theme/frost/filebrowser.tpl | 84 ----
view/theme/frost/group_drop.tpl | 9 -
view/theme/frost/head.tpl | 23 --
view/theme/frost/jot-end.tpl | 3 -
view/theme/frost/jot-header.tpl | 17 -
view/theme/frost/jot.tpl | 91 -----
view/theme/frost/jot_geotag.tpl | 11 -
view/theme/frost/lang_selector.tpl | 10 -
view/theme/frost/like_noshare.tpl | 7 -
view/theme/frost/login.tpl | 45 ---
view/theme/frost/login_head.tpl | 2 -
view/theme/frost/lostpass.tpl | 21 -
view/theme/frost/mail_conv.tpl | 14 -
view/theme/frost/mail_list.tpl | 16 -
view/theme/frost/message-end.tpl | 4 -
view/theme/frost/message-head.tpl | 0
view/theme/frost/moderated_comment.tpl | 61 ---
view/theme/frost/msg-end.tpl | 3 -
view/theme/frost/msg-header.tpl | 10 -
view/theme/frost/nav.tpl | 150 -------
view/theme/frost/photo_drop.tpl | 4 -
view/theme/frost/photo_edit.tpl | 58 ---
view/theme/frost/photo_edit_head.tpl | 7 -
view/theme/frost/photo_view.tpl | 42 --
view/theme/frost/photos_head.tpl | 5 -
view/theme/frost/photos_upload.tpl | 52 ---
view/theme/frost/posted_date_widget.tpl | 9 -
view/theme/frost/profed_end.tpl | 8 -
view/theme/frost/profed_head.tpl | 5 -
view/theme/frost/profile_edit.tpl | 322 ---------------
view/theme/frost/profile_vcard.tpl | 51 ---
view/theme/frost/prv_message.tpl | 39 --
view/theme/frost/register.tpl | 80 ----
view/theme/frost/search_item.tpl | 64 ---
view/theme/frost/settings-head.tpl | 5 -
view/theme/frost/settings_display_end.tpl | 2 -
view/theme/frost/smarty3/acl_selector.tpl | 28 --
view/theme/frost/smarty3/admin_aside.tpl | 36 --
view/theme/frost/smarty3/admin_site.tpl | 81 ----
view/theme/frost/smarty3/admin_users.tpl | 103 -----
view/theme/frost/smarty3/comment_item.tpl | 82 ----
view/theme/frost/smarty3/contact_edit.tpl | 93 -----
view/theme/frost/smarty3/contact_end.tpl | 7 -
view/theme/frost/smarty3/contact_head.tpl | 9 -
view/theme/frost/smarty3/contact_template.tpl | 38 --
view/theme/frost/smarty3/contacts-end.tpl | 9 -
view/theme/frost/smarty3/contacts-head.tpl | 10 -
.../theme/frost/smarty3/contacts-template.tpl | 33 --
view/theme/frost/smarty3/cropbody.tpl | 32 --
view/theme/frost/smarty3/cropend.tpl | 9 -
view/theme/frost/smarty3/crophead.tpl | 6 -
view/theme/frost/smarty3/display-head.tpl | 9 -
view/theme/frost/smarty3/end.tpl | 30 --
view/theme/frost/smarty3/event.tpl | 15 -
view/theme/frost/smarty3/event_end.tpl | 10 -
view/theme/frost/smarty3/event_form.tpl | 55 ---
view/theme/frost/smarty3/event_head.tpl | 12 -
view/theme/frost/smarty3/field_combobox.tpl | 23 --
view/theme/frost/smarty3/field_input.tpl | 11 -
view/theme/frost/smarty3/field_openid.tpl | 11 -
view/theme/frost/smarty3/field_password.tpl | 11 -
.../theme/frost/smarty3/field_themeselect.tpl | 14 -
view/theme/frost/smarty3/filebrowser.tpl | 89 ----
view/theme/frost/smarty3/group_drop.tpl | 14 -
view/theme/frost/smarty3/head.tpl | 28 --
view/theme/frost/smarty3/jot-end.tpl | 8 -
view/theme/frost/smarty3/jot-header.tpl | 22 -
view/theme/frost/smarty3/jot.tpl | 96 -----
view/theme/frost/smarty3/jot_geotag.tpl | 16 -
view/theme/frost/smarty3/lang_selector.tpl | 15 -
view/theme/frost/smarty3/like_noshare.tpl | 12 -
view/theme/frost/smarty3/login.tpl | 50 ---
view/theme/frost/smarty3/login_head.tpl | 7 -
view/theme/frost/smarty3/lostpass.tpl | 26 --
view/theme/frost/smarty3/mail_conv.tpl | 19 -
view/theme/frost/smarty3/mail_list.tpl | 21 -
view/theme/frost/smarty3/message-end.tpl | 9 -
view/theme/frost/smarty3/message-head.tpl | 5 -
.../theme/frost/smarty3/moderated_comment.tpl | 66 ---
view/theme/frost/smarty3/msg-end.tpl | 8 -
view/theme/frost/smarty3/msg-header.tpl | 15 -
view/theme/frost/smarty3/nav.tpl | 155 -------
view/theme/frost/smarty3/photo_drop.tpl | 9 -
view/theme/frost/smarty3/photo_edit.tpl | 63 ---
view/theme/frost/smarty3/photo_edit_head.tpl | 12 -
view/theme/frost/smarty3/photo_view.tpl | 47 ---
view/theme/frost/smarty3/photos_head.tpl | 10 -
view/theme/frost/smarty3/photos_upload.tpl | 57 ---
.../frost/smarty3/posted_date_widget.tpl | 14 -
view/theme/frost/smarty3/profed_end.tpl | 13 -
view/theme/frost/smarty3/profed_head.tpl | 10 -
view/theme/frost/smarty3/profile_edit.tpl | 327 ---------------
view/theme/frost/smarty3/profile_vcard.tpl | 56 ---
view/theme/frost/smarty3/prv_message.tpl | 44 --
view/theme/frost/smarty3/register.tpl | 85 ----
view/theme/frost/smarty3/search_item.tpl | 69 ----
view/theme/frost/smarty3/settings-head.tpl | 10 -
.../frost/smarty3/settings_display_end.tpl | 7 -
view/theme/frost/smarty3/suggest_friends.tpl | 21 -
.../frost/smarty3/threaded_conversation.tpl | 33 --
view/theme/frost/smarty3/voting_fakelink.tpl | 6 -
view/theme/frost/smarty3/wall_thread.tpl | 130 ------
view/theme/frost/smarty3/wallmsg-end.tpl | 9 -
view/theme/frost/smarty3/wallmsg-header.tpl | 12 -
view/theme/frost/suggest_friends.tpl | 16 -
view/theme/frost/threaded_conversation.tpl | 28 --
view/theme/frost/voting_fakelink.tpl | 1 -
view/theme/frost/wall_thread.tpl | 125 ------
view/theme/frost/wallmsg-end.tpl | 4 -
view/theme/frost/wallmsg-header.tpl | 7 -
view/theme/quattro/birthdays_reminder.tpl | 1 -
view/theme/quattro/comment_item.tpl | 63 ---
view/theme/quattro/contact_template.tpl | 32 --
view/theme/quattro/conversation.tpl | 49 ---
view/theme/quattro/events_reminder.tpl | 39 --
view/theme/quattro/fileas_widget.tpl | 12 -
view/theme/quattro/generic_links_widget.tpl | 11 -
view/theme/quattro/group_side.tpl | 29 --
view/theme/quattro/jot.tpl | 56 ---
view/theme/quattro/mail_conv.tpl | 63 ---
view/theme/quattro/mail_display.tpl | 12 -
view/theme/quattro/mail_list.tpl | 8 -
view/theme/quattro/message_side.tpl | 10 -
view/theme/quattro/nav.tpl | 95 -----
view/theme/quattro/nets.tpl | 12 -
view/theme/quattro/photo_view.tpl | 37 --
view/theme/quattro/profile_vcard.tpl | 68 ----
view/theme/quattro/prv_message.tpl | 38 --
view/theme/quattro/saved_searches_aside.tpl | 15 -
view/theme/quattro/search_item.tpl | 93 -----
.../quattro/smarty3/birthdays_reminder.tpl | 6 -
view/theme/quattro/smarty3/comment_item.tpl | 68 ----
.../quattro/smarty3/contact_template.tpl | 37 --
view/theme/quattro/smarty3/conversation.tpl | 54 ---
.../theme/quattro/smarty3/events_reminder.tpl | 44 --
view/theme/quattro/smarty3/fileas_widget.tpl | 17 -
.../quattro/smarty3/generic_links_widget.tpl | 16 -
view/theme/quattro/smarty3/group_side.tpl | 34 --
view/theme/quattro/smarty3/jot.tpl | 61 ---
view/theme/quattro/smarty3/mail_conv.tpl | 68 ----
view/theme/quattro/smarty3/mail_display.tpl | 17 -
view/theme/quattro/smarty3/mail_list.tpl | 13 -
view/theme/quattro/smarty3/message_side.tpl | 15 -
view/theme/quattro/smarty3/nav.tpl | 100 -----
view/theme/quattro/smarty3/nets.tpl | 17 -
view/theme/quattro/smarty3/photo_view.tpl | 42 --
view/theme/quattro/smarty3/profile_vcard.tpl | 73 ----
view/theme/quattro/smarty3/prv_message.tpl | 43 --
.../quattro/smarty3/saved_searches_aside.tpl | 20 -
view/theme/quattro/smarty3/search_item.tpl | 98 -----
view/theme/quattro/smarty3/theme_settings.tpl | 37 --
.../quattro/smarty3/threaded_conversation.tpl | 45 ---
view/theme/quattro/smarty3/wall_item_tag.tpl | 72 ----
view/theme/quattro/smarty3/wall_thread.tpl | 177 --------
view/theme/quattro/theme_settings.tpl | 32 --
view/theme/quattro/threaded_conversation.tpl | 40 --
view/theme/quattro/wall_item_tag.tpl | 67 ----
view/theme/quattro/wall_thread.tpl | 172 --------
view/theme/slackr/birthdays_reminder.tpl | 8 -
view/theme/slackr/events_reminder.tpl | 39 --
.../slackr/smarty3/birthdays_reminder.tpl | 13 -
view/theme/slackr/smarty3/events_reminder.tpl | 44 --
view/theme/smoothly/bottom.tpl | 52 ---
view/theme/smoothly/follow.tpl | 8 -
view/theme/smoothly/jot-header.tpl | 374 -----------------
view/theme/smoothly/jot.tpl | 84 ----
view/theme/smoothly/lang_selector.tpl | 10 -
view/theme/smoothly/nav.tpl | 81 ----
view/theme/smoothly/search_item.tpl | 53 ---
view/theme/smoothly/smarty3/bottom.tpl | 57 ---
view/theme/smoothly/smarty3/follow.tpl | 13 -
view/theme/smoothly/smarty3/jot-header.tpl | 379 ------------------
view/theme/smoothly/smarty3/jot.tpl | 89 ----
view/theme/smoothly/smarty3/lang_selector.tpl | 15 -
view/theme/smoothly/smarty3/nav.tpl | 86 ----
view/theme/smoothly/smarty3/search_item.tpl | 58 ---
view/theme/smoothly/smarty3/wall_thread.tpl | 165 --------
view/theme/smoothly/wall_thread.tpl | 160 --------
view/theme/testbubble/comment_item.tpl | 33 --
view/theme/testbubble/group_drop.tpl | 8 -
view/theme/testbubble/group_edit.tpl | 16 -
view/theme/testbubble/group_side.tpl | 28 --
view/theme/testbubble/jot-header.tpl | 366 -----------------
view/theme/testbubble/jot.tpl | 75 ----
view/theme/testbubble/match.tpl | 13 -
view/theme/testbubble/nav.tpl | 66 ---
view/theme/testbubble/photo_album.tpl | 8 -
view/theme/testbubble/photo_top.tpl | 8 -
view/theme/testbubble/photo_view.tpl | 40 --
view/theme/testbubble/profile_entry.tpl | 11 -
view/theme/testbubble/profile_vcard.tpl | 45 ---
.../theme/testbubble/saved_searches_aside.tpl | 14 -
view/theme/testbubble/search_item.tpl | 53 ---
.../theme/testbubble/smarty3/comment_item.tpl | 38 --
view/theme/testbubble/smarty3/group_drop.tpl | 13 -
view/theme/testbubble/smarty3/group_edit.tpl | 21 -
view/theme/testbubble/smarty3/group_side.tpl | 33 --
view/theme/testbubble/smarty3/jot-header.tpl | 371 -----------------
view/theme/testbubble/smarty3/jot.tpl | 80 ----
view/theme/testbubble/smarty3/match.tpl | 18 -
view/theme/testbubble/smarty3/nav.tpl | 71 ----
view/theme/testbubble/smarty3/photo_album.tpl | 13 -
view/theme/testbubble/smarty3/photo_top.tpl | 13 -
view/theme/testbubble/smarty3/photo_view.tpl | 45 ---
.../testbubble/smarty3/profile_entry.tpl | 16 -
.../testbubble/smarty3/profile_vcard.tpl | 50 ---
.../smarty3/saved_searches_aside.tpl | 19 -
view/theme/testbubble/smarty3/search_item.tpl | 58 ---
view/theme/testbubble/smarty3/wall_thread.tpl | 112 ------
view/theme/testbubble/wall_thread.tpl | 107 -----
view/theme/vier/comment_item.tpl | 51 ---
view/theme/vier/mail_list.tpl | 8 -
view/theme/vier/nav.tpl | 145 -------
view/theme/vier/profile_edlink.tpl | 1 -
view/theme/vier/profile_vcard.tpl | 65 ---
view/theme/vier/search_item.tpl | 92 -----
view/theme/vier/smarty3/comment_item.tpl | 56 ---
view/theme/vier/smarty3/mail_list.tpl | 13 -
view/theme/vier/smarty3/nav.tpl | 150 -------
view/theme/vier/smarty3/profile_edlink.tpl | 6 -
view/theme/vier/smarty3/profile_vcard.tpl | 70 ----
view/theme/vier/smarty3/search_item.tpl | 97 -----
.../vier/smarty3/threaded_conversation.tpl | 45 ---
view/theme/vier/smarty3/wall_thread.tpl | 177 --------
view/theme/vier/threaded_conversation.tpl | 40 --
view/theme/vier/wall_thread.tpl | 172 --------
view/threaded_conversation.tpl | 16 -
view/toggle_mobile_footer.tpl | 2 -
view/uexport.tpl | 9 -
view/uimport.tpl | 13 -
view/vcard-widget.tpl | 5 -
view/viewcontact_template.tpl | 9 -
view/voting_fakelink.tpl | 1 -
view/wall_thread.tpl | 120 ------
view/wallmessage.tpl | 32 --
view/wallmsg-end.tpl | 0
view/wallmsg-header.tpl | 82 ----
view/xrd_diaspora.tpl | 3 -
view/xrd_host.tpl | 18 -
view/xrd_person.tpl | 38 --
1138 files changed, 6 insertions(+), 42288 deletions(-)
delete mode 100644 view/404.tpl
delete mode 100644 view/acl_selector.tpl
delete mode 100644 view/admin_aside.tpl
delete mode 100644 view/admin_logs.tpl
delete mode 100644 view/admin_plugins.tpl
delete mode 100644 view/admin_plugins_details.tpl
delete mode 100644 view/admin_remoteupdate.tpl
delete mode 100644 view/admin_site.tpl
delete mode 100644 view/admin_summary.tpl
delete mode 100644 view/admin_users.tpl
delete mode 100644 view/album_edit.tpl
delete mode 100644 view/api_config_xml.tpl
delete mode 100644 view/api_friends_xml.tpl
delete mode 100644 view/api_ratelimit_xml.tpl
delete mode 100644 view/api_status_xml.tpl
delete mode 100644 view/api_test_xml.tpl
delete mode 100644 view/api_timeline_atom.tpl
delete mode 100644 view/api_timeline_rss.tpl
delete mode 100644 view/api_timeline_xml.tpl
delete mode 100644 view/api_user_xml.tpl
delete mode 100644 view/apps.tpl
delete mode 100644 view/atom_feed.tpl
delete mode 100644 view/atom_feed_dfrn.tpl
delete mode 100644 view/atom_mail.tpl
delete mode 100644 view/atom_relocate.tpl
delete mode 100644 view/atom_suggest.tpl
delete mode 100644 view/auto_request.tpl
delete mode 100644 view/birthdays_reminder.tpl
delete mode 100644 view/categories_widget.tpl
delete mode 100644 view/comment_item.tpl
delete mode 100644 view/common_friends.tpl
delete mode 100644 view/common_tabs.tpl
delete mode 100644 view/confirm.tpl
delete mode 100644 view/contact_block.tpl
delete mode 100644 view/contact_edit.tpl
delete mode 100644 view/contact_end.tpl
delete mode 100644 view/contact_head.tpl
delete mode 100644 view/contact_template.tpl
delete mode 100644 view/contacts-end.tpl
delete mode 100644 view/contacts-head.tpl
delete mode 100644 view/contacts-template.tpl
delete mode 100644 view/contacts-widget-sidebar.tpl
delete mode 100644 view/content.tpl
delete mode 100644 view/conversation.tpl
delete mode 100644 view/crepair.tpl
delete mode 100644 view/cropbody.tpl
delete mode 100644 view/cropend.tpl
delete mode 100644 view/crophead.tpl
delete mode 100644 view/delegate.tpl
delete mode 100644 view/dfrn_req_confirm.tpl
delete mode 100644 view/dfrn_request.tpl
delete mode 100644 view/diasp_dec_hdr.tpl
delete mode 100644 view/diaspora_comment.tpl
delete mode 100644 view/diaspora_comment_relay.tpl
delete mode 100644 view/diaspora_conversation.tpl
delete mode 100644 view/diaspora_like.tpl
delete mode 100755 view/diaspora_like_relay.tpl
delete mode 100644 view/diaspora_message.tpl
delete mode 100644 view/diaspora_photo.tpl
delete mode 100644 view/diaspora_post.tpl
delete mode 100644 view/diaspora_profile.tpl
delete mode 100644 view/diaspora_relay_retraction.tpl
delete mode 100755 view/diaspora_relayable_retraction.tpl
delete mode 100644 view/diaspora_retract.tpl
delete mode 100644 view/diaspora_share.tpl
delete mode 100644 view/diaspora_signed_retract.tpl
delete mode 100644 view/diaspora_vcard.tpl
delete mode 100644 view/directory_header.tpl
delete mode 100644 view/directory_item.tpl
delete mode 100644 view/display-head.tpl
delete mode 100644 view/email_notify_html.tpl
delete mode 100644 view/email_notify_text.tpl
delete mode 100644 view/end.tpl
delete mode 100644 view/event.tpl
delete mode 100644 view/event_end.tpl
delete mode 100644 view/event_form.tpl
delete mode 100644 view/event_head.tpl
delete mode 100644 view/events-js.tpl
delete mode 100644 view/events.tpl
delete mode 100644 view/events_reminder.tpl
delete mode 100644 view/failed_updates.tpl
delete mode 100644 view/fake_feed.tpl
delete mode 100644 view/field.tpl
delete mode 100644 view/field_checkbox.tpl
delete mode 100644 view/field_combobox.tpl
delete mode 100644 view/field_custom.tpl
delete mode 100644 view/field_input.tpl
delete mode 100644 view/field_intcheckbox.tpl
delete mode 100644 view/field_openid.tpl
delete mode 100644 view/field_password.tpl
delete mode 100644 view/field_radio.tpl
delete mode 100644 view/field_richtext.tpl
delete mode 100644 view/field_select.tpl
delete mode 100644 view/field_select_raw.tpl
delete mode 100644 view/field_textarea.tpl
delete mode 100644 view/field_themeselect.tpl
delete mode 100644 view/field_yesno.tpl
delete mode 100644 view/fileas_widget.tpl
delete mode 100644 view/filebrowser.tpl
delete mode 100644 view/filer_dialog.tpl
delete mode 100644 view/follow.tpl
delete mode 100644 view/follow_slap.tpl
delete mode 100644 view/generic_links_widget.tpl
delete mode 100644 view/group_drop.tpl
delete mode 100644 view/group_edit.tpl
delete mode 100644 view/group_selection.tpl
delete mode 100644 view/group_side.tpl
delete mode 100644 view/groupeditor.tpl
delete mode 100644 view/head.tpl
delete mode 100644 view/hide_comments.tpl
delete mode 100644 view/install.tpl
delete mode 100644 view/install_checks.tpl
delete mode 100644 view/install_db.tpl
delete mode 100644 view/install_settings.tpl
delete mode 100644 view/intros.tpl
delete mode 100644 view/invite.tpl
delete mode 100644 view/jot-end.tpl
delete mode 100644 view/jot-header.tpl
delete mode 100644 view/jot.tpl
delete mode 100644 view/jot_geotag.tpl
delete mode 100644 view/lang_selector.tpl
delete mode 100644 view/like_noshare.tpl
delete mode 100644 view/login.tpl
delete mode 100644 view/login_head.tpl
delete mode 100644 view/logout.tpl
delete mode 100644 view/lostpass.tpl
delete mode 100644 view/magicsig.tpl
delete mode 100644 view/mail_conv.tpl
delete mode 100644 view/mail_display.tpl
delete mode 100644 view/mail_head.tpl
delete mode 100644 view/mail_list.tpl
delete mode 100644 view/maintenance.tpl
delete mode 100644 view/manage.tpl
delete mode 100644 view/match.tpl
delete mode 100644 view/message-end.tpl
delete mode 100644 view/message-head.tpl
delete mode 100644 view/message_side.tpl
delete mode 100644 view/moderated_comment.tpl
delete mode 100644 view/mood_content.tpl
delete mode 100644 view/msg-end.tpl
delete mode 100644 view/msg-header.tpl
delete mode 100644 view/nav.tpl
delete mode 100644 view/navigation.tpl
delete mode 100644 view/netfriend.tpl
delete mode 100644 view/nets.tpl
delete mode 100644 view/nogroup-template.tpl
delete mode 100644 view/notifications.tpl
delete mode 100644 view/notifications_comments_item.tpl
delete mode 100644 view/notifications_dislikes_item.tpl
delete mode 100644 view/notifications_friends_item.tpl
delete mode 100644 view/notifications_likes_item.tpl
delete mode 100644 view/notifications_network_item.tpl
delete mode 100644 view/notifications_posts_item.tpl
delete mode 100644 view/notify.tpl
delete mode 100644 view/oauth_authorize.tpl
delete mode 100644 view/oauth_authorize_done.tpl
delete mode 100755 view/oembed_video.tpl
delete mode 100644 view/oexchange_xrd.tpl
delete mode 100644 view/opensearch.tpl
delete mode 100644 view/pagetypes.tpl
delete mode 100644 view/peoplefind.tpl
delete mode 100644 view/photo_album.tpl
delete mode 100644 view/photo_drop.tpl
delete mode 100644 view/photo_edit.tpl
delete mode 100644 view/photo_edit_head.tpl
delete mode 100644 view/photo_item.tpl
delete mode 100644 view/photo_top.tpl
delete mode 100644 view/photo_view.tpl
delete mode 100644 view/photos_default_uploader_box.tpl
delete mode 100644 view/photos_default_uploader_submit.tpl
delete mode 100644 view/photos_head.tpl
delete mode 100644 view/photos_recent.tpl
delete mode 100644 view/photos_upload.tpl
delete mode 100644 view/poco_entry_xml.tpl
delete mode 100644 view/poco_xml.tpl
delete mode 100644 view/poke_content.tpl
delete mode 100644 view/posted_date_widget.tpl
delete mode 100644 view/profed_end.tpl
delete mode 100644 view/profed_head.tpl
delete mode 100644 view/profile-hide-friends.tpl
delete mode 100644 view/profile-hide-wall.tpl
delete mode 100644 view/profile-in-directory.tpl
delete mode 100644 view/profile-in-netdir.tpl
delete mode 100644 view/profile_advanced.tpl
delete mode 100644 view/profile_edit.tpl
delete mode 100644 view/profile_edlink.tpl
delete mode 100644 view/profile_entry.tpl
delete mode 100644 view/profile_listing_header.tpl
delete mode 100644 view/profile_photo.tpl
delete mode 100644 view/profile_publish.tpl
delete mode 100644 view/profile_vcard.tpl
delete mode 100644 view/prv_message.tpl
delete mode 100644 view/pwdreset.tpl
delete mode 100644 view/register.tpl
delete mode 100644 view/remote_friends_common.tpl
delete mode 100644 view/removeme.tpl
delete mode 100644 view/saved_searches_aside.tpl
delete mode 100644 view/search_item.tpl
delete mode 100644 view/settings-end.tpl
delete mode 100644 view/settings-head.tpl
delete mode 100644 view/settings.tpl
delete mode 100644 view/settings_addons.tpl
delete mode 100644 view/settings_connectors.tpl
delete mode 100644 view/settings_display.tpl
delete mode 100644 view/settings_display_end.tpl
delete mode 100644 view/settings_features.tpl
delete mode 100644 view/settings_nick_set.tpl
delete mode 100644 view/settings_nick_subdir.tpl
delete mode 100644 view/settings_oauth.tpl
delete mode 100644 view/settings_oauth_edit.tpl
delete mode 100644 view/smarty3/404.tpl
delete mode 100644 view/smarty3/acl_selector.tpl
delete mode 100644 view/smarty3/admin_aside.tpl
delete mode 100644 view/smarty3/admin_logs.tpl
delete mode 100644 view/smarty3/admin_plugins.tpl
delete mode 100644 view/smarty3/admin_plugins_details.tpl
delete mode 100644 view/smarty3/admin_remoteupdate.tpl
delete mode 100644 view/smarty3/admin_site.tpl
delete mode 100644 view/smarty3/admin_summary.tpl
delete mode 100644 view/smarty3/admin_users.tpl
delete mode 100644 view/smarty3/album_edit.tpl
delete mode 100644 view/smarty3/api_config_xml.tpl
delete mode 100644 view/smarty3/api_friends_xml.tpl
delete mode 100644 view/smarty3/api_ratelimit_xml.tpl
delete mode 100644 view/smarty3/api_status_xml.tpl
delete mode 100644 view/smarty3/api_test_xml.tpl
delete mode 100644 view/smarty3/api_timeline_atom.tpl
delete mode 100644 view/smarty3/api_timeline_rss.tpl
delete mode 100644 view/smarty3/api_timeline_xml.tpl
delete mode 100644 view/smarty3/api_user_xml.tpl
delete mode 100644 view/smarty3/apps.tpl
delete mode 100644 view/smarty3/atom_feed.tpl
delete mode 100644 view/smarty3/atom_feed_dfrn.tpl
delete mode 100644 view/smarty3/atom_mail.tpl
delete mode 100644 view/smarty3/atom_relocate.tpl
delete mode 100644 view/smarty3/atom_suggest.tpl
delete mode 100644 view/smarty3/auto_request.tpl
delete mode 100644 view/smarty3/birthdays_reminder.tpl
delete mode 100644 view/smarty3/categories_widget.tpl
delete mode 100644 view/smarty3/comment_item.tpl
delete mode 100644 view/smarty3/common_friends.tpl
delete mode 100644 view/smarty3/common_tabs.tpl
delete mode 100644 view/smarty3/confirm.tpl
delete mode 100644 view/smarty3/contact_block.tpl
delete mode 100644 view/smarty3/contact_edit.tpl
delete mode 100644 view/smarty3/contact_end.tpl
delete mode 100644 view/smarty3/contact_head.tpl
delete mode 100644 view/smarty3/contact_template.tpl
delete mode 100644 view/smarty3/contacts-end.tpl
delete mode 100644 view/smarty3/contacts-head.tpl
delete mode 100644 view/smarty3/contacts-template.tpl
delete mode 100644 view/smarty3/contacts-widget-sidebar.tpl
delete mode 100644 view/smarty3/content.tpl
delete mode 100644 view/smarty3/conversation.tpl
delete mode 100644 view/smarty3/crepair.tpl
delete mode 100644 view/smarty3/cropbody.tpl
delete mode 100644 view/smarty3/cropend.tpl
delete mode 100644 view/smarty3/crophead.tpl
delete mode 100644 view/smarty3/delegate.tpl
delete mode 100644 view/smarty3/dfrn_req_confirm.tpl
delete mode 100644 view/smarty3/dfrn_request.tpl
delete mode 100644 view/smarty3/diasp_dec_hdr.tpl
delete mode 100644 view/smarty3/diaspora_comment.tpl
delete mode 100644 view/smarty3/diaspora_comment_relay.tpl
delete mode 100644 view/smarty3/diaspora_conversation.tpl
delete mode 100644 view/smarty3/diaspora_like.tpl
delete mode 100644 view/smarty3/diaspora_like_relay.tpl
delete mode 100644 view/smarty3/diaspora_message.tpl
delete mode 100644 view/smarty3/diaspora_photo.tpl
delete mode 100644 view/smarty3/diaspora_post.tpl
delete mode 100644 view/smarty3/diaspora_profile.tpl
delete mode 100644 view/smarty3/diaspora_relay_retraction.tpl
delete mode 100644 view/smarty3/diaspora_relayable_retraction.tpl
delete mode 100644 view/smarty3/diaspora_retract.tpl
delete mode 100644 view/smarty3/diaspora_share.tpl
delete mode 100644 view/smarty3/diaspora_signed_retract.tpl
delete mode 100644 view/smarty3/diaspora_vcard.tpl
delete mode 100644 view/smarty3/directory_header.tpl
delete mode 100644 view/smarty3/directory_item.tpl
delete mode 100644 view/smarty3/display-head.tpl
delete mode 100644 view/smarty3/email_notify_html.tpl
delete mode 100644 view/smarty3/email_notify_text.tpl
delete mode 100644 view/smarty3/end.tpl
delete mode 100644 view/smarty3/event.tpl
delete mode 100644 view/smarty3/event_end.tpl
delete mode 100644 view/smarty3/event_form.tpl
delete mode 100644 view/smarty3/event_head.tpl
delete mode 100644 view/smarty3/events-js.tpl
delete mode 100644 view/smarty3/events.tpl
delete mode 100644 view/smarty3/events_reminder.tpl
delete mode 100644 view/smarty3/failed_updates.tpl
delete mode 100644 view/smarty3/fake_feed.tpl
delete mode 100644 view/smarty3/field.tpl
delete mode 100644 view/smarty3/field_checkbox.tpl
delete mode 100644 view/smarty3/field_combobox.tpl
delete mode 100644 view/smarty3/field_custom.tpl
delete mode 100644 view/smarty3/field_input.tpl
delete mode 100644 view/smarty3/field_intcheckbox.tpl
delete mode 100644 view/smarty3/field_openid.tpl
delete mode 100644 view/smarty3/field_password.tpl
delete mode 100644 view/smarty3/field_radio.tpl
delete mode 100644 view/smarty3/field_richtext.tpl
delete mode 100644 view/smarty3/field_select.tpl
delete mode 100644 view/smarty3/field_select_raw.tpl
delete mode 100644 view/smarty3/field_textarea.tpl
delete mode 100644 view/smarty3/field_themeselect.tpl
delete mode 100644 view/smarty3/field_yesno.tpl
delete mode 100644 view/smarty3/fileas_widget.tpl
delete mode 100644 view/smarty3/filebrowser.tpl
delete mode 100644 view/smarty3/filer_dialog.tpl
delete mode 100644 view/smarty3/follow.tpl
delete mode 100644 view/smarty3/follow_slap.tpl
delete mode 100644 view/smarty3/generic_links_widget.tpl
delete mode 100644 view/smarty3/group_drop.tpl
delete mode 100644 view/smarty3/group_edit.tpl
delete mode 100644 view/smarty3/group_selection.tpl
delete mode 100644 view/smarty3/group_side.tpl
delete mode 100644 view/smarty3/groupeditor.tpl
delete mode 100644 view/smarty3/head.tpl
delete mode 100644 view/smarty3/hide_comments.tpl
delete mode 100644 view/smarty3/install.tpl
delete mode 100644 view/smarty3/install_checks.tpl
delete mode 100644 view/smarty3/install_db.tpl
delete mode 100644 view/smarty3/install_settings.tpl
delete mode 100644 view/smarty3/intros.tpl
delete mode 100644 view/smarty3/invite.tpl
delete mode 100644 view/smarty3/jot-end.tpl
delete mode 100644 view/smarty3/jot-header.tpl
delete mode 100644 view/smarty3/jot.tpl
delete mode 100644 view/smarty3/jot_geotag.tpl
delete mode 100644 view/smarty3/lang_selector.tpl
delete mode 100644 view/smarty3/like_noshare.tpl
delete mode 100644 view/smarty3/login.tpl
delete mode 100644 view/smarty3/login_head.tpl
delete mode 100644 view/smarty3/logout.tpl
delete mode 100644 view/smarty3/lostpass.tpl
delete mode 100644 view/smarty3/magicsig.tpl
delete mode 100644 view/smarty3/mail_conv.tpl
delete mode 100644 view/smarty3/mail_display.tpl
delete mode 100644 view/smarty3/mail_head.tpl
delete mode 100644 view/smarty3/mail_list.tpl
delete mode 100644 view/smarty3/maintenance.tpl
delete mode 100644 view/smarty3/manage.tpl
delete mode 100644 view/smarty3/match.tpl
delete mode 100644 view/smarty3/message-end.tpl
delete mode 100644 view/smarty3/message-head.tpl
delete mode 100644 view/smarty3/message_side.tpl
delete mode 100644 view/smarty3/moderated_comment.tpl
delete mode 100644 view/smarty3/mood_content.tpl
delete mode 100644 view/smarty3/msg-end.tpl
delete mode 100644 view/smarty3/msg-header.tpl
delete mode 100644 view/smarty3/nav.tpl
delete mode 100644 view/smarty3/navigation.tpl
delete mode 100644 view/smarty3/netfriend.tpl
delete mode 100644 view/smarty3/nets.tpl
delete mode 100644 view/smarty3/nogroup-template.tpl
delete mode 100644 view/smarty3/notifications.tpl
delete mode 100644 view/smarty3/notifications_comments_item.tpl
delete mode 100644 view/smarty3/notifications_dislikes_item.tpl
delete mode 100644 view/smarty3/notifications_friends_item.tpl
delete mode 100644 view/smarty3/notifications_likes_item.tpl
delete mode 100644 view/smarty3/notifications_network_item.tpl
delete mode 100644 view/smarty3/notifications_posts_item.tpl
delete mode 100644 view/smarty3/notify.tpl
delete mode 100644 view/smarty3/oauth_authorize.tpl
delete mode 100644 view/smarty3/oauth_authorize_done.tpl
delete mode 100644 view/smarty3/oembed_video.tpl
delete mode 100644 view/smarty3/oexchange_xrd.tpl
delete mode 100644 view/smarty3/opensearch.tpl
delete mode 100644 view/smarty3/pagetypes.tpl
delete mode 100644 view/smarty3/peoplefind.tpl
delete mode 100644 view/smarty3/photo_album.tpl
delete mode 100644 view/smarty3/photo_drop.tpl
delete mode 100644 view/smarty3/photo_edit.tpl
delete mode 100644 view/smarty3/photo_edit_head.tpl
delete mode 100644 view/smarty3/photo_item.tpl
delete mode 100644 view/smarty3/photo_top.tpl
delete mode 100644 view/smarty3/photo_view.tpl
delete mode 100644 view/smarty3/photos_default_uploader_box.tpl
delete mode 100644 view/smarty3/photos_default_uploader_submit.tpl
delete mode 100644 view/smarty3/photos_head.tpl
delete mode 100644 view/smarty3/photos_recent.tpl
delete mode 100644 view/smarty3/photos_upload.tpl
delete mode 100644 view/smarty3/poco_entry_xml.tpl
delete mode 100644 view/smarty3/poco_xml.tpl
delete mode 100644 view/smarty3/poke_content.tpl
delete mode 100644 view/smarty3/posted_date_widget.tpl
delete mode 100644 view/smarty3/profed_end.tpl
delete mode 100644 view/smarty3/profed_head.tpl
delete mode 100644 view/smarty3/profile-hide-friends.tpl
delete mode 100644 view/smarty3/profile-hide-wall.tpl
delete mode 100644 view/smarty3/profile-in-directory.tpl
delete mode 100644 view/smarty3/profile-in-netdir.tpl
delete mode 100644 view/smarty3/profile_advanced.tpl
delete mode 100644 view/smarty3/profile_edit.tpl
delete mode 100644 view/smarty3/profile_edlink.tpl
delete mode 100644 view/smarty3/profile_entry.tpl
delete mode 100644 view/smarty3/profile_listing_header.tpl
delete mode 100644 view/smarty3/profile_photo.tpl
delete mode 100644 view/smarty3/profile_publish.tpl
delete mode 100644 view/smarty3/profile_vcard.tpl
delete mode 100644 view/smarty3/prv_message.tpl
delete mode 100644 view/smarty3/pwdreset.tpl
delete mode 100644 view/smarty3/register.tpl
delete mode 100644 view/smarty3/remote_friends_common.tpl
delete mode 100644 view/smarty3/removeme.tpl
delete mode 100644 view/smarty3/saved_searches_aside.tpl
delete mode 100644 view/smarty3/search_item.tpl
delete mode 100644 view/smarty3/settings-end.tpl
delete mode 100644 view/smarty3/settings-head.tpl
delete mode 100644 view/smarty3/settings.tpl
delete mode 100644 view/smarty3/settings_addons.tpl
delete mode 100644 view/smarty3/settings_connectors.tpl
delete mode 100644 view/smarty3/settings_display.tpl
delete mode 100644 view/smarty3/settings_display_end.tpl
delete mode 100644 view/smarty3/settings_features.tpl
delete mode 100644 view/smarty3/settings_nick_set.tpl
delete mode 100644 view/smarty3/settings_nick_subdir.tpl
delete mode 100644 view/smarty3/settings_oauth.tpl
delete mode 100644 view/smarty3/settings_oauth_edit.tpl
delete mode 100644 view/smarty3/suggest_friends.tpl
delete mode 100644 view/smarty3/suggestions.tpl
delete mode 100644 view/smarty3/tag_slap.tpl
delete mode 100644 view/smarty3/threaded_conversation.tpl
delete mode 100644 view/smarty3/toggle_mobile_footer.tpl
delete mode 100644 view/smarty3/uexport.tpl
delete mode 100644 view/smarty3/uimport.tpl
delete mode 100644 view/smarty3/vcard-widget.tpl
delete mode 100644 view/smarty3/viewcontact_template.tpl
delete mode 100644 view/smarty3/voting_fakelink.tpl
delete mode 100644 view/smarty3/wall_thread.tpl
delete mode 100644 view/smarty3/wallmessage.tpl
delete mode 100644 view/smarty3/wallmsg-end.tpl
delete mode 100644 view/smarty3/wallmsg-header.tpl
delete mode 100644 view/smarty3/xrd_diaspora.tpl
delete mode 100644 view/smarty3/xrd_host.tpl
delete mode 100644 view/smarty3/xrd_person.tpl
delete mode 100644 view/suggest_friends.tpl
delete mode 100644 view/suggestions.tpl
delete mode 100644 view/tag_slap.tpl
delete mode 100644 view/theme/cleanzero/nav.tpl
delete mode 100644 view/theme/cleanzero/smarty3/nav.tpl
delete mode 100644 view/theme/cleanzero/smarty3/theme_settings.tpl
delete mode 100644 view/theme/cleanzero/theme_settings.tpl
delete mode 100644 view/theme/comix-plain/comment_item.tpl
delete mode 100644 view/theme/comix-plain/search_item.tpl
delete mode 100644 view/theme/comix-plain/smarty3/comment_item.tpl
delete mode 100644 view/theme/comix-plain/smarty3/search_item.tpl
delete mode 100644 view/theme/comix/comment_item.tpl
delete mode 100644 view/theme/comix/search_item.tpl
delete mode 100644 view/theme/comix/smarty3/comment_item.tpl
delete mode 100644 view/theme/comix/smarty3/search_item.tpl
delete mode 100644 view/theme/decaf-mobile/acl_html_selector.tpl
delete mode 100644 view/theme/decaf-mobile/acl_selector.tpl
delete mode 100644 view/theme/decaf-mobile/admin_aside.tpl
delete mode 100644 view/theme/decaf-mobile/admin_site.tpl
delete mode 100644 view/theme/decaf-mobile/admin_users.tpl
delete mode 100644 view/theme/decaf-mobile/album_edit.tpl
delete mode 100644 view/theme/decaf-mobile/categories_widget.tpl
delete mode 100755 view/theme/decaf-mobile/comment_item.tpl
delete mode 100644 view/theme/decaf-mobile/common_tabs.tpl
delete mode 100644 view/theme/decaf-mobile/contact_block.tpl
delete mode 100644 view/theme/decaf-mobile/contact_edit.tpl
delete mode 100644 view/theme/decaf-mobile/contact_head.tpl
delete mode 100644 view/theme/decaf-mobile/contact_template.tpl
delete mode 100644 view/theme/decaf-mobile/contacts-end.tpl
delete mode 100644 view/theme/decaf-mobile/contacts-head.tpl
delete mode 100644 view/theme/decaf-mobile/contacts-template.tpl
delete mode 100644 view/theme/decaf-mobile/contacts-widget-sidebar.tpl
delete mode 100644 view/theme/decaf-mobile/conversation.tpl
delete mode 100644 view/theme/decaf-mobile/cropbody.tpl
delete mode 100644 view/theme/decaf-mobile/cropend.tpl
delete mode 100644 view/theme/decaf-mobile/crophead.tpl
delete mode 100644 view/theme/decaf-mobile/display-head.tpl
delete mode 100644 view/theme/decaf-mobile/end.tpl
delete mode 100644 view/theme/decaf-mobile/event_end.tpl
delete mode 100644 view/theme/decaf-mobile/event_head.tpl
delete mode 100644 view/theme/decaf-mobile/field_checkbox.tpl
delete mode 100644 view/theme/decaf-mobile/field_input.tpl
delete mode 100644 view/theme/decaf-mobile/field_openid.tpl
delete mode 100644 view/theme/decaf-mobile/field_password.tpl
delete mode 100644 view/theme/decaf-mobile/field_themeselect.tpl
delete mode 100644 view/theme/decaf-mobile/field_yesno.tpl
delete mode 100644 view/theme/decaf-mobile/generic_links_widget.tpl
delete mode 100644 view/theme/decaf-mobile/group_drop.tpl
delete mode 100644 view/theme/decaf-mobile/group_side.tpl
delete mode 100644 view/theme/decaf-mobile/head.tpl
delete mode 100644 view/theme/decaf-mobile/jot-end.tpl
delete mode 100644 view/theme/decaf-mobile/jot-header.tpl
delete mode 100644 view/theme/decaf-mobile/jot.tpl
delete mode 100644 view/theme/decaf-mobile/jot_geotag.tpl
delete mode 100644 view/theme/decaf-mobile/lang_selector.tpl
delete mode 100644 view/theme/decaf-mobile/like_noshare.tpl
delete mode 100644 view/theme/decaf-mobile/login.tpl
delete mode 100644 view/theme/decaf-mobile/login_head.tpl
delete mode 100644 view/theme/decaf-mobile/lostpass.tpl
delete mode 100644 view/theme/decaf-mobile/mail_conv.tpl
delete mode 100644 view/theme/decaf-mobile/mail_list.tpl
delete mode 100644 view/theme/decaf-mobile/manage.tpl
delete mode 100644 view/theme/decaf-mobile/message-end.tpl
delete mode 100644 view/theme/decaf-mobile/message-head.tpl
delete mode 100644 view/theme/decaf-mobile/msg-end.tpl
delete mode 100644 view/theme/decaf-mobile/msg-header.tpl
delete mode 100644 view/theme/decaf-mobile/nav.tpl
delete mode 100644 view/theme/decaf-mobile/photo_drop.tpl
delete mode 100644 view/theme/decaf-mobile/photo_edit.tpl
delete mode 100644 view/theme/decaf-mobile/photo_edit_head.tpl
delete mode 100644 view/theme/decaf-mobile/photo_view.tpl
delete mode 100644 view/theme/decaf-mobile/photos_head.tpl
delete mode 100644 view/theme/decaf-mobile/photos_upload.tpl
delete mode 100644 view/theme/decaf-mobile/profed_end.tpl
delete mode 100644 view/theme/decaf-mobile/profed_head.tpl
delete mode 100644 view/theme/decaf-mobile/profile_edit.tpl
delete mode 100644 view/theme/decaf-mobile/profile_photo.tpl
delete mode 100644 view/theme/decaf-mobile/profile_vcard.tpl
delete mode 100644 view/theme/decaf-mobile/prv_message.tpl
delete mode 100644 view/theme/decaf-mobile/register.tpl
delete mode 100644 view/theme/decaf-mobile/search_item.tpl
delete mode 100644 view/theme/decaf-mobile/settings-head.tpl
delete mode 100644 view/theme/decaf-mobile/settings.tpl
delete mode 100644 view/theme/decaf-mobile/settings_display_end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/acl_html_selector.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/acl_selector.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/admin_aside.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/admin_site.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/admin_users.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/album_edit.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/categories_widget.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/comment_item.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/common_tabs.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contact_block.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contact_edit.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contact_head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contact_template.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contacts-end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contacts-head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contacts-template.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/contacts-widget-sidebar.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/conversation.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/cropbody.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/cropend.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/crophead.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/display-head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/event_end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/event_head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/field_checkbox.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/field_input.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/field_openid.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/field_password.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/field_themeselect.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/field_yesno.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/generic_links_widget.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/group_drop.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/group_side.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/jot-end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/jot-header.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/jot.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/jot_geotag.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/lang_selector.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/like_noshare.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/login.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/login_head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/lostpass.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/mail_conv.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/mail_list.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/manage.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/message-end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/message-head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/moderated_comment.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/msg-end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/msg-header.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/nav.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/photo_drop.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/photo_edit.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/photo_edit_head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/photo_view.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/photos_head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/photos_upload.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/profed_end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/profed_head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/profile_edit.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/profile_photo.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/prv_message.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/register.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/search_item.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/settings-head.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/settings.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/settings_display_end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/suggest_friends.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/threaded_conversation.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/voting_fakelink.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/wall_thread.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/wall_thread_toponly.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/wallmessage.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/wallmsg-end.tpl
delete mode 100644 view/theme/decaf-mobile/smarty3/wallmsg-header.tpl
delete mode 100644 view/theme/decaf-mobile/suggest_friends.tpl
delete mode 100644 view/theme/decaf-mobile/threaded_conversation.tpl
delete mode 100644 view/theme/decaf-mobile/voting_fakelink.tpl
delete mode 100644 view/theme/decaf-mobile/wall_thread.tpl
delete mode 100644 view/theme/decaf-mobile/wall_thread_toponly.tpl
delete mode 100644 view/theme/decaf-mobile/wallmessage.tpl
delete mode 100644 view/theme/decaf-mobile/wallmsg-end.tpl
delete mode 100644 view/theme/decaf-mobile/wallmsg-header.tpl
delete mode 100644 view/theme/diabook/admin_users.tpl
delete mode 100644 view/theme/diabook/bottom.tpl
delete mode 100644 view/theme/diabook/ch_directory_item.tpl
delete mode 100644 view/theme/diabook/comment_item.tpl
delete mode 100644 view/theme/diabook/communityhome.tpl
delete mode 100644 view/theme/diabook/contact_template.tpl
delete mode 100644 view/theme/diabook/directory_item.tpl
delete mode 100644 view/theme/diabook/footer.tpl
delete mode 100644 view/theme/diabook/generic_links_widget.tpl
delete mode 100644 view/theme/diabook/group_side.tpl
delete mode 100644 view/theme/diabook/jot.tpl
delete mode 100644 view/theme/diabook/login.tpl
delete mode 100644 view/theme/diabook/mail_conv.tpl
delete mode 100644 view/theme/diabook/mail_display.tpl
delete mode 100644 view/theme/diabook/mail_list.tpl
delete mode 100644 view/theme/diabook/message_side.tpl
delete mode 100644 view/theme/diabook/nav.tpl
delete mode 100644 view/theme/diabook/nets.tpl
delete mode 100644 view/theme/diabook/oembed_video.tpl
delete mode 100644 view/theme/diabook/photo_item.tpl
delete mode 100644 view/theme/diabook/photo_view.tpl
delete mode 100644 view/theme/diabook/profile_side.tpl
delete mode 100644 view/theme/diabook/profile_vcard.tpl
delete mode 100644 view/theme/diabook/prv_message.tpl
delete mode 100644 view/theme/diabook/right_aside.tpl
delete mode 100644 view/theme/diabook/search_item.tpl
delete mode 100644 view/theme/diabook/smarty3/admin_users.tpl
delete mode 100644 view/theme/diabook/smarty3/bottom.tpl
delete mode 100644 view/theme/diabook/smarty3/ch_directory_item.tpl
delete mode 100644 view/theme/diabook/smarty3/comment_item.tpl
delete mode 100644 view/theme/diabook/smarty3/communityhome.tpl
delete mode 100644 view/theme/diabook/smarty3/contact_template.tpl
delete mode 100644 view/theme/diabook/smarty3/directory_item.tpl
delete mode 100644 view/theme/diabook/smarty3/footer.tpl
delete mode 100644 view/theme/diabook/smarty3/generic_links_widget.tpl
delete mode 100644 view/theme/diabook/smarty3/group_side.tpl
delete mode 100644 view/theme/diabook/smarty3/jot.tpl
delete mode 100644 view/theme/diabook/smarty3/login.tpl
delete mode 100644 view/theme/diabook/smarty3/mail_conv.tpl
delete mode 100644 view/theme/diabook/smarty3/mail_display.tpl
delete mode 100644 view/theme/diabook/smarty3/mail_list.tpl
delete mode 100644 view/theme/diabook/smarty3/message_side.tpl
delete mode 100644 view/theme/diabook/smarty3/nav.tpl
delete mode 100644 view/theme/diabook/smarty3/nets.tpl
delete mode 100644 view/theme/diabook/smarty3/oembed_video.tpl
delete mode 100644 view/theme/diabook/smarty3/photo_item.tpl
delete mode 100644 view/theme/diabook/smarty3/photo_view.tpl
delete mode 100644 view/theme/diabook/smarty3/profile_side.tpl
delete mode 100644 view/theme/diabook/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/diabook/smarty3/prv_message.tpl
delete mode 100644 view/theme/diabook/smarty3/right_aside.tpl
delete mode 100644 view/theme/diabook/smarty3/search_item.tpl
delete mode 100644 view/theme/diabook/smarty3/theme_settings.tpl
delete mode 100644 view/theme/diabook/smarty3/wall_thread.tpl
delete mode 100644 view/theme/diabook/theme_settings.tpl
delete mode 100644 view/theme/diabook/wall_thread.tpl
delete mode 100644 view/theme/dispy/bottom.tpl
delete mode 100644 view/theme/dispy/comment_item.tpl
delete mode 100644 view/theme/dispy/communityhome.tpl
delete mode 100644 view/theme/dispy/contact_template.tpl
delete mode 100644 view/theme/dispy/conversation.tpl
delete mode 100644 view/theme/dispy/group_side.tpl
delete mode 100644 view/theme/dispy/header.tpl
delete mode 100644 view/theme/dispy/jot-header.tpl
delete mode 100644 view/theme/dispy/jot.tpl
delete mode 100644 view/theme/dispy/lang_selector.tpl
delete mode 100644 view/theme/dispy/mail_head.tpl
delete mode 100644 view/theme/dispy/nav.tpl
delete mode 100644 view/theme/dispy/photo_edit.tpl
delete mode 100644 view/theme/dispy/photo_view.tpl
delete mode 100644 view/theme/dispy/profile_vcard.tpl
delete mode 100644 view/theme/dispy/saved_searches_aside.tpl
delete mode 100644 view/theme/dispy/search_item.tpl
delete mode 100644 view/theme/dispy/smarty3/bottom.tpl
delete mode 100644 view/theme/dispy/smarty3/comment_item.tpl
delete mode 100644 view/theme/dispy/smarty3/communityhome.tpl
delete mode 100644 view/theme/dispy/smarty3/contact_template.tpl
delete mode 100644 view/theme/dispy/smarty3/conversation.tpl
delete mode 100644 view/theme/dispy/smarty3/group_side.tpl
delete mode 100644 view/theme/dispy/smarty3/header.tpl
delete mode 100644 view/theme/dispy/smarty3/jot-header.tpl
delete mode 100644 view/theme/dispy/smarty3/jot.tpl
delete mode 100644 view/theme/dispy/smarty3/lang_selector.tpl
delete mode 100644 view/theme/dispy/smarty3/mail_head.tpl
delete mode 100644 view/theme/dispy/smarty3/nav.tpl
delete mode 100644 view/theme/dispy/smarty3/photo_edit.tpl
delete mode 100644 view/theme/dispy/smarty3/photo_view.tpl
delete mode 100644 view/theme/dispy/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/dispy/smarty3/saved_searches_aside.tpl
delete mode 100644 view/theme/dispy/smarty3/search_item.tpl
delete mode 100644 view/theme/dispy/smarty3/theme_settings.tpl
delete mode 100644 view/theme/dispy/smarty3/threaded_conversation.tpl
delete mode 100644 view/theme/dispy/smarty3/wall_thread.tpl
delete mode 100644 view/theme/dispy/theme_settings.tpl
delete mode 100644 view/theme/dispy/threaded_conversation.tpl
delete mode 100644 view/theme/dispy/wall_thread.tpl
delete mode 100755 view/theme/duepuntozero/comment_item.tpl
delete mode 100644 view/theme/duepuntozero/lang_selector.tpl
delete mode 100755 view/theme/duepuntozero/moderated_comment.tpl
delete mode 100644 view/theme/duepuntozero/nav.tpl
delete mode 100644 view/theme/duepuntozero/profile_vcard.tpl
delete mode 100644 view/theme/duepuntozero/prv_message.tpl
delete mode 100644 view/theme/duepuntozero/smarty3/comment_item.tpl
delete mode 100644 view/theme/duepuntozero/smarty3/lang_selector.tpl
delete mode 100644 view/theme/duepuntozero/smarty3/moderated_comment.tpl
delete mode 100644 view/theme/duepuntozero/smarty3/nav.tpl
delete mode 100644 view/theme/duepuntozero/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/duepuntozero/smarty3/prv_message.tpl
delete mode 100644 view/theme/facepark/comment_item.tpl
delete mode 100644 view/theme/facepark/group_side.tpl
delete mode 100644 view/theme/facepark/jot.tpl
delete mode 100644 view/theme/facepark/nav.tpl
delete mode 100644 view/theme/facepark/profile_vcard.tpl
delete mode 100644 view/theme/facepark/search_item.tpl
delete mode 100644 view/theme/facepark/smarty3/comment_item.tpl
delete mode 100644 view/theme/facepark/smarty3/group_side.tpl
delete mode 100644 view/theme/facepark/smarty3/jot.tpl
delete mode 100644 view/theme/facepark/smarty3/nav.tpl
delete mode 100644 view/theme/facepark/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/facepark/smarty3/search_item.tpl
delete mode 100644 view/theme/frost-mobile/acl_selector.tpl
delete mode 100644 view/theme/frost-mobile/admin_aside.tpl
delete mode 100644 view/theme/frost-mobile/admin_site.tpl
delete mode 100644 view/theme/frost-mobile/admin_users.tpl
delete mode 100644 view/theme/frost-mobile/categories_widget.tpl
delete mode 100755 view/theme/frost-mobile/comment_item.tpl
delete mode 100644 view/theme/frost-mobile/common_tabs.tpl
delete mode 100644 view/theme/frost-mobile/contact_block.tpl
delete mode 100644 view/theme/frost-mobile/contact_edit.tpl
delete mode 100644 view/theme/frost-mobile/contact_head.tpl
delete mode 100644 view/theme/frost-mobile/contact_template.tpl
delete mode 100644 view/theme/frost-mobile/contacts-end.tpl
delete mode 100644 view/theme/frost-mobile/contacts-head.tpl
delete mode 100644 view/theme/frost-mobile/contacts-template.tpl
delete mode 100644 view/theme/frost-mobile/contacts-widget-sidebar.tpl
delete mode 100644 view/theme/frost-mobile/conversation.tpl
delete mode 100644 view/theme/frost-mobile/cropbody.tpl
delete mode 100644 view/theme/frost-mobile/cropend.tpl
delete mode 100644 view/theme/frost-mobile/crophead.tpl
delete mode 100644 view/theme/frost-mobile/display-head.tpl
delete mode 100644 view/theme/frost-mobile/end.tpl
delete mode 100644 view/theme/frost-mobile/event.tpl
delete mode 100644 view/theme/frost-mobile/event_end.tpl
delete mode 100644 view/theme/frost-mobile/event_head.tpl
delete mode 100644 view/theme/frost-mobile/field_checkbox.tpl
delete mode 100644 view/theme/frost-mobile/field_input.tpl
delete mode 100644 view/theme/frost-mobile/field_openid.tpl
delete mode 100644 view/theme/frost-mobile/field_password.tpl
delete mode 100644 view/theme/frost-mobile/field_themeselect.tpl
delete mode 100644 view/theme/frost-mobile/generic_links_widget.tpl
delete mode 100644 view/theme/frost-mobile/group_drop.tpl
delete mode 100644 view/theme/frost-mobile/head.tpl
delete mode 100644 view/theme/frost-mobile/jot-end.tpl
delete mode 100644 view/theme/frost-mobile/jot-header.tpl
delete mode 100644 view/theme/frost-mobile/jot.tpl
delete mode 100644 view/theme/frost-mobile/jot_geotag.tpl
delete mode 100644 view/theme/frost-mobile/lang_selector.tpl
delete mode 100644 view/theme/frost-mobile/like_noshare.tpl
delete mode 100644 view/theme/frost-mobile/login.tpl
delete mode 100644 view/theme/frost-mobile/login_head.tpl
delete mode 100644 view/theme/frost-mobile/lostpass.tpl
delete mode 100644 view/theme/frost-mobile/mail_conv.tpl
delete mode 100644 view/theme/frost-mobile/mail_list.tpl
delete mode 100644 view/theme/frost-mobile/message-end.tpl
delete mode 100644 view/theme/frost-mobile/message-head.tpl
delete mode 100755 view/theme/frost-mobile/moderated_comment.tpl
delete mode 100644 view/theme/frost-mobile/msg-end.tpl
delete mode 100644 view/theme/frost-mobile/msg-header.tpl
delete mode 100644 view/theme/frost-mobile/nav.tpl
delete mode 100644 view/theme/frost-mobile/photo_drop.tpl
delete mode 100644 view/theme/frost-mobile/photo_edit.tpl
delete mode 100644 view/theme/frost-mobile/photo_edit_head.tpl
delete mode 100644 view/theme/frost-mobile/photo_view.tpl
delete mode 100644 view/theme/frost-mobile/photos_head.tpl
delete mode 100644 view/theme/frost-mobile/photos_upload.tpl
delete mode 100644 view/theme/frost-mobile/profed_end.tpl
delete mode 100644 view/theme/frost-mobile/profed_head.tpl
delete mode 100644 view/theme/frost-mobile/profile_edit.tpl
delete mode 100644 view/theme/frost-mobile/profile_photo.tpl
delete mode 100644 view/theme/frost-mobile/profile_vcard.tpl
delete mode 100644 view/theme/frost-mobile/prv_message.tpl
delete mode 100644 view/theme/frost-mobile/register.tpl
delete mode 100644 view/theme/frost-mobile/search_item.tpl
delete mode 100644 view/theme/frost-mobile/settings-head.tpl
delete mode 100644 view/theme/frost-mobile/settings.tpl
delete mode 100644 view/theme/frost-mobile/settings_display_end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/acl_selector.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/admin_aside.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/admin_site.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/admin_users.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/categories_widget.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/comment_item.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/common_tabs.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contact_block.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contact_edit.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contact_head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contact_template.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contacts-end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contacts-head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contacts-template.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/contacts-widget-sidebar.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/conversation.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/cropbody.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/cropend.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/crophead.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/display-head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/event.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/event_end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/event_head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/field_checkbox.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/field_input.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/field_openid.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/field_password.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/field_themeselect.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/generic_links_widget.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/group_drop.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/jot-end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/jot-header.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/jot.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/jot_geotag.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/lang_selector.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/like_noshare.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/login.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/login_head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/lostpass.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/mail_conv.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/mail_list.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/message-end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/message-head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/moderated_comment.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/msg-end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/msg-header.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/nav.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/photo_drop.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/photo_edit.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/photo_edit_head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/photo_view.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/photos_head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/photos_upload.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/profed_end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/profed_head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/profile_edit.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/profile_photo.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/prv_message.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/register.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/search_item.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/settings-head.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/settings.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/settings_display_end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/suggest_friends.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/threaded_conversation.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/voting_fakelink.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/wall_thread.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/wallmsg-end.tpl
delete mode 100644 view/theme/frost-mobile/smarty3/wallmsg-header.tpl
delete mode 100644 view/theme/frost-mobile/suggest_friends.tpl
delete mode 100644 view/theme/frost-mobile/threaded_conversation.tpl
delete mode 100644 view/theme/frost-mobile/voting_fakelink.tpl
delete mode 100644 view/theme/frost-mobile/wall_thread.tpl
delete mode 100644 view/theme/frost-mobile/wallmsg-end.tpl
delete mode 100644 view/theme/frost-mobile/wallmsg-header.tpl
delete mode 100644 view/theme/frost/acl_selector.tpl
delete mode 100644 view/theme/frost/admin_aside.tpl
delete mode 100644 view/theme/frost/admin_site.tpl
delete mode 100644 view/theme/frost/admin_users.tpl
delete mode 100755 view/theme/frost/comment_item.tpl
delete mode 100644 view/theme/frost/contact_edit.tpl
delete mode 100644 view/theme/frost/contact_end.tpl
delete mode 100644 view/theme/frost/contact_head.tpl
delete mode 100644 view/theme/frost/contact_template.tpl
delete mode 100644 view/theme/frost/contacts-end.tpl
delete mode 100644 view/theme/frost/contacts-head.tpl
delete mode 100644 view/theme/frost/contacts-template.tpl
delete mode 100644 view/theme/frost/cropbody.tpl
delete mode 100644 view/theme/frost/cropend.tpl
delete mode 100644 view/theme/frost/crophead.tpl
delete mode 100644 view/theme/frost/display-head.tpl
delete mode 100644 view/theme/frost/end.tpl
delete mode 100644 view/theme/frost/event.tpl
delete mode 100644 view/theme/frost/event_end.tpl
delete mode 100644 view/theme/frost/event_form.tpl
delete mode 100644 view/theme/frost/event_head.tpl
delete mode 100644 view/theme/frost/field_combobox.tpl
delete mode 100644 view/theme/frost/field_input.tpl
delete mode 100644 view/theme/frost/field_openid.tpl
delete mode 100644 view/theme/frost/field_password.tpl
delete mode 100644 view/theme/frost/field_themeselect.tpl
delete mode 100644 view/theme/frost/filebrowser.tpl
delete mode 100644 view/theme/frost/group_drop.tpl
delete mode 100644 view/theme/frost/head.tpl
delete mode 100644 view/theme/frost/jot-end.tpl
delete mode 100644 view/theme/frost/jot-header.tpl
delete mode 100644 view/theme/frost/jot.tpl
delete mode 100644 view/theme/frost/jot_geotag.tpl
delete mode 100644 view/theme/frost/lang_selector.tpl
delete mode 100644 view/theme/frost/like_noshare.tpl
delete mode 100644 view/theme/frost/login.tpl
delete mode 100644 view/theme/frost/login_head.tpl
delete mode 100644 view/theme/frost/lostpass.tpl
delete mode 100644 view/theme/frost/mail_conv.tpl
delete mode 100644 view/theme/frost/mail_list.tpl
delete mode 100644 view/theme/frost/message-end.tpl
delete mode 100644 view/theme/frost/message-head.tpl
delete mode 100755 view/theme/frost/moderated_comment.tpl
delete mode 100644 view/theme/frost/msg-end.tpl
delete mode 100644 view/theme/frost/msg-header.tpl
delete mode 100644 view/theme/frost/nav.tpl
delete mode 100644 view/theme/frost/photo_drop.tpl
delete mode 100644 view/theme/frost/photo_edit.tpl
delete mode 100644 view/theme/frost/photo_edit_head.tpl
delete mode 100644 view/theme/frost/photo_view.tpl
delete mode 100644 view/theme/frost/photos_head.tpl
delete mode 100644 view/theme/frost/photos_upload.tpl
delete mode 100644 view/theme/frost/posted_date_widget.tpl
delete mode 100644 view/theme/frost/profed_end.tpl
delete mode 100644 view/theme/frost/profed_head.tpl
delete mode 100644 view/theme/frost/profile_edit.tpl
delete mode 100644 view/theme/frost/profile_vcard.tpl
delete mode 100644 view/theme/frost/prv_message.tpl
delete mode 100644 view/theme/frost/register.tpl
delete mode 100644 view/theme/frost/search_item.tpl
delete mode 100644 view/theme/frost/settings-head.tpl
delete mode 100644 view/theme/frost/settings_display_end.tpl
delete mode 100644 view/theme/frost/smarty3/acl_selector.tpl
delete mode 100644 view/theme/frost/smarty3/admin_aside.tpl
delete mode 100644 view/theme/frost/smarty3/admin_site.tpl
delete mode 100644 view/theme/frost/smarty3/admin_users.tpl
delete mode 100644 view/theme/frost/smarty3/comment_item.tpl
delete mode 100644 view/theme/frost/smarty3/contact_edit.tpl
delete mode 100644 view/theme/frost/smarty3/contact_end.tpl
delete mode 100644 view/theme/frost/smarty3/contact_head.tpl
delete mode 100644 view/theme/frost/smarty3/contact_template.tpl
delete mode 100644 view/theme/frost/smarty3/contacts-end.tpl
delete mode 100644 view/theme/frost/smarty3/contacts-head.tpl
delete mode 100644 view/theme/frost/smarty3/contacts-template.tpl
delete mode 100644 view/theme/frost/smarty3/cropbody.tpl
delete mode 100644 view/theme/frost/smarty3/cropend.tpl
delete mode 100644 view/theme/frost/smarty3/crophead.tpl
delete mode 100644 view/theme/frost/smarty3/display-head.tpl
delete mode 100644 view/theme/frost/smarty3/end.tpl
delete mode 100644 view/theme/frost/smarty3/event.tpl
delete mode 100644 view/theme/frost/smarty3/event_end.tpl
delete mode 100644 view/theme/frost/smarty3/event_form.tpl
delete mode 100644 view/theme/frost/smarty3/event_head.tpl
delete mode 100644 view/theme/frost/smarty3/field_combobox.tpl
delete mode 100644 view/theme/frost/smarty3/field_input.tpl
delete mode 100644 view/theme/frost/smarty3/field_openid.tpl
delete mode 100644 view/theme/frost/smarty3/field_password.tpl
delete mode 100644 view/theme/frost/smarty3/field_themeselect.tpl
delete mode 100644 view/theme/frost/smarty3/filebrowser.tpl
delete mode 100644 view/theme/frost/smarty3/group_drop.tpl
delete mode 100644 view/theme/frost/smarty3/head.tpl
delete mode 100644 view/theme/frost/smarty3/jot-end.tpl
delete mode 100644 view/theme/frost/smarty3/jot-header.tpl
delete mode 100644 view/theme/frost/smarty3/jot.tpl
delete mode 100644 view/theme/frost/smarty3/jot_geotag.tpl
delete mode 100644 view/theme/frost/smarty3/lang_selector.tpl
delete mode 100644 view/theme/frost/smarty3/like_noshare.tpl
delete mode 100644 view/theme/frost/smarty3/login.tpl
delete mode 100644 view/theme/frost/smarty3/login_head.tpl
delete mode 100644 view/theme/frost/smarty3/lostpass.tpl
delete mode 100644 view/theme/frost/smarty3/mail_conv.tpl
delete mode 100644 view/theme/frost/smarty3/mail_list.tpl
delete mode 100644 view/theme/frost/smarty3/message-end.tpl
delete mode 100644 view/theme/frost/smarty3/message-head.tpl
delete mode 100644 view/theme/frost/smarty3/moderated_comment.tpl
delete mode 100644 view/theme/frost/smarty3/msg-end.tpl
delete mode 100644 view/theme/frost/smarty3/msg-header.tpl
delete mode 100644 view/theme/frost/smarty3/nav.tpl
delete mode 100644 view/theme/frost/smarty3/photo_drop.tpl
delete mode 100644 view/theme/frost/smarty3/photo_edit.tpl
delete mode 100644 view/theme/frost/smarty3/photo_edit_head.tpl
delete mode 100644 view/theme/frost/smarty3/photo_view.tpl
delete mode 100644 view/theme/frost/smarty3/photos_head.tpl
delete mode 100644 view/theme/frost/smarty3/photos_upload.tpl
delete mode 100644 view/theme/frost/smarty3/posted_date_widget.tpl
delete mode 100644 view/theme/frost/smarty3/profed_end.tpl
delete mode 100644 view/theme/frost/smarty3/profed_head.tpl
delete mode 100644 view/theme/frost/smarty3/profile_edit.tpl
delete mode 100644 view/theme/frost/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/frost/smarty3/prv_message.tpl
delete mode 100644 view/theme/frost/smarty3/register.tpl
delete mode 100644 view/theme/frost/smarty3/search_item.tpl
delete mode 100644 view/theme/frost/smarty3/settings-head.tpl
delete mode 100644 view/theme/frost/smarty3/settings_display_end.tpl
delete mode 100644 view/theme/frost/smarty3/suggest_friends.tpl
delete mode 100644 view/theme/frost/smarty3/threaded_conversation.tpl
delete mode 100644 view/theme/frost/smarty3/voting_fakelink.tpl
delete mode 100644 view/theme/frost/smarty3/wall_thread.tpl
delete mode 100644 view/theme/frost/smarty3/wallmsg-end.tpl
delete mode 100644 view/theme/frost/smarty3/wallmsg-header.tpl
delete mode 100644 view/theme/frost/suggest_friends.tpl
delete mode 100644 view/theme/frost/threaded_conversation.tpl
delete mode 100644 view/theme/frost/voting_fakelink.tpl
delete mode 100644 view/theme/frost/wall_thread.tpl
delete mode 100644 view/theme/frost/wallmsg-end.tpl
delete mode 100644 view/theme/frost/wallmsg-header.tpl
delete mode 100644 view/theme/quattro/birthdays_reminder.tpl
delete mode 100644 view/theme/quattro/comment_item.tpl
delete mode 100644 view/theme/quattro/contact_template.tpl
delete mode 100644 view/theme/quattro/conversation.tpl
delete mode 100644 view/theme/quattro/events_reminder.tpl
delete mode 100644 view/theme/quattro/fileas_widget.tpl
delete mode 100644 view/theme/quattro/generic_links_widget.tpl
delete mode 100644 view/theme/quattro/group_side.tpl
delete mode 100644 view/theme/quattro/jot.tpl
delete mode 100644 view/theme/quattro/mail_conv.tpl
delete mode 100644 view/theme/quattro/mail_display.tpl
delete mode 100644 view/theme/quattro/mail_list.tpl
delete mode 100644 view/theme/quattro/message_side.tpl
delete mode 100644 view/theme/quattro/nav.tpl
delete mode 100644 view/theme/quattro/nets.tpl
delete mode 100644 view/theme/quattro/photo_view.tpl
delete mode 100644 view/theme/quattro/profile_vcard.tpl
delete mode 100644 view/theme/quattro/prv_message.tpl
delete mode 100644 view/theme/quattro/saved_searches_aside.tpl
delete mode 100644 view/theme/quattro/search_item.tpl
delete mode 100644 view/theme/quattro/smarty3/birthdays_reminder.tpl
delete mode 100644 view/theme/quattro/smarty3/comment_item.tpl
delete mode 100644 view/theme/quattro/smarty3/contact_template.tpl
delete mode 100644 view/theme/quattro/smarty3/conversation.tpl
delete mode 100644 view/theme/quattro/smarty3/events_reminder.tpl
delete mode 100644 view/theme/quattro/smarty3/fileas_widget.tpl
delete mode 100644 view/theme/quattro/smarty3/generic_links_widget.tpl
delete mode 100644 view/theme/quattro/smarty3/group_side.tpl
delete mode 100644 view/theme/quattro/smarty3/jot.tpl
delete mode 100644 view/theme/quattro/smarty3/mail_conv.tpl
delete mode 100644 view/theme/quattro/smarty3/mail_display.tpl
delete mode 100644 view/theme/quattro/smarty3/mail_list.tpl
delete mode 100644 view/theme/quattro/smarty3/message_side.tpl
delete mode 100644 view/theme/quattro/smarty3/nav.tpl
delete mode 100644 view/theme/quattro/smarty3/nets.tpl
delete mode 100644 view/theme/quattro/smarty3/photo_view.tpl
delete mode 100644 view/theme/quattro/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/quattro/smarty3/prv_message.tpl
delete mode 100644 view/theme/quattro/smarty3/saved_searches_aside.tpl
delete mode 100644 view/theme/quattro/smarty3/search_item.tpl
delete mode 100644 view/theme/quattro/smarty3/theme_settings.tpl
delete mode 100644 view/theme/quattro/smarty3/threaded_conversation.tpl
delete mode 100644 view/theme/quattro/smarty3/wall_item_tag.tpl
delete mode 100644 view/theme/quattro/smarty3/wall_thread.tpl
delete mode 100644 view/theme/quattro/theme_settings.tpl
delete mode 100644 view/theme/quattro/threaded_conversation.tpl
delete mode 100644 view/theme/quattro/wall_item_tag.tpl
delete mode 100644 view/theme/quattro/wall_thread.tpl
delete mode 100644 view/theme/slackr/birthdays_reminder.tpl
delete mode 100644 view/theme/slackr/events_reminder.tpl
delete mode 100644 view/theme/slackr/smarty3/birthdays_reminder.tpl
delete mode 100644 view/theme/slackr/smarty3/events_reminder.tpl
delete mode 100644 view/theme/smoothly/bottom.tpl
delete mode 100644 view/theme/smoothly/follow.tpl
delete mode 100644 view/theme/smoothly/jot-header.tpl
delete mode 100644 view/theme/smoothly/jot.tpl
delete mode 100644 view/theme/smoothly/lang_selector.tpl
delete mode 100644 view/theme/smoothly/nav.tpl
delete mode 100644 view/theme/smoothly/search_item.tpl
delete mode 100644 view/theme/smoothly/smarty3/bottom.tpl
delete mode 100644 view/theme/smoothly/smarty3/follow.tpl
delete mode 100644 view/theme/smoothly/smarty3/jot-header.tpl
delete mode 100644 view/theme/smoothly/smarty3/jot.tpl
delete mode 100644 view/theme/smoothly/smarty3/lang_selector.tpl
delete mode 100644 view/theme/smoothly/smarty3/nav.tpl
delete mode 100644 view/theme/smoothly/smarty3/search_item.tpl
delete mode 100644 view/theme/smoothly/smarty3/wall_thread.tpl
delete mode 100644 view/theme/smoothly/wall_thread.tpl
delete mode 100644 view/theme/testbubble/comment_item.tpl
delete mode 100644 view/theme/testbubble/group_drop.tpl
delete mode 100644 view/theme/testbubble/group_edit.tpl
delete mode 100644 view/theme/testbubble/group_side.tpl
delete mode 100644 view/theme/testbubble/jot-header.tpl
delete mode 100644 view/theme/testbubble/jot.tpl
delete mode 100644 view/theme/testbubble/match.tpl
delete mode 100644 view/theme/testbubble/nav.tpl
delete mode 100644 view/theme/testbubble/photo_album.tpl
delete mode 100644 view/theme/testbubble/photo_top.tpl
delete mode 100644 view/theme/testbubble/photo_view.tpl
delete mode 100644 view/theme/testbubble/profile_entry.tpl
delete mode 100644 view/theme/testbubble/profile_vcard.tpl
delete mode 100644 view/theme/testbubble/saved_searches_aside.tpl
delete mode 100644 view/theme/testbubble/search_item.tpl
delete mode 100644 view/theme/testbubble/smarty3/comment_item.tpl
delete mode 100644 view/theme/testbubble/smarty3/group_drop.tpl
delete mode 100644 view/theme/testbubble/smarty3/group_edit.tpl
delete mode 100644 view/theme/testbubble/smarty3/group_side.tpl
delete mode 100644 view/theme/testbubble/smarty3/jot-header.tpl
delete mode 100644 view/theme/testbubble/smarty3/jot.tpl
delete mode 100644 view/theme/testbubble/smarty3/match.tpl
delete mode 100644 view/theme/testbubble/smarty3/nav.tpl
delete mode 100644 view/theme/testbubble/smarty3/photo_album.tpl
delete mode 100644 view/theme/testbubble/smarty3/photo_top.tpl
delete mode 100644 view/theme/testbubble/smarty3/photo_view.tpl
delete mode 100644 view/theme/testbubble/smarty3/profile_entry.tpl
delete mode 100644 view/theme/testbubble/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/testbubble/smarty3/saved_searches_aside.tpl
delete mode 100644 view/theme/testbubble/smarty3/search_item.tpl
delete mode 100644 view/theme/testbubble/smarty3/wall_thread.tpl
delete mode 100644 view/theme/testbubble/wall_thread.tpl
delete mode 100644 view/theme/vier/comment_item.tpl
delete mode 100644 view/theme/vier/mail_list.tpl
delete mode 100644 view/theme/vier/nav.tpl
delete mode 100644 view/theme/vier/profile_edlink.tpl
delete mode 100644 view/theme/vier/profile_vcard.tpl
delete mode 100644 view/theme/vier/search_item.tpl
delete mode 100644 view/theme/vier/smarty3/comment_item.tpl
delete mode 100644 view/theme/vier/smarty3/mail_list.tpl
delete mode 100644 view/theme/vier/smarty3/nav.tpl
delete mode 100644 view/theme/vier/smarty3/profile_edlink.tpl
delete mode 100644 view/theme/vier/smarty3/profile_vcard.tpl
delete mode 100644 view/theme/vier/smarty3/search_item.tpl
delete mode 100644 view/theme/vier/smarty3/threaded_conversation.tpl
delete mode 100644 view/theme/vier/smarty3/wall_thread.tpl
delete mode 100644 view/theme/vier/threaded_conversation.tpl
delete mode 100644 view/theme/vier/wall_thread.tpl
delete mode 100644 view/threaded_conversation.tpl
delete mode 100644 view/toggle_mobile_footer.tpl
delete mode 100644 view/uexport.tpl
delete mode 100644 view/uimport.tpl
delete mode 100644 view/vcard-widget.tpl
delete mode 100644 view/viewcontact_template.tpl
delete mode 100644 view/voting_fakelink.tpl
delete mode 100644 view/wall_thread.tpl
delete mode 100644 view/wallmessage.tpl
delete mode 100644 view/wallmsg-end.tpl
delete mode 100644 view/wallmsg-header.tpl
delete mode 100644 view/xrd_diaspora.tpl
delete mode 100644 view/xrd_host.tpl
delete mode 100644 view/xrd_person.tpl
diff --git a/include/friendica_smarty.php b/include/friendica_smarty.php
index f9d91a827..1326b0aca 100644
--- a/include/friendica_smarty.php
+++ b/include/friendica_smarty.php
@@ -3,6 +3,8 @@
require_once "object/TemplateEngine.php";
require_once("library/Smarty/libs/Smarty.class.php");
+define('SMARTY3_TEMPLATE_FOLDER','templates');
+
class FriendicaSmarty extends Smarty {
public $filename;
@@ -14,10 +16,10 @@ class FriendicaSmarty extends Smarty {
// setTemplateDir can be set to an array, which Smarty will parse in order.
// The order is thus very important here
- $template_dirs = array('theme' => "view/theme/$theme/smarty3/");
+ $template_dirs = array('theme' => "view/theme/$theme/".SMARTY3_TEMPLATE_FOLDER."/");
if( x($a->theme_info,"extends") )
- $template_dirs = $template_dirs + array('extends' => "view/theme/".$a->theme_info["extends"]."/smarty3/");
- $template_dirs = $template_dirs + array('base' => 'view/smarty3/');
+ $template_dirs = $template_dirs + array('extends' => "view/theme/".$a->theme_info["extends"]."/".SMARTY3_TEMPLATE_FOLDER."/");
+ $template_dirs = $template_dirs + array('base' => "view/".SMARTY3_TEMPLATE_FOLDER."/");
$this->setTemplateDir($template_dirs);
$this->setCompileDir('view/smarty3/compiled/');
@@ -61,7 +63,7 @@ class FriendicaSmartyEngine implements ITemplateEngine {
public function get_template_file($file, $root=''){
$a = get_app();
- $template_file = get_template_file($a, 'smarty3/' . $file, $root);
+ $template_file = get_template_file($a, SMARTY3_TEMPLATE_FOLDER.'/'.$file, $root);
$template = new FriendicaSmarty();
$template->filename = $template_file;
return $template;
diff --git a/view/404.tpl b/view/404.tpl
deleted file mode 100644
index bf4d4e949..000000000
--- a/view/404.tpl
+++ /dev/null
@@ -1 +0,0 @@
-$message
diff --git a/view/acl_selector.tpl b/view/acl_selector.tpl
deleted file mode 100644
index 837225a5b..000000000
--- a/view/acl_selector.tpl
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
diff --git a/view/admin_aside.tpl b/view/admin_aside.tpl
deleted file mode 100644
index 2f43562bd..000000000
--- a/view/admin_aside.tpl
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-{{ if $admin.update }}
-
-{{ endif }}
-
-
-{{ if $admin.plugins_admin }}$plugadmtxt {{ endif }}
-
- {{ for $admin.plugins_admin as $l }}
- $l.1
- {{ endfor }}
-
-
-
-$logtxt
-
-
diff --git a/view/admin_logs.tpl b/view/admin_logs.tpl
deleted file mode 100644
index b777cf420..000000000
--- a/view/admin_logs.tpl
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
$title - $page
-
-
-
-
$logname
-
-
-
-
diff --git a/view/admin_plugins.tpl b/view/admin_plugins.tpl
deleted file mode 100644
index 74b56bb4e..000000000
--- a/view/admin_plugins.tpl
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
$title - $page
-
-
- {{ for $plugins as $p }}
-
-
- $p.2.name - $p.2.version
- {{ if $p.2.experimental }} $experimental {{ endif }}{{ if $p.2.unsupported }} $unsupported {{ endif }}
-
- $p.2.description
-
- {{ endfor }}
-
-
diff --git a/view/admin_plugins_details.tpl b/view/admin_plugins_details.tpl
deleted file mode 100644
index 931c7b83c..000000000
--- a/view/admin_plugins_details.tpl
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
$title - $page
-
-
$info.name - $info.version : $action
-
$info.description
-
-
$str_author
- {{ for $info.author as $a }}
- {{ if $a.link }}$a.name {{ else }}$a.name{{ endif }},
- {{ endfor }}
-
-
-
$str_maintainer
- {{ for $info.maintainer as $a }}
- {{ if $a.link }}$a.name {{ else }}$a.name{{ endif }},
- {{ endfor }}
-
-
- {{ if $screenshot }}
-
- {{ endif }}
-
- {{ if $admin_form }}
-
$settings
-
- {{ endif }}
-
- {{ if $readme }}
-
Readme
-
- $readme
-
- {{ endif }}
-
diff --git a/view/admin_remoteupdate.tpl b/view/admin_remoteupdate.tpl
deleted file mode 100644
index 874c6e626..000000000
--- a/view/admin_remoteupdate.tpl
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
-
Your version: $localversion
-{{ if $needupdate }}
-
New version: $remoteversion
-
-
-{{ else }}
-
No updates
-{{ endif }}
-
diff --git a/view/admin_site.tpl b/view/admin_site.tpl
deleted file mode 100644
index 0f0fdd426..000000000
--- a/view/admin_site.tpl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
diff --git a/view/admin_summary.tpl b/view/admin_summary.tpl
deleted file mode 100644
index 4efe1960c..000000000
--- a/view/admin_summary.tpl
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
$title - $page
-
-
- $queues.label
- $queues.deliverq - $queues.queue
-
-
- $pending.0
- $pending.1
-
-
-
- $users.0
- $users.1
-
- {{ for $accounts as $p }}
-
- $p.0
- {{ if $p.1 }}$p.1{{ else }}0{{ endif }}
-
- {{ endfor }}
-
-
-
- $plugins.0
-
- {{ for $plugins.1 as $p }}
- $p
- {{ endfor }}
-
-
-
-
- $version.0
- $version.1 - $build
-
-
-
-
diff --git a/view/admin_users.tpl b/view/admin_users.tpl
deleted file mode 100644
index d9a96d7df..000000000
--- a/view/admin_users.tpl
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
diff --git a/view/album_edit.tpl b/view/album_edit.tpl
deleted file mode 100644
index 56a7b73fc..000000000
--- a/view/album_edit.tpl
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
diff --git a/view/api_config_xml.tpl b/view/api_config_xml.tpl
deleted file mode 100644
index 3281e59dd..000000000
--- a/view/api_config_xml.tpl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
- $config.site.name
- $config.site.server
- default
-
- $config.site.logo
-
- true
- en
- $config.site.email
-
-
- UTC
- $config.site.closed
-
- false
- $config.site.private
- $config.site.textlimit
- $config.site.ssl
- $config.site.sslserver
- 30
-
-
-
- cc
-
- http://creativecommons.org/licenses/by/3.0/
- Creative Commons Attribution 3.0
- http://i.creativecommons.org/l/by/3.0/80x15.png
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- false
- 20
- 600
-
-
-
- false
- INVALID SERVER
- 5222
- update
-
-
- StatusNet
-
-
-
- false
- 0
-
-
diff --git a/view/api_friends_xml.tpl b/view/api_friends_xml.tpl
deleted file mode 100644
index 9bdf53222..000000000
--- a/view/api_friends_xml.tpl
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
- {{for $users as $u }}
- {{inc api_user_xml.tpl with $user=$u }}{{endinc}}
- {{endfor}}
-
diff --git a/view/api_ratelimit_xml.tpl b/view/api_ratelimit_xml.tpl
deleted file mode 100644
index 36ec1993d..000000000
--- a/view/api_ratelimit_xml.tpl
+++ /dev/null
@@ -1,6 +0,0 @@
-
- $hash.remaining_hits
- $hash.hourly_limit
- $hash.reset_time
- $hash.resettime_in_seconds
-
diff --git a/view/api_status_xml.tpl b/view/api_status_xml.tpl
deleted file mode 100644
index f6cd9c2c0..000000000
--- a/view/api_status_xml.tpl
+++ /dev/null
@@ -1,46 +0,0 @@
-{{ if $status }}
- $status.created_at
- $status.id
- $status.text
- $status.source
- $status.truncated
- $status.in_reply_to_status_id
- $status.in_reply_to_user_id
- $status.favorited
- $status.in_reply_to_screen_name
- $status.geo
- $status.coordinates
- $status.place
- $status.contributors
-
- $status.user.id
- $status.user.name
- $status.user.screen_name
- $status.user.location
- $status.user.description
- $status.user.profile_image_url
- $status.user.url
- $status.user.protected
- $status.user.followers
- $status.user.profile_background_color
- $status.user.profile_text_color
- $status.user.profile_link_color
- $status.user.profile_sidebar_fill_color
- $status.user.profile_sidebar_border_color
- $status.user.friends_count
- $status.user.created_at
- $status.user.favourites_count
- $status.user.utc_offset
- $status.user.time_zone
- $status.user.profile_background_image_url
- $status.user.profile_background_tile
- $status.user.profile_use_background_image
-
- $status.user.geo_enabled
- $status.user.verified
-
- $status.user.statuses_count
- $status.user.lang
- $status.user.contributors_enabled
-
-{{ endif }}
diff --git a/view/api_test_xml.tpl b/view/api_test_xml.tpl
deleted file mode 100644
index 7509a2dc1..000000000
--- a/view/api_test_xml.tpl
+++ /dev/null
@@ -1 +0,0 @@
-$ok
diff --git a/view/api_timeline_atom.tpl b/view/api_timeline_atom.tpl
deleted file mode 100644
index 3db91573e..000000000
--- a/view/api_timeline_atom.tpl
+++ /dev/null
@@ -1,90 +0,0 @@
-
- StatusNet
- $rss.self
- Friendica
- Friendica API feed
- $rss.logo
- $rss.atom_updated
-
-
-
-
-
- http://activitystrea.ms/schema/1.0/person
- $user.url
- $user.name
-
-
-
-
-
-
- $user.screen_name
- $user.name
-
- homepage
- $user.url
- true
-
-
-
-
-
-
- http://activitystrea.ms/schema/1.0/person
- $user.contact_url
- $user.name
-
-
-
-
-
- $user.screen_name
- $user.name
-
- homepage
- $user.url
- true
-
-
-
-
-
- {{ for $statuses as $status }}
-
- $status.objecttype
- $status.message_id
- $status.text
- $status.statusnet_html
-
- $status.verb
- $status.published
- $status.updated
-
-
-
-
-
-
-
- http://activitystrea.ms/schema/1.0/person
- $status.user.url
- $status.user.name
-
-
-
-
- $status.user.screen_name
- $status.user.name
-
-
- homepage
- $status.user.url
- true
-
-
-
-
-
- {{ endfor }}
-
diff --git a/view/api_timeline_rss.tpl b/view/api_timeline_rss.tpl
deleted file mode 100644
index 99279ec37..000000000
--- a/view/api_timeline_rss.tpl
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
- Friendica
- $rss.alternate
-
- Friendica timeline
- $rss.language
- 40
-
- $user.link
- $user.name's items
- $user.profile_image_url
-
-
-{{ for $statuses as $status }}
- -
-
$status.user.name: $status.text
- $status.text
- $status.created_at
- $status.url
- $status.url
- $status.source
-
-{{ endfor }}
-
-
diff --git a/view/api_timeline_xml.tpl b/view/api_timeline_xml.tpl
deleted file mode 100644
index 4a32b411b..000000000
--- a/view/api_timeline_xml.tpl
+++ /dev/null
@@ -1,20 +0,0 @@
-
-{{ for $statuses as $status }}
- $status.text
- $status.truncated
- $status.created_at
- $status.in_reply_to_status_id
- $status.source
- $status.id
- $status.in_reply_to_user_id
- $status.in_reply_to_screen_name
- $status.geo
- $status.favorited
-{{ inc api_user_xml.tpl with $user=$status.user }}{{ endinc }} $status.statusnet_html
- $status.statusnet_conversation_id
- $status.url
- $status.coordinates
- $status.place
- $status.contributors
-
-{{ endfor }}
diff --git a/view/api_user_xml.tpl b/view/api_user_xml.tpl
deleted file mode 100644
index d286652c0..000000000
--- a/view/api_user_xml.tpl
+++ /dev/null
@@ -1,46 +0,0 @@
-
- $user.id
- $user.name
- $user.screen_name
- $user.location
- $user.description
- $user.profile_image_url
- $user.url
- $user.protected
- $user.followers_count
- $user.friends_count
- $user.created_at
- $user.favourites_count
- $user.utc_offset
- $user.time_zone
- $user.statuses_count
- $user.following
- $user.profile_background_color
- $user.profile_text_color
- $user.profile_link_color
- $user.profile_sidebar_fill_color
- $user.profile_sidebar_border_color
- $user.profile_background_image_url
- $user.profile_background_tile
- $user.profile_use_background_image
- $user.notifications
- $user.geo_enabled
- $user.verified
- $user.lang
- $user.contributors_enabled
- {{ if $user.status }}
- $user.status.created_at
- $user.status.id
- $user.status.text
- $user.status.source
- $user.status.truncated
- $user.status.in_reply_to_status_id
- $user.status.in_reply_to_user_id
- $user.status.favorited
- $user.status.in_reply_to_screen_name
- $user.status.geo
- $user.status.coordinates
- $user.status.place
- $user.status.contributors
- {{ endif }}
-
diff --git a/view/apps.tpl b/view/apps.tpl
deleted file mode 100644
index 4c7f8c94c..000000000
--- a/view/apps.tpl
+++ /dev/null
@@ -1,7 +0,0 @@
-$title
-
-
- {{ for $apps as $ap }}
- $ap
- {{ endfor }}
-
diff --git a/view/atom_feed.tpl b/view/atom_feed.tpl
deleted file mode 100644
index 2feb547ee..000000000
--- a/view/atom_feed.tpl
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
- $feed_id
- $feed_title
- Friendica
-
- $hub
- $salmon
- $community
-
- $feed_updated
-
-
- $name
- $profile_page
-
-
- $birthday
-
diff --git a/view/atom_feed_dfrn.tpl b/view/atom_feed_dfrn.tpl
deleted file mode 100644
index 0bae62b52..000000000
--- a/view/atom_feed_dfrn.tpl
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
- $feed_id
- $feed_title
- Friendica
-
- $hub
- $salmon
- $community
-
- $feed_updated
-
-
- $name
- $profile_page
-
-
- $birthday
-
diff --git a/view/atom_mail.tpl b/view/atom_mail.tpl
deleted file mode 100644
index bf7c3efc8..000000000
--- a/view/atom_mail.tpl
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
- $name
- $profile_page
- $thumb
-
-
- $item_id
- $parent_id
- $created
- $subject
- $content
-
-
-
diff --git a/view/atom_relocate.tpl b/view/atom_relocate.tpl
deleted file mode 100644
index f7db934d7..000000000
--- a/view/atom_relocate.tpl
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
- $url
- $name
- $photo
- $thumb
- $micro
- $request
- $confirm
- $notify
- $poll
- $sitepubkey
-
-
-
-
diff --git a/view/atom_suggest.tpl b/view/atom_suggest.tpl
deleted file mode 100644
index 66c61f9b6..000000000
--- a/view/atom_suggest.tpl
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- $url
- $name
- $photo
- $request
- $note
-
-
-
diff --git a/view/auto_request.tpl b/view/auto_request.tpl
deleted file mode 100644
index 961de9bb3..000000000
--- a/view/auto_request.tpl
+++ /dev/null
@@ -1,37 +0,0 @@
-
-$header
-
-
-$page_desc
-
-
-
-$invite_desc
-
-
-$desc
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/view/birthdays_reminder.tpl b/view/birthdays_reminder.tpl
deleted file mode 100644
index 971680a8c..000000000
--- a/view/birthdays_reminder.tpl
+++ /dev/null
@@ -1,10 +0,0 @@
-{{ if $count }}
-$event_reminders ($count)
-$event_title
-
-{{ for $events as $event }}
-
-{{ endfor }}
-
-{{ endif }}
-
diff --git a/view/categories_widget.tpl b/view/categories_widget.tpl
deleted file mode 100644
index 5dbd871a8..000000000
--- a/view/categories_widget.tpl
+++ /dev/null
@@ -1,12 +0,0 @@
-
diff --git a/view/comment_item.tpl b/view/comment_item.tpl
deleted file mode 100644
index 1764f99d8..000000000
--- a/view/comment_item.tpl
+++ /dev/null
@@ -1,39 +0,0 @@
- {{ if $threaded }}
-
- {{ for $tabs as $tab }} -- $tab.label
- {{ endfor }}
-
diff --git a/view/confirm.tpl b/view/confirm.tpl deleted file mode 100644 index 5e7e641c4..000000000 --- a/view/confirm.tpl +++ /dev/null @@ -1,14 +0,0 @@ -$contacts
-{{ if $micropro }} - $viewcontacts -$header
- --$relation_text
- $nettype
- {{ if $lost_contact }}
- $lost_contact
- {{ endif }}
- {{ if $insecure }}
- $insecure
- {{ endif }}
- {{ if $blocked }}
- $blocked
- {{ endif }}
- {{ if $ignored }}
- $ignored
- {{ endif }}
- {{ if $archived }}
- $archived
- {{ endif }}
-
- -
-
- {{ if $common_text }}
- $common_text
- {{ endif }}
- {{ if $all_friends }}
- $all_friends
- {{ endif }}
-
-
- - $lblrecent
- {{ if $lblsuggest }}
- - $lblsuggest
- {{ endif }}
-
-
-- {{ for $contact.photo_menu as $c }} - {{ if $c.2 }} -- $c.0
- {{ else }}
- - $c.0
- {{ endif }}
- {{ endfor }}
-
-$header{{ if $total }} ($total){{ endif }}
- -{{ if $finding }}$finding
{{ endif }} - -$title
--$desc -
-$header
- -$head_managers
- -{{ for $managers as $x }} - --{{ endif }} - - -
$head_delegates
- -{{ if $delegates }} -{{ for $delegates as $x }} - -- - -
$head_potentials
-{{ if $potentials }} -{{ for $potentials as $x }} - -- diff --git a/view/dfrn_req_confirm.tpl b/view/dfrn_req_confirm.tpl deleted file mode 100644 index 6c916323c..000000000 --- a/view/dfrn_req_confirm.tpl +++ /dev/null @@ -1,21 +0,0 @@ - -
-$welcome -
- \ No newline at end of file diff --git a/view/dfrn_request.tpl b/view/dfrn_request.tpl deleted file mode 100644 index bd3bcbc42..000000000 --- a/view/dfrn_request.tpl +++ /dev/null @@ -1,65 +0,0 @@ - --$please - -
$header
- --$page_desc
-
-- $friendica
-- $diaspora $diasnote
-- $statusnet
-{{ if $emailnet }}- $emailnet
{{ endif }}
-
-$invite_desc - --$desc -
- - - --$pls_answer -
- --$does_know -
- --$add_note -
-$sitedir
- -$globaldir -$admin - -$finding - -$title
- --$desc -
- - - - diff --git a/view/event_head.tpl b/view/event_head.tpl deleted file mode 100644 index 559de24e3..000000000 --- a/view/event_head.tpl +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - - diff --git a/view/events-js.tpl b/view/events-js.tpl deleted file mode 100644 index b0e182c56..000000000 --- a/view/events-js.tpl +++ /dev/null @@ -1,6 +0,0 @@ -$tabs -$title
- -$title
- -$banner
- -$f
--- $mark
-- $apply
-
- --{{ endfor }} -{{ endif }} - diff --git a/view/fake_feed.tpl b/view/fake_feed.tpl deleted file mode 100644 index c37071cf4..000000000 --- a/view/fake_feed.tpl +++ /dev/null @@ -1,13 +0,0 @@ - -
$title
--- $all
- {{ for $terms as $term }}
- - $term.name
- {{ endfor }}
-
- --- FileBrowser
-
-- {{ for $folders as $f }}- $f.1
{{ endfor }}
-
-- {{ for $files as $f }} -- $f.1
- {{ endfor }}
-
-$connect
-$title
{{endif}} - {{if $desc}}- {{ for $items as $item }} -- $item.label
- {{ endfor }}
-
- -$title
- - -$title
- -- {{ for $groups as $group }} --
- {{ if $group.cid }}
-
- {{ endif }}
- {{ if $group.edit }}
-
- {{ endif }}
- $group.text
-
- {{ endfor }}
-
-$groupeditor.label_members
--
$groupeditor.label_contacts
-$title
-$pass
- - -{{ if $status }} -$status
-{{ endif }} - -$text diff --git a/view/install_checks.tpl b/view/install_checks.tpl deleted file mode 100644 index a3aa2b266..000000000 --- a/view/install_checks.tpl +++ /dev/null @@ -1,24 +0,0 @@ -$title
-$pass
- diff --git a/view/install_db.tpl b/view/install_db.tpl deleted file mode 100644 index 1302b5a70..000000000 --- a/view/install_db.tpl +++ /dev/null @@ -1,30 +0,0 @@ - -$title
-$pass
- - --$info_01
- -{{ if $status }} --$info_02
-$info_03 -
$status
-{{ endif }} - - - diff --git a/view/install_settings.tpl b/view/install_settings.tpl deleted file mode 100644 index 05b87f904..000000000 --- a/view/install_settings.tpl +++ /dev/null @@ -1,25 +0,0 @@ - -$title
-$pass
- - -{{ if $status }} -$status
-{{ endif }} - - - diff --git a/view/intros.tpl b/view/intros.tpl deleted file mode 100644 index e7fd53ca4..000000000 --- a/view/intros.tpl +++ /dev/null @@ -1,28 +0,0 @@ - -$str_notifytype $notify_type
-$title
- --$desc -
- - - diff --git a/view/magicsig.tpl b/view/magicsig.tpl deleted file mode 100644 index 75f9bc475..000000000 --- a/view/magicsig.tpl +++ /dev/null @@ -1,9 +0,0 @@ - -diff --git a/view/mail_display.tpl b/view/mail_display.tpl deleted file mode 100644 index b328d32a2..000000000 --- a/view/mail_display.tpl +++ /dev/null @@ -1,10 +0,0 @@ - -{{ for $mails as $mail }} - {{ inc mail_conv.tpl }}{{endinc}} -{{ endfor }} - -{{ if $canreply }} -{{ inc prv_message.tpl }}{{ endinc }} -{{ else }} -$unknown_text -{{endif }} diff --git a/view/mail_head.tpl b/view/mail_head.tpl deleted file mode 100644 index afb65f537..000000000 --- a/view/mail_head.tpl +++ /dev/null @@ -1,3 +0,0 @@ -
$messages
- -$tab_content diff --git a/view/mail_list.tpl b/view/mail_list.tpl deleted file mode 100644 index 22e35dec8..000000000 --- a/view/mail_list.tpl +++ /dev/null @@ -1,16 +0,0 @@ -$title
-$title
- -{{ endif }} -{{ if $nav.register }}$nav.register.1
{{ endif }} -{{ if $nav.login }} -
-$nav.net_reset.1
-{{ endif }} -{{ if $nav.home }} -$nav.home.1
-{{ endif }} -{{ if $nav.community }} -$nav.community.1
-{{ endif }} -{{ if $nav.network }} -
-
{{ endif }} -$nav.directory.1
-{{ if $nav.introductions }} -$nav.introductions.1
-{{ endif }} -
-
{{ endif }} -{{ if $nav.manage }}$nav.manage.1
{{ endif }} -{{ if $nav.profiles }}$nav.profiles.1
{{ endif }} -{{ if $nav.admin }}$nav.admin.1
{{ endif }} -$nav.search.1
-{{ if $nav.apps }}$nav.apps.1
{{ endif }} -{{ if $nav.help }} $nav.help.1
{{ endif }} -
{{ endif }} -
$title
-- {{ for $nets as $net }} -- $net.name
- {{ endfor }}
-
-$header
- -{{ for $contacts as $contact }} - {{ inc contact_template.tpl }}{{ endinc }} -{{ endfor }} - - -$paginate - - - - diff --git a/view/notifications.tpl b/view/notifications.tpl deleted file mode 100644 index 1a13b68b9..000000000 --- a/view/notifications.tpl +++ /dev/null @@ -1,8 +0,0 @@ - -$notif_header
- -{{ inc common_tabs.tpl }}{{ endinc }} - -$title
- -$app.name
-$authorize
- diff --git a/view/oauth_authorize_done.tpl b/view/oauth_authorize_done.tpl deleted file mode 100644 index 51eaea248..000000000 --- a/view/oauth_authorize_done.tpl +++ /dev/null @@ -1,4 +0,0 @@ -$title
- -$info
-$code
diff --git a/view/oembed_video.tpl b/view/oembed_video.tpl deleted file mode 100755 index d3a9a9311..000000000 --- a/view/oembed_video.tpl +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/view/oexchange_xrd.tpl b/view/oexchange_xrd.tpl deleted file mode 100644 index 6735a3e04..000000000 --- a/view/oexchange_xrd.tpl +++ /dev/null @@ -1,33 +0,0 @@ - -$findpeople
-$desc
- -$album.1
- -$title
-{{ if $can_post }} -$upload.0 -{{ endif }} - -$pagename
- -$title
- -$title
- - --$desc -
- --$desc -
- --$desc -
- --$desc -
- -$title
- --- $profile.fullname.0
- - $profile.fullname.1
-
- -{{ if $profile.gender }} --- $profile.gender.0
- - $profile.gender.1
-
-{{ endif }} - -{{ if $profile.birthday }} --- $profile.birthday.0
- - $profile.birthday.1
-
-{{ endif }} - -{{ if $profile.age }} --- $profile.age.0
- - $profile.age.1
-
-{{ endif }} - -{{ if $profile.marital }} --- ♥ $profile.marital.0
- - $profile.marital.1{{ if $profile.marital.with }} ($profile.marital.with){{ endif }}{{ if $profile.howlong }} $profile.howlong{{ endif }}
-
-{{ endif }} - -{{ if $profile.sexual }} --- $profile.sexual.0
- - $profile.sexual.1
-
-{{ endif }} - -{{ if $profile.pub_keywords }} --- $profile.pub_keywords.0
- - $profile.pub_keywords.1
-
-{{ endif }} - -{{ if $profile.homepage }} --- $profile.homepage.0
- - $profile.homepage.1
-
-{{ endif }} - -{{ if $profile.hometown }} --- $profile.hometown.0
- - $profile.hometown.1
-
-{{ endif }} - -{{ if $profile.politic }} --- $profile.politic.0
- - $profile.politic.1
-
-{{ endif }} - -{{ if $profile.religion }} --- $profile.religion.0
- - $profile.religion.1
-
-{{ endif }} - -{{ if $profile.about }} --- $profile.about.0
- - $profile.about.1
-
-{{ endif }} - -{{ if $profile.interest }} --- $profile.interest.0
- - $profile.interest.1
-
-{{ endif }} - -{{ if $profile.likes }} --- $profile.likes.0
- - $profile.likes.1
-
-{{ endif }} - -{{ if $profile.dislikes }} --- $profile.dislikes.0
- - $profile.dislikes.1
-
-{{ endif }} - -{{ if $profile.contact }} --- $profile.contact.0
- - $profile.contact.1
-
-{{ endif }} - - -{{ if $profile.music }} --- $profile.music.0
- - $profile.music.1
-
-{{ endif }} - - -{{ if $profile.book }} --- $profile.book.0
- - $profile.book.1
-
-{{ endif }} - - -{{ if $profile.tv }} --- $profile.tv.0
- - $profile.tv.1
-
-{{ endif }} - - -{{ if $profile.film }} --- $profile.film.0
- - $profile.film.1
-
-{{ endif }} - - -{{ if $profile.romance }} --- $profile.romance.0
- - $profile.romance.1
-
-{{ endif }} - - -{{ if $profile.work }} --- $profile.work.0
- - $profile.work.1
-
-{{ endif }} - -{{ if $profile.education }} --- $profile.education.0
- - $profile.education.1
-
-{{ endif }} - - - - diff --git a/view/profile_edit.tpl b/view/profile_edit.tpl deleted file mode 100644 index 4df6ecc69..000000000 --- a/view/profile_edit.tpl +++ /dev/null @@ -1,323 +0,0 @@ -$default - -$banner
- --- $profpic
-- $viewprof
-- $cl_prof
-
-- $del_prof
-
-
-$header
--$chg_photo -
-$title
- - - --$pubdesc -
- -- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - -- {{ if $connect }} -- $connect
- {{ endif }}
- {{ if $wallmessage }}
- - $wallmessage
- {{ endif }}
-
-$header
- -$lbl1
- --$lbl2 -
--$lbl3 -
--$newpass -
--$lbl4 $lbl5 -
--$lbl6 -
diff --git a/view/register.tpl b/view/register.tpl deleted file mode 100644 index 2275356a2..000000000 --- a/view/register.tpl +++ /dev/null @@ -1,65 +0,0 @@ -$regtitle
- - - -$license - - diff --git a/view/remote_friends_common.tpl b/view/remote_friends_common.tpl deleted file mode 100644 index 9e0562878..000000000 --- a/view/remote_friends_common.tpl +++ /dev/null @@ -1,21 +0,0 @@ -$title
- -$title
- $searchbox - -- {{ for $saved as $search }} --
-
- $search.term
-
- {{ endfor }}
-
- -- $item.item_photo_menu -
-$ptitle
- -$nickname_block - - - diff --git a/view/settings_connectors.tpl b/view/settings_connectors.tpl deleted file mode 100644 index bd3d60f0f..000000000 --- a/view/settings_connectors.tpl +++ /dev/null @@ -1,35 +0,0 @@ -$title
- -$ptitle
- - diff --git a/view/settings_display_end.tpl b/view/settings_display_end.tpl deleted file mode 100644 index e69de29bb..000000000 diff --git a/view/settings_features.tpl b/view/settings_features.tpl deleted file mode 100644 index 1b106d411..000000000 --- a/view/settings_features.tpl +++ /dev/null @@ -1,20 +0,0 @@ -$title
- - - - diff --git a/view/settings_nick_set.tpl b/view/settings_nick_set.tpl deleted file mode 100644 index eb4721d50..000000000 --- a/view/settings_nick_set.tpl +++ /dev/null @@ -1,5 +0,0 @@ - --It appears that your website is located in a subdirectory of the
--$hostname website, so this setting may not work reliably.
-
If you have any issues, you may have better results using the profile
\ No newline at end of file diff --git a/view/settings_oauth.tpl b/view/settings_oauth.tpl deleted file mode 100644 index 890c4ee6c..000000000 --- a/view/settings_oauth.tpl +++ /dev/null @@ -1,31 +0,0 @@ -address '$baseurl/profile/$nickname'. -
$title
- - - diff --git a/view/settings_oauth_edit.tpl b/view/settings_oauth_edit.tpl deleted file mode 100644 index e6f2abdc2..000000000 --- a/view/settings_oauth_edit.tpl +++ /dev/null @@ -1,17 +0,0 @@ -$title
- - diff --git a/view/smarty3/404.tpl b/view/smarty3/404.tpl deleted file mode 100644 index 2d581ab8d..000000000 --- a/view/smarty3/404.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$message}}
diff --git a/view/smarty3/acl_selector.tpl b/view/smarty3/acl_selector.tpl deleted file mode 100644 index 5fd11e756..000000000 --- a/view/smarty3/acl_selector.tpl +++ /dev/null @@ -1,31 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$admtxt}}
--- {{$admin.site.1}}
- - {{$admin.users.1}}
- - {{$admin.plugins.1}}
- - {{$admin.themes.1}}
- - {{$admin.dbsync.1}}
-
- -{{if $admin.update}} --- {{$admin.update.1}}
- - Important Changes
-
-{{/if}} - - -{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} -- {{foreach $admin.plugins_admin as $l}} -- {{$l.1}}
- {{/foreach}}
-
- - -{{$logtxt}}
--- {{$admin.logs.1}}
-
- diff --git a/view/smarty3/admin_logs.tpl b/view/smarty3/admin_logs.tpl deleted file mode 100644 index 6a2259500..000000000 --- a/view/smarty3/admin_logs.tpl +++ /dev/null @@ -1,24 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}} - {{$page}}
- - - -{{$logname}}
-{{$title}} - {{$page}}
- -- {{foreach $plugins as $p}} --
-
- {{$p.2.name}} - {{$p.2.version}}
- {{if $p.2.experimental}} {{$experimental}} {{/if}}{{if $p.2.unsupported}} {{$unsupported}} {{/if}}
-
-
{{$p.2.description}}
-
- {{/foreach}}
-
-{{$title}} - {{$page}}
- -{{$info.name}} - {{$info.version}} : {{$action}}
-{{$info.description}}
- -{{$str_author}} - {{foreach $info.author as $a}} - {{if $a.link}}{{$a.name}}{{else}}{{$a.name}}{{/if}}, - {{/foreach}} -
- -{{$str_maintainer}} - {{foreach $info.maintainer as $a}} - {{if $a.link}}{{$a.name}}{{else}}{{$a.name}}{{/if}}, - {{/foreach}} -
- - {{if $screenshot}} - - {{/if}} - - {{if $admin_form}} -{{$settings}}
- - {{/if}} - - {{if $readme}} -Readme
-Friendica Update
- -No updates
-{{/if}} -{{$title}} - {{$page}}
- - -{{$title}} - {{$page}}
- --- {{$queues.label}}
- - {{$queues.deliverq}} - {{$queues.queue}}
-
--- {{$pending.0}}
- - {{$pending.1}}
-
- --- {{$users.0}}
- - {{$users.1}}
-
- {{foreach $accounts as $p}} --- {{$p.0}}
- - {{if $p.1}}{{$p.1}}{{else}}0{{/if}}
-
- {{/foreach}} - - --- {{$plugins.0}}
-
- {{foreach $plugins.1 as $p}}
- - {{$p}}
- {{/foreach}}
-
-
- --- {{$version.0}}
- - {{$version.1}} - {{$build}}
-
- - -{{$title}} - {{$page}}
- - -{{$title}}
- -- {{foreach $apps as $ap}} -- {{$ap}}
- {{/foreach}}
-
diff --git a/view/smarty3/atom_feed.tpl b/view/smarty3/atom_feed.tpl deleted file mode 100644 index db553d99f..000000000 --- a/view/smarty3/atom_feed.tpl +++ /dev/null @@ -1,34 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$header}}
- --{{$page_desc}}
-
-- {{$friendica}}
-- {{$diaspora}} {{$diasnote}}
-- {{$statusnet}}
-{{if $emailnet}}- {{$emailnet}}
{{/if}}
-
- --{{$invite_desc}} -
--{{$desc}} -
- - - -{{$title}}
--- {{$all}}
- {{foreach $terms as $term}}
- - {{$term.name}}
- {{/foreach}}
-
- -- {{foreach $tabs as $tab}} -- {{$tab.label}}
- {{/foreach}}
-
diff --git a/view/smarty3/confirm.tpl b/view/smarty3/confirm.tpl deleted file mode 100644 index df8d26eaa..000000000 --- a/view/smarty3/confirm.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$contacts}}
-{{if $micropro}} - {{$viewcontacts}} -{{$header}}
- --{{$relation_text}}
- {{$nettype}}
- {{if $lost_contact}}
- {{$lost_contact}}
- {{/if}}
- {{if $insecure}}
- {{$insecure}}
- {{/if}}
- {{if $blocked}}
- {{$blocked}}
- {{/if}}
- {{if $ignored}}
- {{$ignored}}
- {{/if}}
- {{if $archived}}
- {{$archived}}
- {{/if}}
-
- -
-
- {{if $common_text}}
- {{$common_text}}
- {{/if}}
- {{if $all_friends}}
- {{$all_friends}}
- {{/if}}
-
-
- - {{$lblrecent}}
- {{if $lblsuggest}}
- - {{$lblsuggest}}
- {{/if}}
-
-
-- {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -- {{$c.0}}
- {{else}}
- - {{$c.0}}
- {{/if}}
- {{/foreach}}
-
-{{$header}}{{if $total}} ({{$total}}){{/if}}
- -{{if $finding}}{{$finding}}
{{/if}} - -{{$title}}
--{{$desc}} -
-{{$header}}
- -{{$head_managers}}
- -{{foreach $managers as $x}} - --{{/if}} - - -
{{$head_delegates}}
- -{{if $delegates}} -{{foreach $delegates as $x}} - -- - -
{{$head_potentials}}
-{{if $potentials}} -{{foreach $potentials as $x}} - -- diff --git a/view/smarty3/dfrn_req_confirm.tpl b/view/smarty3/dfrn_req_confirm.tpl deleted file mode 100644 index c941a201d..000000000 --- a/view/smarty3/dfrn_req_confirm.tpl +++ /dev/null @@ -1,26 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -
-{{$welcome}} -
- \ No newline at end of file diff --git a/view/smarty3/dfrn_request.tpl b/view/smarty3/dfrn_request.tpl deleted file mode 100644 index 29173a1d7..000000000 --- a/view/smarty3/dfrn_request.tpl +++ /dev/null @@ -1,70 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - --{{$please}} - -
{{$header}}
- --{{$page_desc}}
-
-- {{$friendica}}
-- {{$diaspora}} {{$diasnote}}
-- {{$statusnet}}
-{{if $emailnet}}- {{$emailnet}}
{{/if}}
-
-{{$invite_desc}} - --{{$desc}} -
- - - --{{$pls_answer}} -
- --{{$does_know}} -
- --{{$add_note}} -
-{{$sitedir}}
- -{{$globaldir}} -{{$admin}} - -{{$finding}} - -{{$title}}
- --{{$desc}} -
- - - - diff --git a/view/smarty3/event_head.tpl b/view/smarty3/event_head.tpl deleted file mode 100644 index 3d7091fb7..000000000 --- a/view/smarty3/event_head.tpl +++ /dev/null @@ -1,144 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - - - - - - - - - diff --git a/view/smarty3/events-js.tpl b/view/smarty3/events-js.tpl deleted file mode 100644 index 5fa046f5a..000000000 --- a/view/smarty3/events-js.tpl +++ /dev/null @@ -1,11 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$tabs}} -{{$title}}
- -{{$title}}
- -{{$banner}}
- -{{$f}}
--- {{$mark}}
-- {{$apply}}
-
- --{{/foreach}} -{{/if}} - diff --git a/view/smarty3/fake_feed.tpl b/view/smarty3/fake_feed.tpl deleted file mode 100644 index fd875de71..000000000 --- a/view/smarty3/fake_feed.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -
{{$title}}
--- {{$all}}
- {{foreach $terms as $term}}
- - {{$term.name}}
- {{/foreach}}
-
- --- FileBrowser
-
-- {{foreach $folders as $f}}- {{$f.1}}
{{/foreach}}
-
-- {{foreach $files as $f}} -- {{$f.1}}
- {{/foreach}}
-
-{{$connect}}
-{{$title}}
{{/if}} - {{if $desc}}- {{foreach $items as $item}} -- {{$item.label}}
- {{/foreach}}
-
- -{{$title}}
- - -{{$title}}
- -- {{foreach $groups as $group}} --
- {{if $group.cid}}
-
- {{/if}}
- {{if $group.edit}}
-
- {{/if}}
- {{$group.text}}
-
- {{/foreach}}
-
-{{$groupeditor.label_members}}
--
{{$groupeditor.label_contacts}}
-{{$title}}
-{{$pass}}
- - -{{if $status}} -{{$status}}
-{{/if}} - -{{$text}} diff --git a/view/smarty3/install_checks.tpl b/view/smarty3/install_checks.tpl deleted file mode 100644 index 44852b410..000000000 --- a/view/smarty3/install_checks.tpl +++ /dev/null @@ -1,29 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
-{{$pass}}
- diff --git a/view/smarty3/install_db.tpl b/view/smarty3/install_db.tpl deleted file mode 100644 index 944666c6a..000000000 --- a/view/smarty3/install_db.tpl +++ /dev/null @@ -1,35 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$title}}
-{{$pass}}
- - --{{$info_01}}
- -{{if $status}} --{{$info_02}}
-{{$info_03}} -
{{$status}}
-{{/if}} - - - diff --git a/view/smarty3/install_settings.tpl b/view/smarty3/install_settings.tpl deleted file mode 100644 index 2e97d0696..000000000 --- a/view/smarty3/install_settings.tpl +++ /dev/null @@ -1,30 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$title}}
-{{$pass}}
- - -{{if $status}} -{{$status}}
-{{/if}} - - - diff --git a/view/smarty3/intros.tpl b/view/smarty3/intros.tpl deleted file mode 100644 index bafdb07a0..000000000 --- a/view/smarty3/intros.tpl +++ /dev/null @@ -1,33 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$str_notifytype}} {{$notify_type}}
-{{$title}}
- --{{$desc}} -
- - - diff --git a/view/smarty3/magicsig.tpl b/view/smarty3/magicsig.tpl deleted file mode 100644 index af8dbb5bc..000000000 --- a/view/smarty3/magicsig.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -diff --git a/view/smarty3/mail_display.tpl b/view/smarty3/mail_display.tpl deleted file mode 100644 index 23d05bdeb..000000000 --- a/view/smarty3/mail_display.tpl +++ /dev/null @@ -1,15 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{foreach $mails as $mail}} - {{include file="mail_conv.tpl"}} -{{/foreach}} - -{{if $canreply}} -{{include file="prv_message.tpl"}} -{{else}} -{{$unknown_text}} -{{/if}} diff --git a/view/smarty3/mail_head.tpl b/view/smarty3/mail_head.tpl deleted file mode 100644 index f7a39fa8b..000000000 --- a/view/smarty3/mail_head.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
{{$messages}}
- -{{$tab_content}} diff --git a/view/smarty3/mail_list.tpl b/view/smarty3/mail_list.tpl deleted file mode 100644 index 9dbfb6a14..000000000 --- a/view/smarty3/mail_list.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
-{{$title}}
- -{{/if}} -{{if $nav.register}}{{$nav.register.1}}
{{/if}} -{{if $nav.login}} -
-{{$nav.net_reset.1}}
-{{/if}} -{{if $nav.home}} -{{$nav.home.1}}
-{{/if}} -{{if $nav.community}} -{{$nav.community.1}}
-{{/if}} -{{if $nav.network}} -
-
{{/if}} -{{$nav.directory.1}}
-{{if $nav.introductions}} -{{$nav.introductions.1}}
-{{/if}} -
-
{{/if}} -{{if $nav.manage}}{{$nav.manage.1}}
{{/if}} -{{if $nav.profiles}}{{$nav.profiles.1}}
{{/if}} -{{if $nav.admin}}{{$nav.admin.1}}
{{/if}} -{{$nav.search.1}}
-{{if $nav.apps}}{{$nav.apps.1}}
{{/if}} -{{if $nav.help}} {{$nav.help.1}}
{{/if}} -
{{/if}} -
{{$title}}
-- {{foreach $nets as $net}} -- {{$net.name}}
- {{/foreach}}
-
-{{$header}}
- -{{foreach $contacts as $contact}} - {{include file="contact_template.tpl"}} -{{/foreach}} - - -{{$paginate}} - - - - diff --git a/view/smarty3/notifications.tpl b/view/smarty3/notifications.tpl deleted file mode 100644 index 834a7a016..000000000 --- a/view/smarty3/notifications.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$notif_header}}
- -{{include file="common_tabs.tpl"}} - -{{$title}}
- -{{$app.name}}
-{{$authorize}}
- diff --git a/view/smarty3/oauth_authorize_done.tpl b/view/smarty3/oauth_authorize_done.tpl deleted file mode 100644 index 12d4c6f48..000000000 --- a/view/smarty3/oauth_authorize_done.tpl +++ /dev/null @@ -1,9 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
- -{{$info}}
-{{$code}}
diff --git a/view/smarty3/oembed_video.tpl b/view/smarty3/oembed_video.tpl deleted file mode 100644 index bdfa11509..000000000 --- a/view/smarty3/oembed_video.tpl +++ /dev/null @@ -1,9 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - - - - diff --git a/view/smarty3/oexchange_xrd.tpl b/view/smarty3/oexchange_xrd.tpl deleted file mode 100644 index 5af749182..000000000 --- a/view/smarty3/oexchange_xrd.tpl +++ /dev/null @@ -1,38 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$findpeople}}
-{{$desc}}
- -{{$album.1}}
- -{{$title}}
-{{if $can_post}} -{{$upload.0}} -{{/if}} - -{{$pagename}}
- -{{$title}}
- -{{$title}}
- - --{{$desc}} -
- --{{$desc}} -
- --{{$desc}} -
- --{{$desc}} -
- -{{$title}}
- --- {{$profile.fullname.0}}
- - {{$profile.fullname.1}}
-
- -{{if $profile.gender}} --- {{$profile.gender.0}}
- - {{$profile.gender.1}}
-
-{{/if}} - -{{if $profile.birthday}} --- {{$profile.birthday.0}}
- - {{$profile.birthday.1}}
-
-{{/if}} - -{{if $profile.age}} --- {{$profile.age.0}}
- - {{$profile.age.1}}
-
-{{/if}} - -{{if $profile.marital}} --- ♥ {{$profile.marital.0}}
- - {{$profile.marital.1}}{{if $profile.marital.with}} ({{$profile.marital.with}}){{/if}}{{if $profile.howlong}} {{$profile.howlong}}{{/if}}
-
-{{/if}} - -{{if $profile.sexual}} --- {{$profile.sexual.0}}
- - {{$profile.sexual.1}}
-
-{{/if}} - -{{if $profile.pub_keywords}} --- {{$profile.pub_keywords.0}}
- - {{$profile.pub_keywords.1}}
-
-{{/if}} - -{{if $profile.homepage}} --- {{$profile.homepage.0}}
- - {{$profile.homepage.1}}
-
-{{/if}} - -{{if $profile.hometown}} --- {{$profile.hometown.0}}
- - {{$profile.hometown.1}}
-
-{{/if}} - -{{if $profile.politic}} --- {{$profile.politic.0}}
- - {{$profile.politic.1}}
-
-{{/if}} - -{{if $profile.religion}} --- {{$profile.religion.0}}
- - {{$profile.religion.1}}
-
-{{/if}} - -{{if $profile.about}} --- {{$profile.about.0}}
- - {{$profile.about.1}}
-
-{{/if}} - -{{if $profile.interest}} --- {{$profile.interest.0}}
- - {{$profile.interest.1}}
-
-{{/if}} - -{{if $profile.likes}} --- {{$profile.likes.0}}
- - {{$profile.likes.1}}
-
-{{/if}} - -{{if $profile.dislikes}} --- {{$profile.dislikes.0}}
- - {{$profile.dislikes.1}}
-
-{{/if}} - -{{if $profile.contact}} --- {{$profile.contact.0}}
- - {{$profile.contact.1}}
-
-{{/if}} - - -{{if $profile.music}} --- {{$profile.music.0}}
- - {{$profile.music.1}}
-
-{{/if}} - - -{{if $profile.book}} --- {{$profile.book.0}}
- - {{$profile.book.1}}
-
-{{/if}} - - -{{if $profile.tv}} --- {{$profile.tv.0}}
- - {{$profile.tv.1}}
-
-{{/if}} - - -{{if $profile.film}} --- {{$profile.film.0}}
- - {{$profile.film.1}}
-
-{{/if}} - - -{{if $profile.romance}} --- {{$profile.romance.0}}
- - {{$profile.romance.1}}
-
-{{/if}} - - -{{if $profile.work}} --- {{$profile.work.0}}
- - {{$profile.work.1}}
-
-{{/if}} - -{{if $profile.education}} --- {{$profile.education.0}}
- - {{$profile.education.1}}
-
-{{/if}} - - - - diff --git a/view/smarty3/profile_edit.tpl b/view/smarty3/profile_edit.tpl deleted file mode 100644 index 4b7c4d0b1..000000000 --- a/view/smarty3/profile_edit.tpl +++ /dev/null @@ -1,328 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$default}} - -{{$banner}}
- --- {{$profpic}}
-- {{$viewprof}}
-- {{$cl_prof}}
-
-- {{$del_prof}}
-
-
-{{$header}}
--{{$chg_photo}} -
-{{$title}}
- - - --{{$pubdesc}} -
- -- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -- {{if $connect}} -- {{$connect}}
- {{/if}}
- {{if $wallmessage}}
- - {{$wallmessage}}
- {{/if}}
-
-{{$header}}
- -{{$lbl1}}
- --{{$lbl2}} -
--{{$lbl3}} -
--{{$newpass}} -
--{{$lbl4}} {{$lbl5}} -
--{{$lbl6}} -
diff --git a/view/smarty3/register.tpl b/view/smarty3/register.tpl deleted file mode 100644 index 5e655cd82..000000000 --- a/view/smarty3/register.tpl +++ /dev/null @@ -1,70 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$regtitle}}
- - - -{{$license}} - - diff --git a/view/smarty3/remote_friends_common.tpl b/view/smarty3/remote_friends_common.tpl deleted file mode 100644 index 5844aac87..000000000 --- a/view/smarty3/remote_friends_common.tpl +++ /dev/null @@ -1,26 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
- -{{$title}}
- {{$searchbox}} - -- {{foreach $saved as $search}} --
-
- {{$search.term}}
-
- {{/foreach}}
-
- -- {{$item.item_photo_menu}} -
-{{$ptitle}}
- -{{$nickname_block}} - - - diff --git a/view/smarty3/settings_connectors.tpl b/view/smarty3/settings_connectors.tpl deleted file mode 100644 index 0b0d78299..000000000 --- a/view/smarty3/settings_connectors.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
- -{{$ptitle}}
- - diff --git a/view/smarty3/settings_display_end.tpl b/view/smarty3/settings_display_end.tpl deleted file mode 100644 index a7fb96108..000000000 --- a/view/smarty3/settings_display_end.tpl +++ /dev/null @@ -1,5 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} diff --git a/view/smarty3/settings_features.tpl b/view/smarty3/settings_features.tpl deleted file mode 100644 index f5c5c5096..000000000 --- a/view/smarty3/settings_features.tpl +++ /dev/null @@ -1,25 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
- - - - diff --git a/view/smarty3/settings_nick_set.tpl b/view/smarty3/settings_nick_set.tpl deleted file mode 100644 index fb886695e..000000000 --- a/view/smarty3/settings_nick_set.tpl +++ /dev/null @@ -1,10 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - --It appears that your website is located in a subdirectory of the
--{{$hostname}} website, so this setting may not work reliably.
-
If you have any issues, you may have better results using the profile
\ No newline at end of file diff --git a/view/smarty3/settings_oauth.tpl b/view/smarty3/settings_oauth.tpl deleted file mode 100644 index feab78210..000000000 --- a/view/smarty3/settings_oauth.tpl +++ /dev/null @@ -1,36 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -address '{{$baseurl}}/profile/{{$nickname}}'. -
{{$title}}
- - - diff --git a/view/smarty3/settings_oauth_edit.tpl b/view/smarty3/settings_oauth_edit.tpl deleted file mode 100644 index e3960bf75..000000000 --- a/view/smarty3/settings_oauth_edit.tpl +++ /dev/null @@ -1,22 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
- - diff --git a/view/smarty3/suggest_friends.tpl b/view/smarty3/suggest_friends.tpl deleted file mode 100644 index 060db0005..000000000 --- a/view/smarty3/suggest_friends.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$str_notifytype}} {{$notify_type}}
-{{$title}}
- - -{{foreach $options as $o}} --- {{$o.1}}
- - {{$o.2}}
-
-{{/foreach}} \ No newline at end of file diff --git a/view/smarty3/uimport.tpl b/view/smarty3/uimport.tpl deleted file mode 100644 index cc137514a..000000000 --- a/view/smarty3/uimport.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - diff --git a/view/smarty3/vcard-widget.tpl b/view/smarty3/vcard-widget.tpl deleted file mode 100644 index 6ccd2ae1d..000000000 --- a/view/smarty3/vcard-widget.tpl +++ /dev/null @@ -1,10 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$title}}
- -{{foreach $contacts as $contact}} - {{include file="contact_template.tpl"}} -{{/foreach}} - - - -{{$paginate}} diff --git a/view/smarty3/voting_fakelink.tpl b/view/smarty3/voting_fakelink.tpl deleted file mode 100644 index 3d14ba48b..000000000 --- a/view/smarty3/voting_fakelink.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{$phrase}} diff --git a/view/smarty3/wall_thread.tpl b/view/smarty3/wall_thread.tpl deleted file mode 100644 index c0e30c4cb..000000000 --- a/view/smarty3/wall_thread.tpl +++ /dev/null @@ -1,125 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{if $item.comment_firstcollapsed}} -- {{$item.item_photo_menu}} -
--
{{$header}}
- -{{$subheader}}
- -$str_notifytype $notify_type
-- $item.item_photo_menu -
-- {{$item.item_photo_menu}} -
-- $item.item_photo_menu -
-- {{$item.item_photo_menu}} -
-- -
- -
$admtxt
--- $admin.site.1
- - $admin.users.1
- - $admin.plugins.1
- - $admin.themes.1
- - $admin.dbsync.1
-
- -{{ if $admin.update }} --- $admin.update.1
- - Important Changes
-
-{{ endif }} - - -{{ if $admin.plugins_admin }}$plugadmtxt
{{ endif }} -- {{ for $admin.plugins_admin as $l }} -- $l.1
- {{ endfor }}
-
- - -$logtxt
--- $admin.logs.1
-
- diff --git a/view/theme/decaf-mobile/admin_site.tpl b/view/theme/decaf-mobile/admin_site.tpl deleted file mode 100644 index 61f52b18d..000000000 --- a/view/theme/decaf-mobile/admin_site.tpl +++ /dev/null @@ -1,67 +0,0 @@ - -$title - $page
- - -$title - $page
- - -- {{ for $tabs as $tab }} -- $tab.label
- {{ endfor }}
-
-
diff --git a/view/theme/decaf-mobile/contact_block.tpl b/view/theme/decaf-mobile/contact_block.tpl deleted file mode 100644 index a8e34fce1..000000000 --- a/view/theme/decaf-mobile/contact_block.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{##} diff --git a/view/theme/decaf-mobile/contact_edit.tpl b/view/theme/decaf-mobile/contact_edit.tpl deleted file mode 100644 index e113018b3..000000000 --- a/view/theme/decaf-mobile/contact_edit.tpl +++ /dev/null @@ -1,93 +0,0 @@ - -$header
- --$relation_text
- $nettype
- {{ if $lost_contact }}
- $lost_contact
- {{ endif }}
- {{ if $insecure }}
- $insecure
- {{ endif }}
- {{ if $blocked }}
- $blocked
- {{ endif }}
- {{ if $ignored }}
- $ignored
- {{ endif }}
- {{ if $archived }}
- $archived
- {{ endif }}
-
- -
-
- {{ if $common_text }}
- $common_text
- {{ endif }}
- {{ if $all_friends }}
- $all_friends
- {{ endif }}
-
-
- - $lblrecent
- {{ if $lblsuggest }}
- - $lblsuggest
- {{ endif }}
-
-
--{{ if $contact.alt_text }}
$header{{ if $total }} ($total){{ endif }}
- -{{ if $finding }}$finding
{{ endif }} - -$title
--$desc -
-- $field.3 -
- - $field.3 -
- - $field.3 -
- - $field.3 -
- {{ for $items as $item }} -- $item.label
- {{ endfor }}
-
-
- -$title
- -- {{ for $groups as $group }} --
- {{ if $group.cid }}
-
- {{ endif }}
- {{ if $group.edit }}
-
- {{ endif }}
- $group.text
-
- {{ endfor }}
-
-$title
-- - -
diff --git a/view/theme/decaf-mobile/mail_list.tpl b/view/theme/decaf-mobile/mail_list.tpl deleted file mode 100644 index 74274a246..000000000 --- a/view/theme/decaf-mobile/mail_list.tpl +++ /dev/null @@ -1,16 +0,0 @@ -
$title
-$album.1
- -$pagename
- -$banner
- --- $viewprof
-- $cl_prof
-
-- $del_prof
-
-
-$title
- - - -- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - - -- {{ if $connect }} -- $connect
- {{ endif }}
- {{ if $wallmessage }}
- - $wallmessage
- {{ endif }}
-
-$header
- -$regtitle
-- - -
- -$license - -
$ptitle
- -$nickname_block - -- {{$field.3}} -
- - {{$field.3}} -
- - {{$field.3}} -
- - {{$field.3}} -
- {{foreach $items as $item}} -- {{$item.label}}
- {{/foreach}}
-
-
- -{{$title}}
- -- {{foreach $groups as $group}} --
- {{if $group.cid}}
-
- {{/if}}
- {{if $group.edit}}
-
- {{/if}}
- {{$group.text}}
-
- {{/foreach}}
-
--
- {{include file="field_checkbox.tpl" field=$lremember}} - -
-
{{$title}}
-- -
- -
-{{$desc}} -
-- -
diff --git a/view/theme/decaf-mobile/smarty3/mail_list.tpl b/view/theme/decaf-mobile/smarty3/mail_list.tpl deleted file mode 100644 index 538f6affb..000000000 --- a/view/theme/decaf-mobile/smarty3/mail_list.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
{{$title}}
--
-
-
-
-
-
-
-
-
- - - - --
{{$album.1}}
- -{{$pagename}}
- -{{$banner}}
- --- {{$viewprof}}
-- {{$cl_prof}}
-
-- {{$del_prof}}
-
-
--{{$lbl_about}} -
- - - --{{$lbl_hobbies}} -
- - - --{{$lbl_likes}} -
- - - --{{$lbl_dislikes}} -
- - - --{{$lbl_social}} -
- - - --{{$lbl_music}} -
- - - --{{$lbl_book}} -
- - - --{{$lbl_tv}} -
- - - --{{$lbl_film}} -
- - - --{{$lbl_love}} -
- - - --{{$lbl_work}} -
- - - --{{$lbl_school}} -
- - - -{{$title}}
- -- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - - -- {{if $connect}} -- {{$connect}}
- {{/if}}
- {{if $wallmessage}}
- - {{$wallmessage}}
- {{/if}}
-
-{{$header}}
- -{{$regtitle}}
-- -
{{$realpeople}}
- --{{if $oidlabel}} -
{{$fillwith}} {{$fillext}}
-- -{{if $invitations}} - -
{{$invite_desc}}
-- -
- -
- -
{{$nickdesc}}
-- -
- -{{$license}} - -
{{$ptitle}}
- -{{$nickname_block}} - -{{$h_pass}}
- -{{include file="field_password.tpl" field=$password1}} -{{include file="field_password.tpl" field=$password2}} -{{include file="field_password.tpl" field=$password3}} - -{{if $oid_enable}} -{{include file="field_input.tpl" field=$openid}} -{{/if}} - -{{$h_basic}}
- -{{include file="field_input.tpl" field=$username}} -{{include file="field_input.tpl" field=$email}} -{{include file="field_password.tpl" field=$password4}} -{{include file="field_custom.tpl" field=$timezone}} -{{include file="field_input.tpl" field=$defloc}} -{{include file="field_checkbox.tpl" field=$allowloc}} - - -{{$h_prv}}
- - - - -{{include file="field_input.tpl" field=$maxreq}} - -{{$profile_in_dir}} - -{{$profile_in_net_dir}} - -{{$hide_friends}} - -{{$hide_wall}} - -{{$blockwall}} - -{{$blocktags}} - -{{$suggestme}} - -{{$unkmail}} - - -{{include file="field_input.tpl" field=$cntunkmail}} - -{{include file="field_input.tpl" field=$expire.days}} - - -{{$expire.advanced}}
- {{include file="field_yesno.tpl" field=$expire.items}} - {{include file="field_yesno.tpl" field=$expire.notes}} - {{include file="field_yesno.tpl" field=$expire.starred}} - {{include file="field_yesno.tpl" field=$expire.network_only}} --
- - -{{$group_select}} - - -
{{$h_not}}
-{{$h_advn}}
--
-
{{$header}}
- -{{$subheader}}
- --
-
$header
- -$subheader
- -$title - $page
- -$h_pending
- {{ if $pending }} -$no_pending
- {{ endif }} - - - - -$h_users
- {{ if $users }} -$comunity_profiles_title
-$helpers.title.1
-How-To Guides-NewHere
-Friendica Support
-Let's talk
-Local Friendica -{{ endif }} -
$con_services.title.1
-$nv.title.1
-$nv.directory.1-$nv.global_directory.1
-$nv.match.1
-$nv.suggest.1
-$nv.invite.1 -$nv.search -{{ endif }} -
$lastusers_title
-$activeusers_title
-$photos_title
-$like_title
--{{ for $like_items as $i }} -- $i
-{{ endfor }}
-
-{{ endif }} -$twitter.title.1
-$mapquery.title.1
-- {{ for $contact.photo_menu as $c }} - {{ if $c.2 }} -- $c.0
- {{ else }}
- - $c.0
- {{ endif }}
- {{ endfor }}
-
-- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} -- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} -- $about
- $profile.about
{{ endif }} -$title
{{endif}} - {{if $desc}}- {{ for $items as $item }} -- $item.label
- {{ endfor }}
-
- -$title
-- {{ for $groups as $group }} --
-
-
- $group.text
-
- {{ if $group.edit }}
-
- {{ endif }}
- {{ if $group.cid }}
-
- {{ endif }}
-
- {{ endfor }}
-
--
- -#} diff --git a/view/theme/diabook/mail_display.tpl b/view/theme/diabook/mail_display.tpl deleted file mode 100644 index 2b680ae42..000000000 --- a/view/theme/diabook/mail_display.tpl +++ /dev/null @@ -1,12 +0,0 @@ -
$title
---
-
- $all
- {{ for $nets as $net }}
- -
-
-
- $net.name
-
- {{ endfor }}
-
-- $photo_menu -
- -$title
{{ endif }} - $body -$album.1
- --- $ps.usermenu.status.1
- - $ps.usermenu.photos.1
- - $ps.usermenu.contacts.1
- - $ps.usermenu.events.1
- - $ps.usermenu.notes.1
- - $ps.usermenu.pgroups.1
- - $ps.usermenu.community.1
-
- -- {{ for $profile.menu.entries as $e }} --
- $e.profile_name
-
- {{ endfor }}
- - $profile.menu.chg_photo
- - $profile.menu.cr_new
- - $profile.edit.3
-
-
-- $location
-
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}-
- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - -- {{ if $connect }} -- $connect
- {{ endif }}
-
-$header
- --- $ps.usermenu.status.1
- - $ps.usermenu.photos.1
- - $ps.usermenu.events.1
- - $ps.usermenu.notes.1
- - Public Groups
- - $ps.usermenu.community.1
-
- -- $item.item_photo_menu -
- -$item.title
{{ endif }} - $item.body - {{ if $item.has_cats }} -{{$title}} - {{$page}}
- -{{$h_pending}}
- {{if $pending}} -{{$no_pending}}
- {{/if}} - - - - -{{$h_users}}
- {{if $users}} -{{$comunity_profiles_title}}
-{{$helpers.title.1}}
-How-To Guides-NewHere
-Friendica Support
-Let's talk
-Local Friendica -{{/if}} -
{{$con_services.title.1}}
-{{$nv.title.1}}
-{{$nv.directory.1}}-{{$nv.global_directory.1}}
-{{$nv.match.1}}
-{{$nv.suggest.1}}
-{{$nv.invite.1}} -{{$nv.search}} -{{/if}} -
{{$lastusers_title}}
-{{$activeusers_title}}
-{{$photos_title}}
-{{$like_title}}
--{{foreach $like_items as $i}} -- {{$i}}
-{{/foreach}}
-
-{{/if}} -{{$twitter.title.1}}
-{{$mapquery.title.1}}
-- {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -- {{$c.0}}
- {{else}}
- - {{$c.0}}
- {{/if}}
- {{/foreach}}
-
-- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} -- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} -- {{$about}}
- {{$profile.about}}
{{/if}} -{{$title}}
{{/if}} - {{if $desc}}- {{foreach $items as $item}} -- {{$item.label}}
- {{/foreach}}
-
- -{{$title}}
-- {{foreach $groups as $group}} --
-
-
- {{$group.text}}
-
- {{if $group.edit}}
-
- {{/if}}
- {{if $group.cid}}
-
- {{/if}}
-
- {{/foreach}}
-
--
- -*}} diff --git a/view/theme/diabook/smarty3/mail_display.tpl b/view/theme/diabook/smarty3/mail_display.tpl deleted file mode 100644 index dc1fbbc6f..000000000 --- a/view/theme/diabook/smarty3/mail_display.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
{{$title}}
---
-
- {{$all}}
- {{foreach $nets as $net}}
- -
-
-
- {{$net.name}}
-
- {{/foreach}}
-
-- {{$photo_menu}} -
- -{{$title}}
{{/if}} - {{$body}} -{{$album.1}}
- --- {{$ps.usermenu.status.1}}
- - {{$ps.usermenu.photos.1}}
- - {{$ps.usermenu.contacts.1}}
- - {{$ps.usermenu.events.1}}
- - {{$ps.usermenu.notes.1}}
- - {{$ps.usermenu.pgroups.1}}
- - {{$ps.usermenu.community.1}}
-
- -- {{foreach $profile.menu.entries as $e}} --
- {{$e.profile_name}}
-
- {{/foreach}}
- - {{$profile.menu.chg_photo}}
- - {{$profile.menu.cr_new}}
- - {{$profile.edit.3}}
-
-
-- {{$location}}
-
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}-
- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -- {{if $connect}} -- {{$connect}}
- {{/if}}
-
-{{$header}}
- --- {{$ps.usermenu.status.1}}
- - {{$ps.usermenu.photos.1}}
- - {{$ps.usermenu.events.1}}
- - {{$ps.usermenu.notes.1}}
- - Public Groups
- - {{$ps.usermenu.community.1}}
-
- -- {{$item.item_photo_menu}} -
- -{{$item.title}}
{{/if}} - {{$item.body}} - {{if $item.has_cats}} --
Show/hide boxes at right-hand column
-{{include file="field_select.tpl" field=$close_pages}} -{{include file="field_select.tpl" field=$close_profiles}} -{{include file="field_select.tpl" field=$close_helpers}} -{{include file="field_select.tpl" field=$close_services}} -{{include file="field_select.tpl" field=$close_friends}} -{{include file="field_select.tpl" field=$close_lastusers}} -{{include file="field_select.tpl" field=$close_lastphotos}} -{{include file="field_select.tpl" field=$close_lastlikes}} -{{include file="field_select.tpl" field=$close_twitter}} -{{include file="field_input.tpl" field=$TSearchTerm}} -{{include file="field_select.tpl" field=$close_mapquery}} - -{{include file="field_input.tpl" field=$ELPosX}} - -{{include file="field_input.tpl" field=$ELPosY}} - -{{include file="field_input.tpl" field=$ELZoom}} - -- -
- {{$item.item_photo_menu}} -
- -{{$item.title}}
{{/if}} - {{$item.body}} - {{if $item.has_cats}} --
Show/hide boxes at right-hand column
-{{inc field_select.tpl with $field=$close_pages}}{{endinc}} -{{inc field_select.tpl with $field=$close_profiles}}{{endinc}} -{{inc field_select.tpl with $field=$close_helpers}}{{endinc}} -{{inc field_select.tpl with $field=$close_services}}{{endinc}} -{{inc field_select.tpl with $field=$close_friends}}{{endinc}} -{{inc field_select.tpl with $field=$close_lastusers}}{{endinc}} -{{inc field_select.tpl with $field=$close_lastphotos}}{{endinc}} -{{inc field_select.tpl with $field=$close_lastlikes}}{{endinc}} -{{inc field_select.tpl with $field=$close_twitter}}{{endinc}} -{{inc field_input.tpl with $field=$TSearchTerm}}{{endinc}} -{{inc field_select.tpl with $field=$close_mapquery}}{{endinc}} - -{{inc field_input.tpl with $field=$ELPosX}}{{endinc}} - -{{inc field_input.tpl with $field=$ELPosY}}{{endinc}} - -{{inc field_input.tpl with $field=$ELZoom}}{{endinc}} - -- -
- $item.item_photo_menu -
- -$item.title
{{ endif }} - $item.body - {{ if $item.has_cats }} --
-
-
-
-
-
-
-
-
- - - {{ if $qcomment }} -Help or '@NewHere'?
--Let's talk
-Local Friendica
-NewHere -
Connectable Services
--
-
-
-
-
-
-
-
-
- diff --git a/view/theme/dispy/contact_template.tpl b/view/theme/dispy/contact_template.tpl deleted file mode 100644 index e656ea552..000000000 --- a/view/theme/dispy/contact_template.tpl +++ /dev/null @@ -1,36 +0,0 @@ - -- {{ for $contact.photo_menu as $c }} - {{ if $c.2 }} -- $c.0
- {{ else }}
- - $c.0
- {{ endif }}
- {{ endfor }}
-
-$title
- -- {{ for $groups as $group }} --
- $group.text
- {{ if $group.edit }}
-
- {{ endif }}
- {{ if $group.cid }}
-
- {{ endif }}
-
- {{ endfor }}
-
--
$messages
- -$album.1
- -- {{ for $profile.menu.entries as $e }} --
- $e.profile_name
-
- {{ endfor }}
- - $profile.menu.chg_photo
- - $profile.menu.cr_new
-
-- {{ if $connect }} -- $connect
- {{ endif }}
-
-$title
- $searchbox - -- {{ for $saved as $search }} --
-
- $search.term
-
- {{ endfor }}
-
- -- $item.item_photo_menu -
--
-
-
-
-
-
-
-
-
- - - {{if $qcomment}} -Help or '@NewHere'?
--Let's talk
-Local Friendica
-NewHere -
Connectable Services
--
-
-
-
-
-
-
-
-
- diff --git a/view/theme/dispy/smarty3/contact_template.tpl b/view/theme/dispy/smarty3/contact_template.tpl deleted file mode 100644 index d22acd5a6..000000000 --- a/view/theme/dispy/smarty3/contact_template.tpl +++ /dev/null @@ -1,41 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -- {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -- {{$c.0}}
- {{else}}
- - {{$c.0}}
- {{/if}}
- {{/foreach}}
-
-{{$title}}
- -- {{foreach $groups as $group}} --
- {{$group.text}}
- {{if $group.edit}}
-
- {{/if}}
- {{if $group.cid}}
-
- {{/if}}
-
- {{/foreach}}
-
--
{{$messages}}
- -{{$album.1}}
- -- {{foreach $profile.menu.entries as $e}} --
- {{$e.profile_name}}
-
- {{/foreach}}
- - {{$profile.menu.chg_photo}}
- - {{$profile.menu.cr_new}}
-
-- {{if $connect}} -- {{$connect}}
- {{/if}}
-
-{{$title}}
- {{$searchbox}} - -- {{foreach $saved as $search}} --
-
- {{$search.term}}
-
- {{/foreach}}
-
- -- {{$item.item_photo_menu}} -
-- {{$item.item_photo_menu}} -
-- {{if $item.star}} --
-
-
- {{/if}}
- {{if $item.tagger}}
- -
-
-
- {{/if}}
- {{if $item.vote}}
- -
-
- {{if $item.vote.dislike}}
-
- {{/if}}
- {{if $item.vote.share}}
- {{/if}}
-
-
- {{/if}}
-
-
- {{if $item.filer}} -
- {{/if}}
- {{if $item.plink}}
-
- {{/if}}
- {{if $item.edpost}}
-
- {{/if}}
-
- -
- {{if $item.drop.dropping}}{{/if}}
- {{if $item.drop.pagedrop}}{{/if}}
-
-
- -- $item.item_photo_menu -
-- {{ if $item.star }} --
-
-
- {{ endif }}
- {{ if $item.tagger }}
- -
-
-
- {{ endif }}
- {{ if $item.vote }}
- -
-
- {{ if $item.vote.dislike }}
-
- {{ endif }}
- {{ if $item.vote.share }}
- {{ endif }}
-
-
- {{ endif }}
-
-
- {{ if $item.filer }} -
- {{ endif }}
- {{ if $item.plink }}
-
- {{ endif }}
- {{ if $item.edpost }}
-
- {{ endif }}
-
- -
- {{ if $item.drop.dropping }}{{ endif }}
- {{ if $item.drop.pagedrop }}{{ endif }}
-
-
- --
-
-
-
-
-
-
-
-
- - - {{ if $qcomment }} - - {{ endif }} - - --
-
-
-
-
-
-
-
-
- - - - -- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - - -- {{ if $connect }} -- $connect
- {{ endif }}
- {{ if $wallmessage }}
- - $wallmessage
- {{ endif }}
-
-$header
- --
-
-
-
-
-
-
-
-
- - - {{if $qcomment}} - - {{/if}} - - --
-
-
-
-
-
-
-
-
- - - - -- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - - -- {{if $connect}} -- {{$connect}}
- {{/if}}
- {{if $wallmessage}}
- - {{$wallmessage}}
- {{/if}}
-
-{{$header}}
- -$title
- -- {{ for $groups as $group }} --
- {{ if $group.cid }}
-
- {{ endif }}
- {{ if $group.edit }}
-
- {{ endif }}
- $group.text
-
- {{ endfor }}
-
--
- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - -- {{ if $connect }} -- $connect
- {{ endif }}
-
-- $item.item_photo_menu -
-{{$title}}
- -- {{foreach $groups as $group}} --
- {{if $group.cid}}
-
- {{/if}}
- {{if $group.edit}}
-
- {{/if}}
- {{$group.text}}
-
- {{/foreach}}
-
--
- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -- {{if $connect}} -- {{$connect}}
- {{/if}}
-
-- {{$item.item_photo_menu}} -
-$admtxt
--- $admin.site.1
- - $admin.users.1
- - $admin.plugins.1
- - $admin.themes.1
- - $admin.dbsync.1
-
- -{{ if $admin.update }} --- $admin.update.1
- - Important Changes
-
-{{ endif }} - - -{{ if $admin.plugins_admin }}$plugadmtxt
{{ endif }} -- {{ for $admin.plugins_admin as $l }} -- $l.1
- {{ endfor }}
-
- - -$logtxt
--- $admin.logs.1
-
- diff --git a/view/theme/frost-mobile/admin_site.tpl b/view/theme/frost-mobile/admin_site.tpl deleted file mode 100644 index 61f52b18d..000000000 --- a/view/theme/frost-mobile/admin_site.tpl +++ /dev/null @@ -1,67 +0,0 @@ - -$title - $page
- -$registration
- {{ inc field_input.tpl with $field=$register_text }}{{ endinc }} - {{ inc field_select.tpl with $field=$register_policy }}{{ endinc }} - - {{ inc field_checkbox.tpl with $field=$no_multi_reg }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_openid }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_regfullname }}{{ endinc }} - - - -$upload
- {{ inc field_input.tpl with $field=$maximagesize }}{{ endinc }} - {{ inc field_input.tpl with $field=$maximagelength }}{{ endinc }} - {{ inc field_input.tpl with $field=$jpegimagequality }}{{ endinc }} - -$corporate
- {{ inc field_input.tpl with $field=$allowed_sites }}{{ endinc }} - {{ inc field_input.tpl with $field=$allowed_email }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$block_public }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$force_publish }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_community_page }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$ostatus_disabled }}{{ endinc }} - {{ inc field_select.tpl with $field=$ostatus_poll_interval }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$diaspora_enabled }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }} - {{ inc field_input.tpl with $field=$global_directory }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$newuser_private }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$enotify_no_content }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$private_addons }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$disable_embedded }}{{ endinc }} - - -$advanced
- {{ inc field_checkbox.tpl with $field=$no_utf }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$verifyssl }}{{ endinc }} - {{ inc field_input.tpl with $field=$proxy }}{{ endinc }} - {{ inc field_input.tpl with $field=$proxyuser }}{{ endinc }} - {{ inc field_input.tpl with $field=$timeout }}{{ endinc }} - {{ inc field_input.tpl with $field=$delivery_interval }}{{ endinc }} - {{ inc field_input.tpl with $field=$poll_interval }}{{ endinc }} - {{ inc field_input.tpl with $field=$maxloadavg }}{{ endinc }} - {{ inc field_input.tpl with $field=$abandon_days }}{{ endinc }} - - - -$title - $page
- -$h_pending
- {{ if $pending }} -$no_pending
- {{ endif }} - - - - -$h_users
- {{ if $users }} --
-
-
-
-
-{##}
-
- {##} -{##} - - {{ if $qcomment }} - - {{ endif }} - - -- {{ for $tabs as $tab }} -- $tab.label
- {{ endfor }}
-
-
diff --git a/view/theme/frost-mobile/contact_block.tpl b/view/theme/frost-mobile/contact_block.tpl deleted file mode 100644 index a8e34fce1..000000000 --- a/view/theme/frost-mobile/contact_block.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{##} diff --git a/view/theme/frost-mobile/contact_edit.tpl b/view/theme/frost-mobile/contact_edit.tpl deleted file mode 100644 index e5f12950c..000000000 --- a/view/theme/frost-mobile/contact_edit.tpl +++ /dev/null @@ -1,93 +0,0 @@ - -$header
- --$relation_text
- $nettype
- {{ if $lost_contact }}
- $lost_contact
- {{ endif }}
- {{ if $insecure }}
- $insecure
- {{ endif }}
- {{ if $blocked }}
- $blocked
- {{ endif }}
- {{ if $ignored }}
- $ignored
- {{ endif }}
- {{ if $archived }}
- $archived
- {{ endif }}
-
- -
-
- {{ if $common_text }}
- $common_text
- {{ endif }}
- {{ if $all_friends }}
- $all_friends
- {{ endif }}
-
-
- - $lblrecent
- {{ if $lblsuggest }}
- - $lblsuggest
- {{ endif }}
-
-
-$lbl_info1
- - -$lbl_vis1
-$lbl_vis2
-- {{ for $contact.photo_menu as $c }} - {{ if $c.2 }} -- $c.0
- {{ else }}
- - $c.0
- {{ endif }}
- {{ endfor }}
-
--{{ if $contact.alt_text }}
$header{{ if $total }} ($total){{ endif }}
- -{{ if $finding }}$finding
{{ endif }} - -$title
--$desc -
-- $field.3 -
- - $field.3 -
- - $field.3 -
- - $field.3 -
- {{ for $items as $item }} -- $item.label
- {{ endfor }}
-
-
- --
-
- {{ inc field_checkbox.tpl with $field=$lremember }}{{ endinc }} - -
-
$title
-- -
- -
-$desc -
-- -
diff --git a/view/theme/frost-mobile/mail_list.tpl b/view/theme/frost-mobile/mail_list.tpl deleted file mode 100644 index 5be7f3862..000000000 --- a/view/theme/frost-mobile/mail_list.tpl +++ /dev/null @@ -1,16 +0,0 @@ -
-
-
-
-
-
-
-
-
-
- - - - --
$album.1
- -$pagename
- -$banner
- --- $viewprof
-- $cl_prof
-
-- $del_prof
-
-
--$lbl_about -
- - - --$lbl_hobbies -
- - - --$lbl_likes -
- - - --$lbl_dislikes -
- - - --$lbl_social -
- - - --$lbl_music -
- - - --$lbl_book -
- - - --$lbl_tv -
- - - --$lbl_film -
- - - --$lbl_love -
- - - --$lbl_work -
- - - --$lbl_school -
- - - -$title
- -- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - - -- {{ if $connect }} -- $connect
- {{ endif }}
- {{ if $wallmessage }}
- - $wallmessage
- {{ endif }}
-
-$header
- -$regtitle
-- -
$realpeople
- --{{ if $oidlabel }} -
$fillwith $fillext
-- -{{ if $invitations }} - -
$invite_desc
-- -
- -
- -
$nickdesc
-- -
- -$license - -
$ptitle
- -$nickname_block - -$h_pass
- -{{inc field_password.tpl with $field=$password1 }}{{endinc}} -{{inc field_password.tpl with $field=$password2 }}{{endinc}} -{{inc field_password.tpl with $field=$password3 }}{{endinc}} - -{{ if $oid_enable }} -{{inc field_input.tpl with $field=$openid }}{{endinc}} -{{ endif }} - -$h_basic
- -{{inc field_input.tpl with $field=$username }}{{endinc}} -{{inc field_input.tpl with $field=$email }}{{endinc}} -{{inc field_password.tpl with $field=$password4 }}{{endinc}} -{{inc field_custom.tpl with $field=$timezone }}{{endinc}} -{{inc field_input.tpl with $field=$defloc }}{{endinc}} -{{inc field_checkbox.tpl with $field=$allowloc }}{{endinc}} - - -$h_prv
- - - - -{{inc field_input.tpl with $field=$maxreq }}{{endinc}} - -$profile_in_dir - -$profile_in_net_dir - -$hide_friends - -$hide_wall - -$blockwall - -$blocktags - -$suggestme - -$unkmail - - -{{inc field_input.tpl with $field=$cntunkmail }}{{endinc}} - -{{inc field_input.tpl with $field=$expire.days }}{{endinc}} - - -$expire.advanced
- {{ inc field_yesno.tpl with $field=$expire.items }}{{endinc}} - {{ inc field_yesno.tpl with $field=$expire.notes }}{{endinc}} - {{ inc field_yesno.tpl with $field=$expire.starred }}{{endinc}} - {{ inc field_yesno.tpl with $field=$expire.network_only }}{{endinc}} -- - -$group_select - - -
$h_not
-$h_advn
-{{$admtxt}}
--- {{$admin.site.1}}
- - {{$admin.users.1}}
- - {{$admin.plugins.1}}
- - {{$admin.themes.1}}
- - {{$admin.dbsync.1}}
-
- -{{if $admin.update}} --- {{$admin.update.1}}
- - Important Changes
-
-{{/if}} - - -{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} -- {{foreach $admin.plugins_admin as $l}} -- {{$l.1}}
- {{/foreach}}
-
- - -{{$logtxt}}
--- {{$admin.logs.1}}
-
- diff --git a/view/theme/frost-mobile/smarty3/admin_site.tpl b/view/theme/frost-mobile/smarty3/admin_site.tpl deleted file mode 100644 index 035024e68..000000000 --- a/view/theme/frost-mobile/smarty3/admin_site.tpl +++ /dev/null @@ -1,72 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$title}} - {{$page}}
- -{{$registration}}
- {{include file="field_input.tpl" field=$register_text}} - {{include file="field_select.tpl" field=$register_policy}} - - {{include file="field_checkbox.tpl" field=$no_multi_reg}} - {{include file="field_checkbox.tpl" field=$no_openid}} - {{include file="field_checkbox.tpl" field=$no_regfullname}} - - - -{{$upload}}
- {{include file="field_input.tpl" field=$maximagesize}} - {{include file="field_input.tpl" field=$maximagelength}} - {{include file="field_input.tpl" field=$jpegimagequality}} - -{{$corporate}}
- {{include file="field_input.tpl" field=$allowed_sites}} - {{include file="field_input.tpl" field=$allowed_email}} - {{include file="field_checkbox.tpl" field=$block_public}} - {{include file="field_checkbox.tpl" field=$force_publish}} - {{include file="field_checkbox.tpl" field=$no_community_page}} - {{include file="field_checkbox.tpl" field=$ostatus_disabled}} - {{include file="field_select.tpl" field=$ostatus_poll_interval}} - {{include file="field_checkbox.tpl" field=$diaspora_enabled}} - {{include file="field_checkbox.tpl" field=$dfrn_only}} - {{include file="field_input.tpl" field=$global_directory}} - {{include file="field_checkbox.tpl" field=$thread_allow}} - {{include file="field_checkbox.tpl" field=$newuser_private}} - {{include file="field_checkbox.tpl" field=$enotify_no_content}} - {{include file="field_checkbox.tpl" field=$private_addons}} - {{include file="field_checkbox.tpl" field=$disable_embedded}} - - -{{$advanced}}
- {{include file="field_checkbox.tpl" field=$no_utf}} - {{include file="field_checkbox.tpl" field=$verifyssl}} - {{include file="field_input.tpl" field=$proxy}} - {{include file="field_input.tpl" field=$proxyuser}} - {{include file="field_input.tpl" field=$timeout}} - {{include file="field_input.tpl" field=$delivery_interval}} - {{include file="field_input.tpl" field=$poll_interval}} - {{include file="field_input.tpl" field=$maxloadavg}} - {{include file="field_input.tpl" field=$abandon_days}} - - - -{{$title}} - {{$page}}
- -{{$h_pending}}
- {{if $pending}} -{{$no_pending}}
- {{/if}} - - - - -{{$h_users}}
- {{if $users}} --
-
-
-
-
-{{**}}
-
- {{**}} -{{**}} - - {{if $qcomment}} - - {{/if}} - - -- {{foreach $tabs as $tab}} -- {{$tab.label}}
- {{/foreach}}
-
-
diff --git a/view/theme/frost-mobile/smarty3/contact_block.tpl b/view/theme/frost-mobile/smarty3/contact_block.tpl deleted file mode 100644 index 5a0a26b87..000000000 --- a/view/theme/frost-mobile/smarty3/contact_block.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{**}} diff --git a/view/theme/frost-mobile/smarty3/contact_edit.tpl b/view/theme/frost-mobile/smarty3/contact_edit.tpl deleted file mode 100644 index 924acb0c1..000000000 --- a/view/theme/frost-mobile/smarty3/contact_edit.tpl +++ /dev/null @@ -1,98 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$header}}
- --{{$relation_text}}
- {{$nettype}}
- {{if $lost_contact}}
- {{$lost_contact}}
- {{/if}}
- {{if $insecure}}
- {{$insecure}}
- {{/if}}
- {{if $blocked}}
- {{$blocked}}
- {{/if}}
- {{if $ignored}}
- {{$ignored}}
- {{/if}}
- {{if $archived}}
- {{$archived}}
- {{/if}}
-
- -
-
- {{if $common_text}}
- {{$common_text}}
- {{/if}}
- {{if $all_friends}}
- {{$all_friends}}
- {{/if}}
-
-
- - {{$lblrecent}}
- {{if $lblsuggest}}
- - {{$lblsuggest}}
- {{/if}}
-
-
-{{$lbl_info1}}
- - -{{$lbl_vis1}}
-{{$lbl_vis2}}
-- {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -- {{$c.0}}
- {{else}}
- - {{$c.0}}
- {{/if}}
- {{/foreach}}
-
--{{if $contact.alt_text}}
{{$header}}{{if $total}} ({{$total}}){{/if}}
- -{{if $finding}}{{$finding}}
{{/if}} - -{{$title}}
--{{$desc}} -
-- {{$field.3}} -
- - {{$field.3}} -
- - {{$field.3}} -
- - {{$field.3}} -
- {{foreach $items as $item}} -- {{$item.label}}
- {{/foreach}}
-
-
- --
-
- {{include file="field_checkbox.tpl" field=$lremember}} - -
-
{{$title}}
-- -
- -
-{{$desc}} -
-- -
diff --git a/view/theme/frost-mobile/smarty3/mail_list.tpl b/view/theme/frost-mobile/smarty3/mail_list.tpl deleted file mode 100644 index 0607c15c7..000000000 --- a/view/theme/frost-mobile/smarty3/mail_list.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
-
-
-
-
-
-
-
-
-
- - - - --
{{$album.1}}
- -{{$pagename}}
- -{{$banner}}
- --- {{$viewprof}}
-- {{$cl_prof}}
-
-- {{$del_prof}}
-
-
--{{$lbl_about}} -
- - - --{{$lbl_hobbies}} -
- - - --{{$lbl_likes}} -
- - - --{{$lbl_dislikes}} -
- - - --{{$lbl_social}} -
- - - --{{$lbl_music}} -
- - - --{{$lbl_book}} -
- - - --{{$lbl_tv}} -
- - - --{{$lbl_film}} -
- - - --{{$lbl_love}} -
- - - --{{$lbl_work}} -
- - - --{{$lbl_school}} -
- - - -{{$title}}
- -- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - - -- {{if $connect}} -- {{$connect}}
- {{/if}}
- {{if $wallmessage}}
- - {{$wallmessage}}
- {{/if}}
-
-{{$header}}
- -{{$regtitle}}
-- -
{{$realpeople}}
- --{{if $oidlabel}} -
{{$fillwith}} {{$fillext}}
-- -{{if $invitations}} - -
{{$invite_desc}}
-- -
- -
- -
{{$nickdesc}}
-- -
- -{{$license}} - -
{{$ptitle}}
- -{{$nickname_block}} - -{{$h_pass}}
- -{{include file="field_password.tpl" field=$password1}} -{{include file="field_password.tpl" field=$password2}} -{{include file="field_password.tpl" field=$password3}} - -{{if $oid_enable}} -{{include file="field_input.tpl" field=$openid}} -{{/if}} - -{{$h_basic}}
- -{{include file="field_input.tpl" field=$username}} -{{include file="field_input.tpl" field=$email}} -{{include file="field_password.tpl" field=$password4}} -{{include file="field_custom.tpl" field=$timezone}} -{{include file="field_input.tpl" field=$defloc}} -{{include file="field_checkbox.tpl" field=$allowloc}} - - -{{$h_prv}}
- - - - -{{include file="field_input.tpl" field=$maxreq}} - -{{$profile_in_dir}} - -{{$profile_in_net_dir}} - -{{$hide_friends}} - -{{$hide_wall}} - -{{$blockwall}} - -{{$blocktags}} - -{{$suggestme}} - -{{$unkmail}} - - -{{include file="field_input.tpl" field=$cntunkmail}} - -{{include file="field_input.tpl" field=$expire.days}} - - -{{$expire.advanced}}
- {{include file="field_yesno.tpl" field=$expire.items}} - {{include file="field_yesno.tpl" field=$expire.notes}} - {{include file="field_yesno.tpl" field=$expire.starred}} - {{include file="field_yesno.tpl" field=$expire.network_only}} -- - -{{$group_select}} - - -
{{$h_not}}
-{{$h_advn}}
--
-
$admtxt
--- $admin.site.1
- - $admin.users.1
- - $admin.plugins.1
- - $admin.themes.1
- - $admin.dbsync.1
-
- -{{ if $admin.update }} --- $admin.update.1
- - Important Changes
-
-{{ endif }} - - -{{ if $admin.plugins_admin }}$plugadmtxt
{{ endif }} -- {{ for $admin.plugins_admin as $l }} -- $l.1
- {{ endfor }}
-
- - -$logtxt
--- $admin.logs.1
-
- diff --git a/view/theme/frost/admin_site.tpl b/view/theme/frost/admin_site.tpl deleted file mode 100644 index 07a76a827..000000000 --- a/view/theme/frost/admin_site.tpl +++ /dev/null @@ -1,76 +0,0 @@ - -$title - $page
- -$registration
- {{ inc field_input.tpl with $field=$register_text }}{{ endinc }} - {{ inc field_select.tpl with $field=$register_policy }}{{ endinc }} - {{ inc field_input.tpl with $field=$daily_registrations }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_multi_reg }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_openid }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_regfullname }}{{ endinc }} - - - -$upload
- {{ inc field_input.tpl with $field=$maximagesize }}{{ endinc }} - {{ inc field_input.tpl with $field=$maximagelength }}{{ endinc }} - {{ inc field_input.tpl with $field=$jpegimagequality }}{{ endinc }} - -$corporate
- {{ inc field_input.tpl with $field=$allowed_sites }}{{ endinc }} - {{ inc field_input.tpl with $field=$allowed_email }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$block_public }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$force_publish }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$no_community_page }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$ostatus_disabled }}{{ endinc }} - {{ inc field_select.tpl with $field=$ostatus_poll_interval }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$diaspora_enabled }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }} - {{ inc field_input.tpl with $field=$global_directory }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$newuser_private }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$enotify_no_content }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$private_addons }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$disable_embedded }}{{ endinc }} - - -$advanced
- {{ inc field_checkbox.tpl with $field=$no_utf }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$verifyssl }}{{ endinc }} - {{ inc field_input.tpl with $field=$proxy }}{{ endinc }} - {{ inc field_input.tpl with $field=$proxyuser }}{{ endinc }} - {{ inc field_input.tpl with $field=$timeout }}{{ endinc }} - {{ inc field_input.tpl with $field=$delivery_interval }}{{ endinc }} - {{ inc field_input.tpl with $field=$poll_interval }}{{ endinc }} - {{ inc field_input.tpl with $field=$maxloadavg }}{{ endinc }} - {{ inc field_input.tpl with $field=$abandon_days }}{{ endinc }} - {{ inc field_input.tpl with $field=$lockpath }}{{ endinc }} - {{ inc field_input.tpl with $field=$temppath }}{{ endinc }} - {{ inc field_input.tpl with $field=$basepath }}{{ endinc }} - -$performance
- {{ inc field_checkbox.tpl with $field=$use_fulltext_engine }}{{ endinc }} - {{ inc field_input.tpl with $field=$itemcache }}{{ endinc }} - {{ inc field_input.tpl with $field=$itemcache_duration }}{{ endinc }} - - - - -$title - $page
- -$h_pending
- {{ if $pending }} -$no_pending
- {{ endif }} - - - - -$h_users
- {{ if $users }} --
-
-
-
-
-
-
-
-
-{##} -{##} - - {{ if $qcomment }} - - {{ endif }} - - -$header
- --$relation_text
- $nettype
- {{ if $lost_contact }}
- $lost_contact
- {{ endif }}
- {{ if $insecure }}
- $insecure
- {{ endif }}
- {{ if $blocked }}
- $blocked
- {{ endif }}
- {{ if $ignored }}
- $ignored
- {{ endif }}
- {{ if $archived }}
- $archived
- {{ endif }}
-
- -
-
- {{ if $common_text }}
- $common_text
- {{ endif }}
- {{ if $all_friends }}
- $all_friends
- {{ endif }}
-
-
- - $lblrecent
- {{ if $lblsuggest }}
- - $lblsuggest
- {{ endif }}
-
-
-$lbl_info1
- - -$lbl_vis1
-$lbl_vis2
-- {{ for $contact.photo_menu as $c }} - {{ if $c.2 }} -- $c.0
- {{ else }}
- - $c.0
- {{ endif }}
- {{ endfor }}
-
--{{ if $contact.alt_text }}
$header{{ if $total }} ($total){{ endif }}
- -{{ if $finding }}$finding
{{ endif }} - -$tabs - -$title
--$desc -
-$title
- --$desc -
- -- -
-- FileBrowser
-
-- {{ for $folders as $f }}- $f.1
{{ endfor }}
-
-- {{ for $files as $f }} -- $f.1
- {{ endfor }}
-
--
-
- {{ inc field_checkbox.tpl with $field=$lremember }}{{ endinc }} - -
- -
$title
-- -
-$desc -
-- -
diff --git a/view/theme/frost/mail_list.tpl b/view/theme/frost/mail_list.tpl deleted file mode 100644 index 5be7f3862..000000000 --- a/view/theme/frost/mail_list.tpl +++ /dev/null @@ -1,16 +0,0 @@ -
-
-
-
-
-
-
-
-
-
- - - - -- -
$album.1
- -$pagename
- -$title
- - -$banner
- --- $viewprof
-- $cl_prof
-
-- $del_prof
-
-
--$lbl_about -
- - - --$lbl_hobbies -
- - - --$lbl_likes -
- - - --$lbl_dislikes -
- - - --$lbl_social -
- - - --$lbl_music -
- - - --$lbl_book -
- - - --$lbl_tv -
- - - --$lbl_film -
- - - --$lbl_love -
- - - --$lbl_work -
- - - --$lbl_school -
- - - -- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - - -- {{ if $connect }} -- $connect
- {{ endif }}
- {{ if $wallmessage }}
- - $wallmessage
- {{ endif }}
-
-$header
- -$regtitle
-- -
$realpeople
- --{{ if $oidlabel }} -
$fillwith $fillext
-- -{{ if $invitations }} - -
$invite_desc
-- -
$nickdesc
-- -
- -
- $item.item_photo_menu -
- {##} -{{$admtxt}}
--- {{$admin.site.1}}
- - {{$admin.users.1}}
- - {{$admin.plugins.1}}
- - {{$admin.themes.1}}
- - {{$admin.dbsync.1}}
-
- -{{if $admin.update}} --- {{$admin.update.1}}
- - Important Changes
-
-{{/if}} - - -{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} -- {{foreach $admin.plugins_admin as $l}} -- {{$l.1}}
- {{/foreach}}
-
- - -{{$logtxt}}
--- {{$admin.logs.1}}
-
- diff --git a/view/theme/frost/smarty3/admin_site.tpl b/view/theme/frost/smarty3/admin_site.tpl deleted file mode 100644 index af0eebacc..000000000 --- a/view/theme/frost/smarty3/admin_site.tpl +++ /dev/null @@ -1,81 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - -{{$title}} - {{$page}}
- -{{$registration}}
- {{include file="field_input.tpl" field=$register_text}} - {{include file="field_select.tpl" field=$register_policy}} - {{include file="field_input.tpl" field=$daily_registrations}} - {{include file="field_checkbox.tpl" field=$no_multi_reg}} - {{include file="field_checkbox.tpl" field=$no_openid}} - {{include file="field_checkbox.tpl" field=$no_regfullname}} - - - -{{$upload}}
- {{include file="field_input.tpl" field=$maximagesize}} - {{include file="field_input.tpl" field=$maximagelength}} - {{include file="field_input.tpl" field=$jpegimagequality}} - -{{$corporate}}
- {{include file="field_input.tpl" field=$allowed_sites}} - {{include file="field_input.tpl" field=$allowed_email}} - {{include file="field_checkbox.tpl" field=$block_public}} - {{include file="field_checkbox.tpl" field=$force_publish}} - {{include file="field_checkbox.tpl" field=$no_community_page}} - {{include file="field_checkbox.tpl" field=$ostatus_disabled}} - {{include file="field_select.tpl" field=$ostatus_poll_interval}} - {{include file="field_checkbox.tpl" field=$diaspora_enabled}} - {{include file="field_checkbox.tpl" field=$dfrn_only}} - {{include file="field_input.tpl" field=$global_directory}} - {{include file="field_checkbox.tpl" field=$thread_allow}} - {{include file="field_checkbox.tpl" field=$newuser_private}} - {{include file="field_checkbox.tpl" field=$enotify_no_content}} - {{include file="field_checkbox.tpl" field=$private_addons}} - {{include file="field_checkbox.tpl" field=$disable_embedded}} - - -{{$advanced}}
- {{include file="field_checkbox.tpl" field=$no_utf}} - {{include file="field_checkbox.tpl" field=$verifyssl}} - {{include file="field_input.tpl" field=$proxy}} - {{include file="field_input.tpl" field=$proxyuser}} - {{include file="field_input.tpl" field=$timeout}} - {{include file="field_input.tpl" field=$delivery_interval}} - {{include file="field_input.tpl" field=$poll_interval}} - {{include file="field_input.tpl" field=$maxloadavg}} - {{include file="field_input.tpl" field=$abandon_days}} - {{include file="field_input.tpl" field=$lockpath}} - {{include file="field_input.tpl" field=$temppath}} - {{include file="field_input.tpl" field=$basepath}} - -{{$performance}}
- {{include file="field_checkbox.tpl" field=$use_fulltext_engine}} - {{include file="field_input.tpl" field=$itemcache}} - {{include file="field_input.tpl" field=$itemcache_duration}} - - - - -{{$title}} - {{$page}}
- -{{$h_pending}}
- {{if $pending}} -{{$no_pending}}
- {{/if}} - - - - -{{$h_users}}
- {{if $users}} --
-
-
-
-
-
-
-
-
-{{**}} -{{**}} - - {{if $qcomment}} - - {{/if}} - - -{{$header}}
- --{{$relation_text}}
- {{$nettype}}
- {{if $lost_contact}}
- {{$lost_contact}}
- {{/if}}
- {{if $insecure}}
- {{$insecure}}
- {{/if}}
- {{if $blocked}}
- {{$blocked}}
- {{/if}}
- {{if $ignored}}
- {{$ignored}}
- {{/if}}
- {{if $archived}}
- {{$archived}}
- {{/if}}
-
- -
-
- {{if $common_text}}
- {{$common_text}}
- {{/if}}
- {{if $all_friends}}
- {{$all_friends}}
- {{/if}}
-
-
- - {{$lblrecent}}
- {{if $lblsuggest}}
- - {{$lblsuggest}}
- {{/if}}
-
-
-{{$lbl_info1}}
- - -{{$lbl_vis1}}
-{{$lbl_vis2}}
-- {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -- {{$c.0}}
- {{else}}
- - {{$c.0}}
- {{/if}}
- {{/foreach}}
-
--{{if $contact.alt_text}}
{{$header}}{{if $total}} ({{$total}}){{/if}}
- -{{if $finding}}{{$finding}}
{{/if}} - -{{$tabs}} - -{{$title}}
--{{$desc}} -
-{{$title}}
- --{{$desc}} -
- -- -
-- FileBrowser
-
-- {{foreach $folders as $f}}- {{$f.1}}
{{/foreach}}
-
-- {{foreach $files as $f}} -- {{$f.1}}
- {{/foreach}}
-
--
-
- {{include file="field_checkbox.tpl" field=$lremember}} - -
- -
{{$title}}
-- -
-{{$desc}} -
-- -
diff --git a/view/theme/frost/smarty3/mail_list.tpl b/view/theme/frost/smarty3/mail_list.tpl deleted file mode 100644 index 0607c15c7..000000000 --- a/view/theme/frost/smarty3/mail_list.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
-
-
-
-
-
-
-
-
-
- - - - -- -
{{$album.1}}
- -{{$pagename}}
- -{{$title}}
- - -{{$banner}}
- --- {{$viewprof}}
-- {{$cl_prof}}
-
-- {{$del_prof}}
-
-
--{{$lbl_about}} -
- - - --{{$lbl_hobbies}} -
- - - --{{$lbl_likes}} -
- - - --{{$lbl_dislikes}} -
- - - --{{$lbl_social}} -
- - - --{{$lbl_music}} -
- - - --{{$lbl_book}} -
- - - --{{$lbl_tv}} -
- - - --{{$lbl_film}} -
- - - --{{$lbl_love}} -
- - - --{{$lbl_work}} -
- - - --{{$lbl_school}} -
- - - -- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - - -- {{if $connect}} -- {{$connect}}
- {{/if}}
- {{if $wallmessage}}
- - {{$wallmessage}}
- {{/if}}
-
-{{$header}}
- -{{$regtitle}}
-- -
{{$realpeople}}
- --{{if $oidlabel}} -
{{$fillwith}} {{$fillext}}
-- -{{if $invitations}} - -
{{$invite_desc}}
-- -
{{$nickdesc}}
-- -
- -
- {{$item.item_photo_menu}} -
- {{**}} -- {{$item.item_photo_menu}} -
-{{**}} - --
- $item.item_photo_menu -
-{##} - --
-
-
-
-
-
-
-
-
-
- - {{ if $qcomment }} - - {{ endif }} - -- {{ for $contact.photo_menu as $c }} - {{ if $c.2 }} -- $c.0
- {{ else }}
- - $c.0
- {{ endif }}
- {{ endfor }}
-
- {{ endif }} -diff --git a/view/theme/quattro/fileas_widget.tpl b/view/theme/quattro/fileas_widget.tpl deleted file mode 100644 index 1e5a76044..000000000 --- a/view/theme/quattro/fileas_widget.tpl +++ /dev/null @@ -1,12 +0,0 @@ -
$title
--- $all
- {{ for $terms as $term }}
- - $term.name
- {{ endfor }}
-
- -$title
{{endif}} - {{if $desc}}- {{ for $items as $item }} -- $item.label
- {{ endfor }}
-
- -$title
- $add -- {{ for $groups as $group }} --
-
- $group.text
-
- {{ if $group.edit }}
- $group.edit.title
- {{ endif }}
- {{ if $group.cid }}
-
- {{ endif }}
-
- {{ endfor }}
-
--
- -#} diff --git a/view/theme/quattro/mail_display.tpl b/view/theme/quattro/mail_display.tpl deleted file mode 100644 index 2b680ae42..000000000 --- a/view/theme/quattro/mail_display.tpl +++ /dev/null @@ -1,12 +0,0 @@ -
$title
--- $all
- {{ for $nets as $net }}
-
- $net.name
- {{ endfor }}
-
- -$album.1
- -- {{ for $profile.menu.entries as $e }} --
- $e.profile_name
-
- {{ endfor }}
- - $profile.menu.chg_photo
- - $profile.menu.cr_new
-
-
-- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - -- {{ if $connect }} -- $connect
- {{ endif }}
- {{ if $wallmessage }}
- - $wallmessage
- {{ endif }}
-
-$header
- -$title
- -- {{ for $saved as $search }} --
- $search.term
-
-
- {{ endfor }}
-
- - $searchbox - -- $item.item_photo_menu -
- -$item.title
{{ endif }} - $item.body --
-
-
-
-
-
-
-
-
- - {{if $qcomment}} - - {{/if}} - -- {{foreach $contact.photo_menu as $c}} - {{if $c.2}} -- {{$c.0}}
- {{else}}
- - {{$c.0}}
- {{/if}}
- {{/foreach}}
-
- {{/if}} -diff --git a/view/theme/quattro/smarty3/fileas_widget.tpl b/view/theme/quattro/smarty3/fileas_widget.tpl deleted file mode 100644 index 555ac5feb..000000000 --- a/view/theme/quattro/smarty3/fileas_widget.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
{{$title}}
--- {{$all}}
- {{foreach $terms as $term}}
- - {{$term.name}}
- {{/foreach}}
-
- -{{$title}}
{{/if}} - {{if $desc}}- {{foreach $items as $item}} -- {{$item.label}}
- {{/foreach}}
-
- -{{$title}}
- {{$add}} -- {{foreach $groups as $group}} --
-
- {{$group.text}}
-
- {{if $group.edit}}
- {{$group.edit.title}}
- {{/if}}
- {{if $group.cid}}
-
- {{/if}}
-
- {{/foreach}}
-
--
- -*}} diff --git a/view/theme/quattro/smarty3/mail_display.tpl b/view/theme/quattro/smarty3/mail_display.tpl deleted file mode 100644 index dc1fbbc6f..000000000 --- a/view/theme/quattro/smarty3/mail_display.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -
{{$title}}
--- {{$all}}
- {{foreach $nets as $net}}
-
- {{$net.name}}
- {{/foreach}}
-
- -{{$album.1}}
- -- {{foreach $profile.menu.entries as $e}} --
- {{$e.profile_name}}
-
- {{/foreach}}
- - {{$profile.menu.chg_photo}}
- - {{$profile.menu.cr_new}}
-
-
-- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -- {{if $connect}} -- {{$connect}}
- {{/if}}
- {{if $wallmessage}}
- - {{$wallmessage}}
- {{/if}}
-
-{{$header}}
- -{{$title}}
- -- {{foreach $saved as $search}} --
- {{$search.term}}
-
-
- {{/foreach}}
-
- - {{$searchbox}} - -- {{$item.item_photo_menu}} -
- -{{$item.title}}
{{/if}} - {{$item.body}} -- {{$item.item_photo_menu}} -
- -- {{$item.item_photo_menu}} -
- -{{$item.title}}
{{/if}} - {{$item.body}} -{{$item.to}} {{$item.owner_name}} {{$item.vwall}} - {{/if}} -
- $item.item_photo_menu -
- -- $item.item_photo_menu -
- -$item.title
{{ endif }} - $item.body -$item.to $item.owner_name $item.vwall - {{ endif }} -
diff --git a/view/theme/slackr/smarty3/birthdays_reminder.tpl b/view/theme/slackr/smarty3/birthdays_reminder.tpl deleted file mode 100644 index 8af03b33a..000000000 --- a/view/theme/slackr/smarty3/birthdays_reminder.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} -{{if $classtoday}} - -{{/if}} - diff --git a/view/theme/slackr/smarty3/events_reminder.tpl b/view/theme/slackr/smarty3/events_reminder.tpl deleted file mode 100644 index 0f699a302..000000000 --- a/view/theme/slackr/smarty3/events_reminder.tpl +++ /dev/null @@ -1,44 +0,0 @@ -{{* - * AUTOMATICALLY GENERATED TEMPLATE - * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN - * - *}} - - - - -
diff --git a/view/theme/smoothly/bottom.tpl b/view/theme/smoothly/bottom.tpl deleted file mode 100644 index 347d87094..000000000 --- a/view/theme/smoothly/bottom.tpl +++ /dev/null @@ -1,52 +0,0 @@ - - diff --git a/view/theme/smoothly/follow.tpl b/view/theme/smoothly/follow.tpl deleted file mode 100644 index 09258b9c3..000000000 --- a/view/theme/smoothly/follow.tpl +++ /dev/null @@ -1,8 +0,0 @@ -
$connect
-- -
-
- -
- $item.item_photo_menu -
-{{$connect}}
-- -
-
- -
- {{$item.item_photo_menu}} -
-- {{$item.item_photo_menu}} -
--
- $item.item_photo_menu -
--
$title
- - -$title
- -- {{ for $groups as $group }} --
- {{ if $group.cid }}
-
- {{ endif }}
- {{ if $group.edit }}
-
- {{ endif }}
- $group.text
-
- {{ endfor }}
-
--
$tags - - {{ if $connlnk }} -
$desc
- -$album.1
- -- $location
- -
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal_code
-
- {{ if $profile.country_name }}$profile.country_name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - -- {{ if $connect }} -- $connect
- {{ endif }}
-
-$title
- $searchbox - -- {{ for $saved as $search }} --
-
- $search.term
-
- {{ endfor }}
-
- -- $item.item_photo_menu -
-{{$title}}
- - -{{$title}}
- -- {{foreach $groups as $group}} --
- {{if $group.cid}}
-
- {{/if}}
- {{if $group.edit}}
-
- {{/if}}
- {{$group.text}}
-
- {{/foreach}}
-
--
{{$tags}} - - {{if $connlnk}} -
{{$desc}}
- -{{$album.1}}
- -- {{$location}}
- -
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal_code}}
-
- {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -- {{if $connect}} -- {{$connect}}
- {{/if}}
-
-{{$title}}
- {{$searchbox}} - -- {{foreach $saved as $search}} --
-
- {{$search.term}}
-
- {{/foreach}}
-
- -- {{$item.item_photo_menu}} -
-- {{$item.item_photo_menu}} -
-- $item.item_photo_menu -
-- {{ for $profile.menu.entries as $e }} --
- $e.profile_name
-
- {{ endfor }}
- - $profile.menu.chg_photo
- - $profile.menu.cr_new
- - $profile.edit.3
-
-
-- $location
-
- {{ if $profile.address }}
$profile.address {{ endif }}
-
- $profile.locality{{ if $profile.locality }}, {{ endif }}
- $profile.region
- $profile.postal-code
-
- {{ if $profile.country-name }}$profile.country-name{{ endif }}
-
-
- {{ endif }} - - {{ if $gender }}-
- $gender
- $profile.gender
{{ endif }} - - {{ if $profile.pubkey }} {{ endif }} - - {{ if $marital }}- ♥$marital
- $profile.marital
{{ endif }} - - {{ if $homepage }}- $homepage
- $profile.homepage
{{ endif }} - - {{ inc diaspora_vcard.tpl }}{{ endinc }} - -- {{ if $connect }} -- $connect
- {{ endif }}
-
-- $item.item_photo_menu -
- -$item.title
{{ endif }} - $item.body -- {{foreach $profile.menu.entries as $e}} --
- {{$e.profile_name}}
-
- {{/foreach}}
- - {{$profile.menu.chg_photo}}
- - {{$profile.menu.cr_new}}
- - {{$profile.edit.3}}
-
-
-- {{$location}}
-
- {{if $profile.address}}
{{$profile.address}} {{/if}}
-
- {{$profile.locality}}{{if $profile.locality}}, {{/if}}
- {{$profile.region}}
- {{$profile.postal-code}}
-
- {{if $profile.country-name}}{{$profile.country-name}}{{/if}}
-
-
- {{/if}} - - {{if $gender}}-
- {{$gender}}
- {{$profile.gender}}
{{/if}} - - {{if $profile.pubkey}} {{/if}} - - {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} - - {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} - - {{include file="diaspora_vcard.tpl"}} - -- {{if $connect}} -- {{$connect}}
- {{/if}}
-
-- {{$item.item_photo_menu}} -
- -{{$item.title}}
{{/if}} - {{$item.body}} -- {{$item.item_photo_menu}} -
- -{{$item.title}}
{{/if}} - {{$item.body}} -- $item.item_photo_menu -
- -$item.title
{{ endif }} - $item.body -$title
- - -{{ for $options as $o }} --- $o.1
- - $o.2
-
-{{ endfor }} \ No newline at end of file diff --git a/view/uimport.tpl b/view/uimport.tpl deleted file mode 100644 index 8950c8b54..000000000 --- a/view/uimport.tpl +++ /dev/null @@ -1,13 +0,0 @@ -$import.title
-$import.intro
-$import.instruct
-$import.warn
- {{inc field_custom.tpl with $field=$import.field }}{{ endinc }} - - -$title
- -{{ for $contacts as $contact }} - {{ inc contact_template.tpl }}{{ endinc }} -{{ endfor }} - - - -$paginate diff --git a/view/voting_fakelink.tpl b/view/voting_fakelink.tpl deleted file mode 100644 index a1ff04a70..000000000 --- a/view/voting_fakelink.tpl +++ /dev/null @@ -1 +0,0 @@ -$phrase diff --git a/view/wall_thread.tpl b/view/wall_thread.tpl deleted file mode 100644 index 716956c65..000000000 --- a/view/wall_thread.tpl +++ /dev/null @@ -1,120 +0,0 @@ -{{if $item.comment_firstcollapsed}} -- $item.item_photo_menu -
--
$header
- -$subheader
- -{{$message}}
diff --git a/view/templates/acl_selector.tpl b/view/templates/acl_selector.tpl new file mode 100644 index 000000000..5fd11e756 --- /dev/null +++ b/view/templates/acl_selector.tpl @@ -0,0 +1,31 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$admtxt}}
++- {{$admin.site.1}}
+ - {{$admin.users.1}}
+ - {{$admin.plugins.1}}
+ - {{$admin.themes.1}}
+ - {{$admin.dbsync.1}}
+
+ +{{if $admin.update}} ++- {{$admin.update.1}}
+ - Important Changes
+
+{{/if}} + + +{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} ++ {{foreach $admin.plugins_admin as $l}} +- {{$l.1}}
+ {{/foreach}}
+
+ + +{{$logtxt}}
++- {{$admin.logs.1}}
+
+ diff --git a/view/templates/admin_logs.tpl b/view/templates/admin_logs.tpl new file mode 100644 index 000000000..6a2259500 --- /dev/null +++ b/view/templates/admin_logs.tpl @@ -0,0 +1,24 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$title}} - {{$page}}
+ +{{$logname}}
+{{$title}} - {{$page}}
+ ++ {{foreach $plugins as $p}} +-
+
+ {{$p.2.name}} - {{$p.2.version}}
+ {{if $p.2.experimental}} {{$experimental}} {{/if}}{{if $p.2.unsupported}} {{$unsupported}} {{/if}}
+
+
{{$p.2.description}}
+
+ {{/foreach}}
+
+{{$title}} - {{$page}}
+ +{{$info.name}} - {{$info.version}} : {{$action}}
+{{$info.description}}
+ +{{$str_author}} + {{foreach $info.author as $a}} + {{if $a.link}}{{$a.name}}{{else}}{{$a.name}}{{/if}}, + {{/foreach}} +
+ +{{$str_maintainer}} + {{foreach $info.maintainer as $a}} + {{if $a.link}}{{$a.name}}{{else}}{{$a.name}}{{/if}}, + {{/foreach}} +
+ + {{if $screenshot}} + + {{/if}} + + {{if $admin_form}} +{{$settings}}
+Readme
+Friendica Update
+ +Your friendica installation is not writable by web server.
+ {{if $canftp}} +You can try to update via FTP
+ {{include file="field_input.tpl" field=$ftphost}} + {{include file="field_input.tpl" field=$ftppath}} + {{include file="field_input.tpl" field=$ftpuser}} + {{include file="field_password.tpl" field=$ftppwd}} + + {{/if}} + {{/if}} +No updates
+{{/if}} +{{$title}} - {{$page}}
+ +{{$registration}}
+ {{include file="field_input.tpl" field=$register_text}} + {{include file="field_select.tpl" field=$register_policy}} + {{include file="field_input.tpl" field=$daily_registrations}} + {{include file="field_checkbox.tpl" field=$no_multi_reg}} + {{include file="field_checkbox.tpl" field=$no_openid}} + {{include file="field_checkbox.tpl" field=$no_regfullname}} + + + +{{$upload}}
+ {{include file="field_input.tpl" field=$maximagesize}} + {{include file="field_input.tpl" field=$maximagelength}} + {{include file="field_input.tpl" field=$jpegimagequality}} + +{{$corporate}}
+ {{include file="field_input.tpl" field=$allowed_sites}} + {{include file="field_input.tpl" field=$allowed_email}} + {{include file="field_checkbox.tpl" field=$block_public}} + {{include file="field_checkbox.tpl" field=$force_publish}} + {{include file="field_checkbox.tpl" field=$no_community_page}} + {{include file="field_checkbox.tpl" field=$ostatus_disabled}} + {{include file="field_select.tpl" field=$ostatus_poll_interval}} + {{include file="field_checkbox.tpl" field=$diaspora_enabled}} + {{include file="field_checkbox.tpl" field=$dfrn_only}} + {{include file="field_input.tpl" field=$global_directory}} + {{include file="field_checkbox.tpl" field=$thread_allow}} + {{include file="field_checkbox.tpl" field=$newuser_private}} + {{include file="field_checkbox.tpl" field=$enotify_no_content}} + {{include file="field_checkbox.tpl" field=$private_addons}} + {{include file="field_checkbox.tpl" field=$disable_embedded}} + + +{{$advanced}}
+ {{include file="field_checkbox.tpl" field=$no_utf}} + {{include file="field_checkbox.tpl" field=$verifyssl}} + {{include file="field_input.tpl" field=$proxy}} + {{include file="field_input.tpl" field=$proxyuser}} + {{include file="field_input.tpl" field=$timeout}} + {{include file="field_input.tpl" field=$delivery_interval}} + {{include file="field_input.tpl" field=$poll_interval}} + {{include file="field_input.tpl" field=$maxloadavg}} + {{include file="field_input.tpl" field=$abandon_days}} + {{include file="field_input.tpl" field=$lockpath}} + {{include file="field_input.tpl" field=$temppath}} + {{include file="field_input.tpl" field=$basepath}} + +{{$performance}}
+ {{include file="field_checkbox.tpl" field=$use_fulltext_engine}} + {{include file="field_input.tpl" field=$itemcache}} + {{include file="field_input.tpl" field=$itemcache_duration}} + + + + +{{$title}} - {{$page}}
+ ++- {{$queues.label}}
+ - {{$queues.deliverq}} - {{$queues.queue}}
+
++- {{$pending.0}}
+ - {{$pending.1}}
+
+ ++- {{$users.0}}
+ - {{$users.1}}
+
+ {{foreach $accounts as $p}} ++- {{$p.0}}
+ - {{if $p.1}}{{$p.1}}{{else}}0{{/if}}
+
+ {{/foreach}} + + ++- {{$plugins.0}}
+
+ {{foreach $plugins.1 as $p}}
+ - {{$p}}
+ {{/foreach}}
+
+
+ ++- {{$version.0}}
+ - {{$version.1}} - {{$build}}
+
+ + +{{$title}} - {{$page}}
+ +{{$h_pending}}
+ {{if $pending}} +{{$no_pending}}
+ {{/if}} + + + + +{{$h_users}}
+ {{if $users}} +{{$title}}
+ ++ {{foreach $apps as $ap}} +- {{$ap}}
+ {{/foreach}}
+
diff --git a/view/templates/atom_feed.tpl b/view/templates/atom_feed.tpl new file mode 100644 index 000000000..db553d99f --- /dev/null +++ b/view/templates/atom_feed.tpl @@ -0,0 +1,34 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$header}}
+ ++{{$page_desc}}
+
+- {{$friendica}}
+- {{$diaspora}} {{$diasnote}}
+- {{$statusnet}}
+{{if $emailnet}}- {{$emailnet}}
{{/if}}
+
+ ++{{$invite_desc}} +
++{{$desc}} +
+ +{{$title}}
++- {{$all}}
+ {{foreach $terms as $term}}
+ - {{$term.name}}
+ {{/foreach}}
+
+ ++ {{foreach $tabs as $tab}} +- {{$tab.label}}
+ {{/foreach}}
+
diff --git a/view/templates/confirm.tpl b/view/templates/confirm.tpl new file mode 100644 index 000000000..df8d26eaa --- /dev/null +++ b/view/templates/confirm.tpl @@ -0,0 +1,19 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$contacts}}
+{{if $micropro}} + {{$viewcontacts}} +{{$header}}
+ ++{{$relation_text}}
+ {{$nettype}}
+ {{if $lost_contact}}
+ {{$lost_contact}}
+ {{/if}}
+ {{if $insecure}}
+ {{$insecure}}
+ {{/if}}
+ {{if $blocked}}
+ {{$blocked}}
+ {{/if}}
+ {{if $ignored}}
+ {{$ignored}}
+ {{/if}}
+ {{if $archived}}
+ {{$archived}}
+ {{/if}}
+
+ -
+
+ {{if $common_text}}
+ {{$common_text}}
+ {{/if}}
+ {{if $all_friends}}
+ {{$all_friends}}
+ {{/if}}
+
+
+ - {{$lblrecent}}
+ {{if $lblsuggest}}
+ - {{$lblsuggest}}
+ {{/if}}
+
+
+{{$lbl_info1}}
+ + +{{$lbl_vis1}}
+{{$lbl_vis2}}
++ {{foreach $contact.photo_menu as $c}} + {{if $c.2}} +- {{$c.0}}
+ {{else}}
+ - {{$c.0}}
+ {{/if}}
+ {{/foreach}}
+
+{{$header}}{{if $total}} ({{$total}}){{/if}}
+ +{{if $finding}}{{$finding}}
{{/if}} + +{{$contact_name}}
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +{{$title}}
++{{$desc}} +
+{{$header}}
+ +{{$head_managers}}
+ +{{foreach $managers as $x}} + ++{{/if}} + + +
{{$head_delegates}}
+ +{{if $delegates}} +{{foreach $delegates as $x}} + ++ + +
{{$head_potentials}}
+{{if $potentials}} +{{foreach $potentials as $x}} + ++ diff --git a/view/templates/dfrn_req_confirm.tpl b/view/templates/dfrn_req_confirm.tpl new file mode 100644 index 000000000..c941a201d --- /dev/null +++ b/view/templates/dfrn_req_confirm.tpl @@ -0,0 +1,26 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +
+{{$welcome}} +
++{{$please}} + +
{{$header}}
+ ++{{$page_desc}}
+
+- {{$friendica}}
+- {{$diaspora}} {{$diasnote}}
+- {{$statusnet}}
+{{if $emailnet}}- {{$emailnet}}
{{/if}}
+
+{{$invite_desc}} + ++{{$desc}} +
+ ++{{$pls_answer}} +
+ ++{{$does_know}} +
+ ++{{$add_note}} +
+{{$sitedir}}
+ +{{$globaldir}} +{{$admin}} + +{{$finding}} + +{{$title}}
+ ++{{$desc}} +
+ +{{$title}}
+ +{{$title}}
+ +{{$banner}}
+ +{{$f}}
++- {{$mark}}
+- {{$apply}}
+
+ ++{{/foreach}} +{{/if}} + diff --git a/view/templates/fake_feed.tpl b/view/templates/fake_feed.tpl new file mode 100644 index 000000000..fd875de71 --- /dev/null +++ b/view/templates/fake_feed.tpl @@ -0,0 +1,18 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +
{{$title}}
++- {{$all}}
+ {{foreach $terms as $term}}
+ - {{$term.name}}
+ {{/foreach}}
+
+ ++- FileBrowser
+
++ {{foreach $folders as $f}}- {{$f.1}}
{{/foreach}}
+
++ {{foreach $files as $f}} +- {{$f.1}}
+ {{/foreach}}
+
+{{$connect}}
+{{$title}}
{{/if}} + {{if $desc}}+ {{foreach $items as $item}} +- {{$item.label}}
+ {{/foreach}}
+
+ +{{$title}}
+ + +{{$title}}
+ ++ {{foreach $groups as $group}} +-
+ {{if $group.cid}}
+
+ {{/if}}
+ {{if $group.edit}}
+
+ {{/if}}
+ {{$group.text}}
+
+ {{/foreach}}
+
+{{$groupeditor.label_members}}
++
{{$groupeditor.label_contacts}}
+{{$title}}
+{{$pass}}
+ + +{{if $status}} +{{$status}}
+{{/if}} + +{{$text}} diff --git a/view/templates/install_checks.tpl b/view/templates/install_checks.tpl new file mode 100644 index 000000000..44852b410 --- /dev/null +++ b/view/templates/install_checks.tpl @@ -0,0 +1,29 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$title}}
+{{$pass}}
+{{$title}}
+{{$pass}}
+ + ++{{$info_01}}
+ +{{if $status}} ++{{$info_02}}
+{{$info_03}} +
{{$status}}
+{{/if}} + +{{$title}}
+{{$pass}}
+ + +{{if $status}} +{{$status}}
+{{/if}} + +{{$str_notifytype}} {{$notify_type}}
+{{$invite}}
+ ++
{{$title}}
+ ++{{$desc}} +
+ +diff --git a/view/templates/mail_display.tpl b/view/templates/mail_display.tpl new file mode 100644 index 000000000..23d05bdeb --- /dev/null +++ b/view/templates/mail_display.tpl @@ -0,0 +1,15 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{foreach $mails as $mail}} + {{include file="mail_conv.tpl"}} +{{/foreach}} + +{{if $canreply}} +{{include file="prv_message.tpl"}} +{{else}} +{{$unknown_text}} +{{/if}} diff --git a/view/templates/mail_head.tpl b/view/templates/mail_head.tpl new file mode 100644 index 000000000..f7a39fa8b --- /dev/null +++ b/view/templates/mail_head.tpl @@ -0,0 +1,8 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
{{$messages}}
+ +{{$tab_content}} diff --git a/view/templates/mail_list.tpl b/view/templates/mail_list.tpl new file mode 100644 index 000000000..9dbfb6a14 --- /dev/null +++ b/view/templates/mail_list.tpl @@ -0,0 +1,21 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$title}}
+{{$title}}
+ ++
+ + + + +
+
+ +
{{/if}} +{{if $nav.register}}{{$nav.register.1}}
{{/if}} +{{if $nav.login}} +
+{{$nav.net_reset.1}}
+{{/if}} +{{if $nav.home}} +{{$nav.home.1}}
+{{/if}} +{{if $nav.community}} +{{$nav.community.1}}
+{{/if}} +{{if $nav.network}} +
+
{{/if}} +{{$nav.directory.1}}
+{{if $nav.introductions}} +{{$nav.introductions.1}}
+{{/if}} +
+
{{/if}} +{{if $nav.manage}}{{$nav.manage.1}}
{{/if}} +{{if $nav.profiles}}{{$nav.profiles.1}}
{{/if}} +{{if $nav.admin}}{{$nav.admin.1}}
{{/if}} +{{$nav.search.1}}
+{{if $nav.apps}}{{$nav.apps.1}}
{{/if}} +{{if $nav.help}} {{$nav.help.1}}
{{/if}} +
{{/if}} +
{{$title}}
++ {{foreach $nets as $net}} +- {{$net.name}}
+ {{/foreach}}
+
+{{$header}}
+ +{{foreach $contacts as $contact}} + {{include file="contact_template.tpl"}} +{{/foreach}} + + +{{$paginate}} + + + + diff --git a/view/templates/notifications.tpl b/view/templates/notifications.tpl new file mode 100644 index 000000000..834a7a016 --- /dev/null +++ b/view/templates/notifications.tpl @@ -0,0 +1,13 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$notif_header}}
+ +{{include file="common_tabs.tpl"}} + +{{$title}}
+ +{{$app.name}}
+{{$authorize}}
+{{$title}}
+ +{{$info}}
+{{$code}}
diff --git a/view/templates/oembed_video.tpl b/view/templates/oembed_video.tpl new file mode 100644 index 000000000..bdfa11509 --- /dev/null +++ b/view/templates/oembed_video.tpl @@ -0,0 +1,9 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + + + + diff --git a/view/templates/oexchange_xrd.tpl b/view/templates/oexchange_xrd.tpl new file mode 100644 index 000000000..5af749182 --- /dev/null +++ b/view/templates/oexchange_xrd.tpl @@ -0,0 +1,38 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$findpeople}}
+{{$desc}}
+ ++ {{$rotateccw}} +
+ +
{{$album.1}}
+ +{{$title}}
+{{if $can_post}} +{{$upload.0}} +{{/if}} + +{{$pagename}}
+ +{{$title}}
+ ++
+ +
+ + + +
+
+
+
+ +
+
+
+
+ +
{{$title}}
+ + ++{{$desc}} +
+ ++{{$desc}} +
+ ++{{$desc}} +
+ ++{{$desc}} +
+ +{{$title}}
+ ++- {{$profile.fullname.0}}
+ - {{$profile.fullname.1}}
+
+ +{{if $profile.gender}} ++- {{$profile.gender.0}}
+ - {{$profile.gender.1}}
+
+{{/if}} + +{{if $profile.birthday}} ++- {{$profile.birthday.0}}
+ - {{$profile.birthday.1}}
+
+{{/if}} + +{{if $profile.age}} ++- {{$profile.age.0}}
+ - {{$profile.age.1}}
+
+{{/if}} + +{{if $profile.marital}} ++- ♥ {{$profile.marital.0}}
+ - {{$profile.marital.1}}{{if $profile.marital.with}} ({{$profile.marital.with}}){{/if}}{{if $profile.howlong}} {{$profile.howlong}}{{/if}}
+
+{{/if}} + +{{if $profile.sexual}} ++- {{$profile.sexual.0}}
+ - {{$profile.sexual.1}}
+
+{{/if}} + +{{if $profile.pub_keywords}} ++- {{$profile.pub_keywords.0}}
+ - {{$profile.pub_keywords.1}}
+
+{{/if}} + +{{if $profile.homepage}} ++- {{$profile.homepage.0}}
+ - {{$profile.homepage.1}}
+
+{{/if}} + +{{if $profile.hometown}} ++- {{$profile.hometown.0}}
+ - {{$profile.hometown.1}}
+
+{{/if}} + +{{if $profile.politic}} ++- {{$profile.politic.0}}
+ - {{$profile.politic.1}}
+
+{{/if}} + +{{if $profile.religion}} ++- {{$profile.religion.0}}
+ - {{$profile.religion.1}}
+
+{{/if}} + +{{if $profile.about}} ++- {{$profile.about.0}}
+ - {{$profile.about.1}}
+
+{{/if}} + +{{if $profile.interest}} ++- {{$profile.interest.0}}
+ - {{$profile.interest.1}}
+
+{{/if}} + +{{if $profile.likes}} ++- {{$profile.likes.0}}
+ - {{$profile.likes.1}}
+
+{{/if}} + +{{if $profile.dislikes}} ++- {{$profile.dislikes.0}}
+ - {{$profile.dislikes.1}}
+
+{{/if}} + +{{if $profile.contact}} ++- {{$profile.contact.0}}
+ - {{$profile.contact.1}}
+
+{{/if}} + + +{{if $profile.music}} ++- {{$profile.music.0}}
+ - {{$profile.music.1}}
+
+{{/if}} + + +{{if $profile.book}} ++- {{$profile.book.0}}
+ - {{$profile.book.1}}
+
+{{/if}} + + +{{if $profile.tv}} ++- {{$profile.tv.0}}
+ - {{$profile.tv.1}}
+
+{{/if}} + + +{{if $profile.film}} ++- {{$profile.film.0}}
+ - {{$profile.film.1}}
+
+{{/if}} + + +{{if $profile.romance}} ++- {{$profile.romance.0}}
+ - {{$profile.romance.1}}
+
+{{/if}} + + +{{if $profile.work}} ++- {{$profile.work.0}}
+ - {{$profile.work.1}}
+
+{{/if}} + +{{if $profile.education}} ++- {{$profile.education.0}}
+ - {{$profile.education.1}}
+
+{{/if}} + + + + diff --git a/view/templates/profile_edit.tpl b/view/templates/profile_edit.tpl new file mode 100644 index 000000000..4b7c4d0b1 --- /dev/null +++ b/view/templates/profile_edit.tpl @@ -0,0 +1,328 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$default}} + +{{$banner}}
+ ++- {{$profpic}}
+- {{$viewprof}}
+- {{$cl_prof}}
+
+- {{$del_prof}}
+
+
++{{$lbl_about}} +
+ + + ++{{$lbl_hobbies}} +
+ + + ++{{$lbl_likes}} +
+ + + ++{{$lbl_dislikes}} +
+ + + ++{{$lbl_social}} +
+ + + ++{{$lbl_music}} +
+ + + ++{{$lbl_book}} +
+ + + ++{{$lbl_tv}} +
+ + + ++{{$lbl_film}} +
+ + + ++{{$lbl_love}} +
+ + + ++{{$lbl_work}} +
+ + + ++{{$lbl_school}} +
+ + + +{{$header}}
++{{$chg_photo}} +
+{{$title}}
+ ++{{$pubdesc}} +
+ +- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+ {{if $wallmessage}}
+ - {{$wallmessage}}
+ {{/if}}
+
+{{$header}}
+ +{{$lbl1}}
+ ++{{$lbl2}} +
++{{$lbl3}} +
++{{$newpass}} +
++{{$lbl4}} {{$lbl5}} +
++{{$lbl6}} +
diff --git a/view/templates/register.tpl b/view/templates/register.tpl new file mode 100644 index 000000000..5e655cd82 --- /dev/null +++ b/view/templates/register.tpl @@ -0,0 +1,70 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$regtitle}}
+ +{{$realpeople}}
+ +{{$fillwith}}
+{{$fillext}}
+ +{{if $oidlabel}} +{{$invite_desc}}
+{{$nickdesc}}
+ +{{$title}}
+ +{{$title}}
+ {{$searchbox}} + ++ {{foreach $saved as $search}} +-
+
+ {{$search.term}}
+
+ {{/foreach}}
+
+ ++ {{$item.item_photo_menu}} +
+{{$ptitle}}
+ +{{$nickname_block}} + +{{$h_pass}}
+ +{{include file="field_password.tpl" field=$password1}} +{{include file="field_password.tpl" field=$password2}} +{{include file="field_password.tpl" field=$password3}} + +{{if $oid_enable}} +{{include file="field_input.tpl" field=$openid}} +{{/if}} + +{{$h_basic}}
+ +{{include file="field_input.tpl" field=$username}} +{{include file="field_input.tpl" field=$email}} +{{include file="field_password.tpl" field=$password4}} +{{include file="field_custom.tpl" field=$timezone}} +{{include file="field_input.tpl" field=$defloc}} +{{include file="field_checkbox.tpl" field=$allowloc}} + + +{{$h_prv}}
+ + + + +{{include file="field_input.tpl" field=$maxreq}} + +{{$profile_in_dir}} + +{{$profile_in_net_dir}} + +{{$hide_friends}} + +{{$hide_wall}} + +{{$blockwall}} + +{{$blocktags}} + +{{$suggestme}} + +{{$unkmail}} + + +{{include file="field_input.tpl" field=$cntunkmail}} + +{{include file="field_input.tpl" field=$expire.days}} + + +{{$expire.advanced}}
+ {{include file="field_yesno.tpl" field=$expire.items}} + {{include file="field_yesno.tpl" field=$expire.notes}} + {{include file="field_yesno.tpl" field=$expire.starred}} + {{include file="field_yesno.tpl" field=$expire.network_only}} ++ + +{{$group_select}} + + +
{{$h_not}}
+{{$h_advn}}
+{{$title}}
+ + +{{$title}}
+ +{{$h_imap}}
+{{$imap_desc}}
+ {{include file="field_custom.tpl" field=$imap_lastcheck}} + {{include file="field_input.tpl" field=$mail_server}} + {{include file="field_input.tpl" field=$mail_port}} + {{include file="field_select.tpl" field=$mail_ssl}} + {{include file="field_input.tpl" field=$mail_user}} + {{include file="field_password.tpl" field=$mail_pass}} + {{include file="field_input.tpl" field=$mail_replyto}} + {{include file="field_checkbox.tpl" field=$mail_pubmail}} + {{include file="field_select.tpl" field=$mail_action}} + {{include file="field_input.tpl" field=$mail_movetofolder}} + +{{$ptitle}}
+ +Theme settings
+{{$theme_config}} +{{/if}} + +{{$title}}
+ + +{{$f.0}}
+ +{{foreach $f.1 as $fcat}} + {{include file="field_yesno.tpl" field=$fcat}} +{{/foreach}} +{{/foreach}} + ++It appears that your website is located in a subdirectory of the
++{{$hostname}} website, so this setting may not work reliably.
+
If you have any issues, you may have better results using the profile
\ No newline at end of file diff --git a/view/templates/settings_oauth.tpl b/view/templates/settings_oauth.tpl new file mode 100644 index 000000000..feab78210 --- /dev/null +++ b/view/templates/settings_oauth.tpl @@ -0,0 +1,36 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +address '{{$baseurl}}/profile/{{$nickname}}'. +
{{$title}}
+ + ++-
+ {{$add}}
+
+
+{{$app.name}}
{{else}}{{$noname}}
{{/if}} + {{if $app.my}} + {{if $app.oauth_token}} + + {{/if}} + {{/if}} + {{if $app.my}} + + + {{/if}} +{{$title}}
+ +{{$str_notifytype}} {{$notify_type}}
+{{$title}}
+ + +{{foreach $options as $o}} ++- {{$o.1}}
+ - {{$o.2}}
+
+{{/foreach}} \ No newline at end of file diff --git a/view/templates/uimport.tpl b/view/templates/uimport.tpl new file mode 100644 index 000000000..cc137514a --- /dev/null +++ b/view/templates/uimport.tpl @@ -0,0 +1,18 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$import.title}}
+{{$import.intro}}
+{{$import.instruct}}
+{{$import.warn}}
+ {{include file="field_custom.tpl" field=$import.field}} + + +{{$title}}
+ +{{foreach $contacts as $contact}} + {{include file="contact_template.tpl"}} +{{/foreach}} + + + +{{$paginate}} diff --git a/view/templates/voting_fakelink.tpl b/view/templates/voting_fakelink.tpl new file mode 100644 index 000000000..3d14ba48b --- /dev/null +++ b/view/templates/voting_fakelink.tpl @@ -0,0 +1,6 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{$phrase}} diff --git a/view/templates/wall_thread.tpl b/view/templates/wall_thread.tpl new file mode 100644 index 000000000..c0e30c4cb --- /dev/null +++ b/view/templates/wall_thread.tpl @@ -0,0 +1,125 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{if $item.comment_firstcollapsed}} ++ {{$item.item_photo_menu}} +
++
{{$header}}
+ +{{$subheader}}
+ ++ {{$item.item_photo_menu}} +
++ {{$item.item_photo_menu}} +
++ +
+ +
{{$admtxt}}
++- {{$admin.site.1}}
+ - {{$admin.users.1}}
+ - {{$admin.plugins.1}}
+ - {{$admin.themes.1}}
+ - {{$admin.dbsync.1}}
+
+ +{{if $admin.update}} ++- {{$admin.update.1}}
+ - Important Changes
+
+{{/if}} + + +{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} ++ {{foreach $admin.plugins_admin as $l}} +- {{$l.1}}
+ {{/foreach}}
+
+ + +{{$logtxt}}
++- {{$admin.logs.1}}
+
+ diff --git a/view/theme/decaf-mobile/templates/admin_site.tpl b/view/theme/decaf-mobile/templates/admin_site.tpl new file mode 100644 index 000000000..035024e68 --- /dev/null +++ b/view/theme/decaf-mobile/templates/admin_site.tpl @@ -0,0 +1,72 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$title}} - {{$page}}
+ +{{$registration}}
+ {{include file="field_input.tpl" field=$register_text}} + {{include file="field_select.tpl" field=$register_policy}} + + {{include file="field_checkbox.tpl" field=$no_multi_reg}} + {{include file="field_checkbox.tpl" field=$no_openid}} + {{include file="field_checkbox.tpl" field=$no_regfullname}} + + + +{{$upload}}
+ {{include file="field_input.tpl" field=$maximagesize}} + {{include file="field_input.tpl" field=$maximagelength}} + {{include file="field_input.tpl" field=$jpegimagequality}} + +{{$corporate}}
+ {{include file="field_input.tpl" field=$allowed_sites}} + {{include file="field_input.tpl" field=$allowed_email}} + {{include file="field_checkbox.tpl" field=$block_public}} + {{include file="field_checkbox.tpl" field=$force_publish}} + {{include file="field_checkbox.tpl" field=$no_community_page}} + {{include file="field_checkbox.tpl" field=$ostatus_disabled}} + {{include file="field_select.tpl" field=$ostatus_poll_interval}} + {{include file="field_checkbox.tpl" field=$diaspora_enabled}} + {{include file="field_checkbox.tpl" field=$dfrn_only}} + {{include file="field_input.tpl" field=$global_directory}} + {{include file="field_checkbox.tpl" field=$thread_allow}} + {{include file="field_checkbox.tpl" field=$newuser_private}} + {{include file="field_checkbox.tpl" field=$enotify_no_content}} + {{include file="field_checkbox.tpl" field=$private_addons}} + {{include file="field_checkbox.tpl" field=$disable_embedded}} + + +{{$advanced}}
+ {{include file="field_checkbox.tpl" field=$no_utf}} + {{include file="field_checkbox.tpl" field=$verifyssl}} + {{include file="field_input.tpl" field=$proxy}} + {{include file="field_input.tpl" field=$proxyuser}} + {{include file="field_input.tpl" field=$timeout}} + {{include file="field_input.tpl" field=$delivery_interval}} + {{include file="field_input.tpl" field=$poll_interval}} + {{include file="field_input.tpl" field=$maxloadavg}} + {{include file="field_input.tpl" field=$abandon_days}} + + + +{{$title}} - {{$page}}
+ +{{$h_pending}}
+ {{if $pending}} +{{$no_pending}}
+ {{/if}} + + + + +{{$h_users}}
+ {{if $users}} ++ {{foreach $tabs as $tab}} +- {{$tab.label}}
+ {{/foreach}}
+
+
diff --git a/view/theme/decaf-mobile/templates/contact_block.tpl b/view/theme/decaf-mobile/templates/contact_block.tpl new file mode 100644 index 000000000..5a0a26b87 --- /dev/null +++ b/view/theme/decaf-mobile/templates/contact_block.tpl @@ -0,0 +1,17 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{**}} diff --git a/view/theme/decaf-mobile/templates/contact_edit.tpl b/view/theme/decaf-mobile/templates/contact_edit.tpl new file mode 100644 index 000000000..0f028d590 --- /dev/null +++ b/view/theme/decaf-mobile/templates/contact_edit.tpl @@ -0,0 +1,98 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$header}}
+ ++{{$relation_text}}
+ {{$nettype}}
+ {{if $lost_contact}}
+ {{$lost_contact}}
+ {{/if}}
+ {{if $insecure}}
+ {{$insecure}}
+ {{/if}}
+ {{if $blocked}}
+ {{$blocked}}
+ {{/if}}
+ {{if $ignored}}
+ {{$ignored}}
+ {{/if}}
+ {{if $archived}}
+ {{$archived}}
+ {{/if}}
+
+ -
+
+ {{if $common_text}}
+ {{$common_text}}
+ {{/if}}
+ {{if $all_friends}}
+ {{$all_friends}}
+ {{/if}}
+
+
+ - {{$lblrecent}}
+ {{if $lblsuggest}}
+ - {{$lblsuggest}}
+ {{/if}}
+
+
+{{$lbl_info1}}
+ + +{{$lbl_vis1}}
+{{$lbl_vis2}}
++{{if $contact.alt_text}}
{{$header}}{{if $total}} ({{$total}}){{/if}}
+ +{{if $finding}}{{$finding}}
{{/if}} + +{{$title}}
++{{$desc}} +
++ {{$field.3}} +
+ + {{$field.3}} +
+ + {{$field.3}} +
+ + {{$field.3}} +
+ {{foreach $items as $item}} +- {{$item.label}}
+ {{/foreach}}
+
+
+ +{{$title}}
+ ++ {{foreach $groups as $group}} +-
+ {{if $group.cid}}
+
+ {{/if}}
+ {{if $group.edit}}
+
+ {{/if}}
+ {{$group.text}}
+
+ {{/foreach}}
+
++
+ {{include file="field_checkbox.tpl" field=$lremember}} + +
+
{{$title}}
++ +
+ +
+{{$desc}} +
++ +
diff --git a/view/theme/decaf-mobile/templates/mail_list.tpl b/view/theme/decaf-mobile/templates/mail_list.tpl new file mode 100644 index 000000000..538f6affb --- /dev/null +++ b/view/theme/decaf-mobile/templates/mail_list.tpl @@ -0,0 +1,21 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
{{$title}}
++
+
+
+
+
+
+
+
+
+ + + + ++
{{$album.1}}
+ +{{$pagename}}
+ +{{$banner}}
+ ++- {{$viewprof}}
+- {{$cl_prof}}
+
+- {{$del_prof}}
+
+
++{{$lbl_about}} +
+ + + ++{{$lbl_hobbies}} +
+ + + ++{{$lbl_likes}} +
+ + + ++{{$lbl_dislikes}} +
+ + + ++{{$lbl_social}} +
+ + + ++{{$lbl_music}} +
+ + + ++{{$lbl_book}} +
+ + + ++{{$lbl_tv}} +
+ + + ++{{$lbl_film}} +
+ + + ++{{$lbl_love}} +
+ + + ++{{$lbl_work}} +
+ + + ++{{$lbl_school}} +
+ + + +{{$title}}
+ +- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+ {{if $wallmessage}}
+ - {{$wallmessage}}
+ {{/if}}
+
+{{$header}}
+ +{{$regtitle}}
++ +
{{$realpeople}}
+ ++{{if $oidlabel}} +
{{$fillwith}} {{$fillext}}
++ +{{if $invitations}} + +
{{$invite_desc}}
++ +
+ +
+ +
{{$nickdesc}}
++ +
+ +{{$license}} + +
{{$ptitle}}
+ +{{$nickname_block}} + +{{$h_pass}}
+ +{{include file="field_password.tpl" field=$password1}} +{{include file="field_password.tpl" field=$password2}} +{{include file="field_password.tpl" field=$password3}} + +{{if $oid_enable}} +{{include file="field_input.tpl" field=$openid}} +{{/if}} + +{{$h_basic}}
+ +{{include file="field_input.tpl" field=$username}} +{{include file="field_input.tpl" field=$email}} +{{include file="field_password.tpl" field=$password4}} +{{include file="field_custom.tpl" field=$timezone}} +{{include file="field_input.tpl" field=$defloc}} +{{include file="field_checkbox.tpl" field=$allowloc}} + + +{{$h_prv}}
+ + + + +{{include file="field_input.tpl" field=$maxreq}} + +{{$profile_in_dir}} + +{{$profile_in_net_dir}} + +{{$hide_friends}} + +{{$hide_wall}} + +{{$blockwall}} + +{{$blocktags}} + +{{$suggestme}} + +{{$unkmail}} + + +{{include file="field_input.tpl" field=$cntunkmail}} + +{{include file="field_input.tpl" field=$expire.days}} + + +{{$expire.advanced}}
+ {{include file="field_yesno.tpl" field=$expire.items}} + {{include file="field_yesno.tpl" field=$expire.notes}} + {{include file="field_yesno.tpl" field=$expire.starred}} + {{include file="field_yesno.tpl" field=$expire.network_only}} ++
+ + +{{$group_select}} + + +
{{$h_not}}
+{{$h_advn}}
++
+
{{$header}}
+ +{{$subheader}}
+ +{{$title}} - {{$page}}
+ +{{$h_pending}}
+ {{if $pending}} +{{$no_pending}}
+ {{/if}} + + + + +{{$h_users}}
+ {{if $users}} +{{$comunity_profiles_title}}
+{{$helpers.title.1}}
+How-To Guides+NewHere
+Friendica Support
+Let's talk
+Local Friendica +{{/if}} +
{{$con_services.title.1}}
+{{$nv.title.1}}
+{{$nv.directory.1}}+{{$nv.global_directory.1}}
+{{$nv.match.1}}
+{{$nv.suggest.1}}
+{{$nv.invite.1}} +{{$nv.search}} +{{/if}} +
{{$lastusers_title}}
+{{$activeusers_title}}
+{{$photos_title}}
+{{$like_title}}
++{{foreach $like_items as $i}} +- {{$i}}
+{{/foreach}}
+
+{{/if}} +{{$twitter.title.1}}
+{{$mapquery.title.1}}
++ {{foreach $contact.photo_menu as $c}} + {{if $c.2}} +- {{$c.0}}
+ {{else}}
+ - {{$c.0}}
+ {{/if}}
+ {{/foreach}}
+
+- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} +- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} +- {{$about}}
- {{$profile.about}}
{{/if}} +{{$title}}
{{/if}} + {{if $desc}}+ {{foreach $items as $item}} +- {{$item.label}}
+ {{/foreach}}
+
+ +{{$title}}
++ {{foreach $groups as $group}} +-
+
+
+ {{$group.text}}
+
+ {{if $group.edit}}
+
+ {{/if}}
+ {{if $group.cid}}
+
+ {{/if}}
+
+ {{/foreach}}
+
++
+ +*}} diff --git a/view/theme/diabook/templates/mail_display.tpl b/view/theme/diabook/templates/mail_display.tpl new file mode 100644 index 000000000..dc1fbbc6f --- /dev/null +++ b/view/theme/diabook/templates/mail_display.tpl @@ -0,0 +1,17 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
{{$title}}
++-
+
+ {{$all}}
+ {{foreach $nets as $net}}
+ -
+
+
+ {{$net.name}}
+
+ {{/foreach}}
+
++ {{$photo_menu}} +
+ +{{$title}}
{{/if}} + {{$body}} +{{$album.1}}
+ ++- {{$ps.usermenu.status.1}}
+ - {{$ps.usermenu.photos.1}}
+ - {{$ps.usermenu.contacts.1}}
+ - {{$ps.usermenu.events.1}}
+ - {{$ps.usermenu.notes.1}}
+ - {{$ps.usermenu.pgroups.1}}
+ - {{$ps.usermenu.community.1}}
+
+ ++ {{foreach $profile.menu.entries as $e}} +-
+ {{$e.profile_name}}
+
+ {{/foreach}}
+ - {{$profile.menu.chg_photo}}
+ - {{$profile.menu.cr_new}}
+ - {{$profile.edit.3}}
+
+
+- {{$location}}
-
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}+
- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+
+{{$header}}
+ ++- {{$ps.usermenu.status.1}}
+ - {{$ps.usermenu.photos.1}}
+ - {{$ps.usermenu.events.1}}
+ - {{$ps.usermenu.notes.1}}
+ - Public Groups
+ - {{$ps.usermenu.community.1}}
+
+ ++ {{$item.item_photo_menu}} +
+ +{{$item.title}}
{{/if}} + {{$item.body}} + {{if $item.has_cats}} ++
Show/hide boxes at right-hand column
+{{include file="field_select.tpl" field=$close_pages}} +{{include file="field_select.tpl" field=$close_profiles}} +{{include file="field_select.tpl" field=$close_helpers}} +{{include file="field_select.tpl" field=$close_services}} +{{include file="field_select.tpl" field=$close_friends}} +{{include file="field_select.tpl" field=$close_lastusers}} +{{include file="field_select.tpl" field=$close_lastphotos}} +{{include file="field_select.tpl" field=$close_lastlikes}} +{{include file="field_select.tpl" field=$close_twitter}} +{{include file="field_input.tpl" field=$TSearchTerm}} +{{include file="field_select.tpl" field=$close_mapquery}} + +{{include file="field_input.tpl" field=$ELPosX}} + +{{include file="field_input.tpl" field=$ELPosY}} + +{{include file="field_input.tpl" field=$ELZoom}} + ++ +
+ {{$item.item_photo_menu}} +
+ +{{$item.title}}
{{/if}} + {{$item.body}} + {{if $item.has_cats}} ++
+
+
+
+
+
+
+
+
+ + + {{if $qcomment}} +Help or '@NewHere'?
++Let's talk
+Local Friendica
+NewHere +
Connectable Services
++
+
+
+
+
+
+
+
+
+ diff --git a/view/theme/dispy/templates/contact_template.tpl b/view/theme/dispy/templates/contact_template.tpl new file mode 100644 index 000000000..d22acd5a6 --- /dev/null +++ b/view/theme/dispy/templates/contact_template.tpl @@ -0,0 +1,41 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + ++ {{foreach $contact.photo_menu as $c}} + {{if $c.2}} +- {{$c.0}}
+ {{else}}
+ - {{$c.0}}
+ {{/if}}
+ {{/foreach}}
+
+{{$title}}
+ ++ {{foreach $groups as $group}} +-
+ {{$group.text}}
+ {{if $group.edit}}
+
+ {{/if}}
+ {{if $group.cid}}
+
+ {{/if}}
+
+ {{/foreach}}
+
++
{{$messages}}
+ +{{$album.1}}
+ ++ {{foreach $profile.menu.entries as $e}} +-
+ {{$e.profile_name}}
+
+ {{/foreach}}
+ - {{$profile.menu.chg_photo}}
+ - {{$profile.menu.cr_new}}
+
++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+
+{{$title}}
+ {{$searchbox}} + ++ {{foreach $saved as $search}} +-
+
+ {{$search.term}}
+
+ {{/foreach}}
+
+ ++ {{$item.item_photo_menu}} +
++ {{$item.item_photo_menu}} +
++ {{if $item.star}} +-
+
+
+ {{/if}}
+ {{if $item.tagger}}
+ -
+
+
+ {{/if}}
+ {{if $item.vote}}
+ -
+
+ {{if $item.vote.dislike}}
+
+ {{/if}}
+ {{if $item.vote.share}}
+ {{/if}}
+
+
+ {{/if}}
+
+
+ {{if $item.filer}} +
+ {{/if}}
+ {{if $item.plink}}
+
+ {{/if}}
+ {{if $item.edpost}}
+
+ {{/if}}
+
+ -
+ {{if $item.drop.dropping}}{{/if}}
+ {{if $item.drop.pagedrop}}{{/if}}
+
+
+ ++
+
+
+
+
+
+
+
+
+ + + {{if $qcomment}} + + {{/if}} + + ++
+
+
+
+
+
+
+
+
+ + + + +- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+ {{if $wallmessage}}
+ - {{$wallmessage}}
+ {{/if}}
+
+{{$header}}
+ +{{$title}}
+ ++ {{foreach $groups as $group}} +-
+ {{if $group.cid}}
+
+ {{/if}}
+ {{if $group.edit}}
+
+ {{/if}}
+ {{$group.text}}
+
+ {{/foreach}}
+
++
- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+
++ {{$item.item_photo_menu}} +
+$ptitle
+ +$nickname_block + +$h_pass
+ +{{inc field_password.tpl with $field=$password1 }}{{endinc}} +{{inc field_password.tpl with $field=$password2 }}{{endinc}} + +{{ if $oid_enable }} +{{inc field_input.tpl with $field=$openid }}{{endinc}} +{{ endif }} + +$h_basic
+ +{{inc field_input.tpl with $field=$username }}{{endinc}} +{{inc field_input.tpl with $field=$email }}{{endinc}} +{{inc field_custom.tpl with $field=$timezone }}{{endinc}} +{{inc field_input.tpl with $field=$defloc }}{{endinc}} +{{inc field_checkbox.tpl with $field=$allowloc }}{{endinc}} + + +$h_prv
+ + + + +{{inc field_input.tpl with $field=$maxreq }}{{endinc}} + +$profile_in_dir + +$profile_in_net_dir + +$hide_friends + +$hide_wall + +$blockwall + +$blocktags + +$suggestme + +$unkmail + + +{{inc field_input.tpl with $field=$cntunkmail }}{{endinc}} + +{{inc field_input.tpl with $field=$expire.days }}{{endinc}} + + +$expire.advanced
+ {{ inc field_yesno.tpl with $field=$expire.items }}{{endinc}} + {{ inc field_yesno.tpl with $field=$expire.notes }}{{endinc}} + {{ inc field_yesno.tpl with $field=$expire.starred }}{{endinc}} + {{ inc field_yesno.tpl with $field=$expire.network_only }}{{endinc}} ++ + +$group_select + + +
$h_not
+$h_advn
+$ptitle
+ +$nickname_block + +$h_pass
+ +{{inc field_password.tpl with $field=$password1 }}{{endinc}} +{{inc field_password.tpl with $field=$password2 }}{{endinc}} +{{inc field_password.tpl with $field=$password3 }}{{endinc}} + +{{ if $oid_enable }} +{{inc field_input.tpl with $field=$openid }}{{endinc}} +{{ endif }} + +$h_basic
+ +{{inc field_input.tpl with $field=$username }}{{endinc}} +{{inc field_input.tpl with $field=$email }}{{endinc}} +{{inc field_password.tpl with $field=$password4 }}{{endinc}} +{{inc field_custom.tpl with $field=$timezone }}{{endinc}} +{{inc field_input.tpl with $field=$defloc }}{{endinc}} +{{inc field_checkbox.tpl with $field=$allowloc }}{{endinc}} + + +$h_prv
+ + + + +{{inc field_input.tpl with $field=$maxreq }}{{endinc}} + +$profile_in_dir + +$profile_in_net_dir + +$hide_friends + +$hide_wall + +$blockwall + +$blocktags + +$suggestme + +$unkmail + + +{{inc field_input.tpl with $field=$cntunkmail }}{{endinc}} + +{{inc field_input.tpl with $field=$expire.days }}{{endinc}} + + +$expire.advanced
+ {{ inc field_yesno.tpl with $field=$expire.items }}{{endinc}} + {{ inc field_yesno.tpl with $field=$expire.notes }}{{endinc}} + {{ inc field_yesno.tpl with $field=$expire.starred }}{{endinc}} + {{ inc field_yesno.tpl with $field=$expire.network_only }}{{endinc}} ++ + +$group_select + + +
$h_not
+$h_advn
+{{$admtxt}}
++- {{$admin.site.1}}
+ - {{$admin.users.1}}
+ - {{$admin.plugins.1}}
+ - {{$admin.themes.1}}
+ - {{$admin.dbsync.1}}
+
+ +{{if $admin.update}} ++- {{$admin.update.1}}
+ - Important Changes
+
+{{/if}} + + +{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} ++ {{foreach $admin.plugins_admin as $l}} +- {{$l.1}}
+ {{/foreach}}
+
+ + +{{$logtxt}}
++- {{$admin.logs.1}}
+
+ diff --git a/view/theme/frost-mobile/templates/admin_site.tpl b/view/theme/frost-mobile/templates/admin_site.tpl new file mode 100644 index 000000000..035024e68 --- /dev/null +++ b/view/theme/frost-mobile/templates/admin_site.tpl @@ -0,0 +1,72 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$title}} - {{$page}}
+ +{{$registration}}
+ {{include file="field_input.tpl" field=$register_text}} + {{include file="field_select.tpl" field=$register_policy}} + + {{include file="field_checkbox.tpl" field=$no_multi_reg}} + {{include file="field_checkbox.tpl" field=$no_openid}} + {{include file="field_checkbox.tpl" field=$no_regfullname}} + + + +{{$upload}}
+ {{include file="field_input.tpl" field=$maximagesize}} + {{include file="field_input.tpl" field=$maximagelength}} + {{include file="field_input.tpl" field=$jpegimagequality}} + +{{$corporate}}
+ {{include file="field_input.tpl" field=$allowed_sites}} + {{include file="field_input.tpl" field=$allowed_email}} + {{include file="field_checkbox.tpl" field=$block_public}} + {{include file="field_checkbox.tpl" field=$force_publish}} + {{include file="field_checkbox.tpl" field=$no_community_page}} + {{include file="field_checkbox.tpl" field=$ostatus_disabled}} + {{include file="field_select.tpl" field=$ostatus_poll_interval}} + {{include file="field_checkbox.tpl" field=$diaspora_enabled}} + {{include file="field_checkbox.tpl" field=$dfrn_only}} + {{include file="field_input.tpl" field=$global_directory}} + {{include file="field_checkbox.tpl" field=$thread_allow}} + {{include file="field_checkbox.tpl" field=$newuser_private}} + {{include file="field_checkbox.tpl" field=$enotify_no_content}} + {{include file="field_checkbox.tpl" field=$private_addons}} + {{include file="field_checkbox.tpl" field=$disable_embedded}} + + +{{$advanced}}
+ {{include file="field_checkbox.tpl" field=$no_utf}} + {{include file="field_checkbox.tpl" field=$verifyssl}} + {{include file="field_input.tpl" field=$proxy}} + {{include file="field_input.tpl" field=$proxyuser}} + {{include file="field_input.tpl" field=$timeout}} + {{include file="field_input.tpl" field=$delivery_interval}} + {{include file="field_input.tpl" field=$poll_interval}} + {{include file="field_input.tpl" field=$maxloadavg}} + {{include file="field_input.tpl" field=$abandon_days}} + + + +{{$title}} - {{$page}}
+ +{{$h_pending}}
+ {{if $pending}} +{{$no_pending}}
+ {{/if}} + + + + +{{$h_users}}
+ {{if $users}} ++
+
+
+
+
+{{**}}
+
+ {{**}} +{{**}} + + {{if $qcomment}} + + {{/if}} + + ++ {{foreach $tabs as $tab}} +- {{$tab.label}}
+ {{/foreach}}
+
+
diff --git a/view/theme/frost-mobile/templates/contact_block.tpl b/view/theme/frost-mobile/templates/contact_block.tpl new file mode 100644 index 000000000..5a0a26b87 --- /dev/null +++ b/view/theme/frost-mobile/templates/contact_block.tpl @@ -0,0 +1,17 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +{{**}} diff --git a/view/theme/frost-mobile/templates/contact_edit.tpl b/view/theme/frost-mobile/templates/contact_edit.tpl new file mode 100644 index 000000000..924acb0c1 --- /dev/null +++ b/view/theme/frost-mobile/templates/contact_edit.tpl @@ -0,0 +1,98 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$header}}
+ ++{{$relation_text}}
+ {{$nettype}}
+ {{if $lost_contact}}
+ {{$lost_contact}}
+ {{/if}}
+ {{if $insecure}}
+ {{$insecure}}
+ {{/if}}
+ {{if $blocked}}
+ {{$blocked}}
+ {{/if}}
+ {{if $ignored}}
+ {{$ignored}}
+ {{/if}}
+ {{if $archived}}
+ {{$archived}}
+ {{/if}}
+
+ -
+
+ {{if $common_text}}
+ {{$common_text}}
+ {{/if}}
+ {{if $all_friends}}
+ {{$all_friends}}
+ {{/if}}
+
+
+ - {{$lblrecent}}
+ {{if $lblsuggest}}
+ - {{$lblsuggest}}
+ {{/if}}
+
+
+{{$lbl_info1}}
+ + +{{$lbl_vis1}}
+{{$lbl_vis2}}
++ {{foreach $contact.photo_menu as $c}} + {{if $c.2}} +- {{$c.0}}
+ {{else}}
+ - {{$c.0}}
+ {{/if}}
+ {{/foreach}}
+
++{{if $contact.alt_text}}
{{$header}}{{if $total}} ({{$total}}){{/if}}
+ +{{if $finding}}{{$finding}}
{{/if}} + +{{$title}}
++{{$desc}} +
++ {{$field.3}} +
+ + {{$field.3}} +
+ + {{$field.3}} +
+ + {{$field.3}} +
+ {{foreach $items as $item}} +- {{$item.label}}
+ {{/foreach}}
+
+
+ ++
+
+ {{include file="field_checkbox.tpl" field=$lremember}} + +
+
{{$title}}
++ +
+ +
+{{$desc}} +
++ +
diff --git a/view/theme/frost-mobile/templates/mail_list.tpl b/view/theme/frost-mobile/templates/mail_list.tpl new file mode 100644 index 000000000..0607c15c7 --- /dev/null +++ b/view/theme/frost-mobile/templates/mail_list.tpl @@ -0,0 +1,21 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+
+
+
+
+
+
+
+
+
+ + + + ++
{{$album.1}}
+ +{{$pagename}}
+ +{{$banner}}
+ ++- {{$viewprof}}
+- {{$cl_prof}}
+
+- {{$del_prof}}
+
+
++{{$lbl_about}} +
+ + + ++{{$lbl_hobbies}} +
+ + + ++{{$lbl_likes}} +
+ + + ++{{$lbl_dislikes}} +
+ + + ++{{$lbl_social}} +
+ + + ++{{$lbl_music}} +
+ + + ++{{$lbl_book}} +
+ + + ++{{$lbl_tv}} +
+ + + ++{{$lbl_film}} +
+ + + ++{{$lbl_love}} +
+ + + ++{{$lbl_work}} +
+ + + ++{{$lbl_school}} +
+ + + +{{$title}}
+ +- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+ {{if $wallmessage}}
+ - {{$wallmessage}}
+ {{/if}}
+
+{{$header}}
+ +{{$regtitle}}
++ +
{{$realpeople}}
+ ++{{if $oidlabel}} +
{{$fillwith}} {{$fillext}}
++ +{{if $invitations}} + +
{{$invite_desc}}
++ +
+ +
+ +
{{$nickdesc}}
++ +
+ +{{$license}} + +
{{$ptitle}}
+ +{{$nickname_block}} + +{{$h_pass}}
+ +{{include file="field_password.tpl" field=$password1}} +{{include file="field_password.tpl" field=$password2}} +{{include file="field_password.tpl" field=$password3}} + +{{if $oid_enable}} +{{include file="field_input.tpl" field=$openid}} +{{/if}} + +{{$h_basic}}
+ +{{include file="field_input.tpl" field=$username}} +{{include file="field_input.tpl" field=$email}} +{{include file="field_password.tpl" field=$password4}} +{{include file="field_custom.tpl" field=$timezone}} +{{include file="field_input.tpl" field=$defloc}} +{{include file="field_checkbox.tpl" field=$allowloc}} + + +{{$h_prv}}
+ + + + +{{include file="field_input.tpl" field=$maxreq}} + +{{$profile_in_dir}} + +{{$profile_in_net_dir}} + +{{$hide_friends}} + +{{$hide_wall}} + +{{$blockwall}} + +{{$blocktags}} + +{{$suggestme}} + +{{$unkmail}} + + +{{include file="field_input.tpl" field=$cntunkmail}} + +{{include file="field_input.tpl" field=$expire.days}} + + +{{$expire.advanced}}
+ {{include file="field_yesno.tpl" field=$expire.items}} + {{include file="field_yesno.tpl" field=$expire.notes}} + {{include file="field_yesno.tpl" field=$expire.starred}} + {{include file="field_yesno.tpl" field=$expire.network_only}} ++ + +{{$group_select}} + + +
{{$h_not}}
+{{$h_advn}}
++
{{$admtxt}}
++- {{$admin.site.1}}
+ - {{$admin.users.1}}
+ - {{$admin.plugins.1}}
+ - {{$admin.themes.1}}
+ - {{$admin.dbsync.1}}
+
+ +{{if $admin.update}} ++- {{$admin.update.1}}
+ - Important Changes
+
+{{/if}} + + +{{if $admin.plugins_admin}}{{$plugadmtxt}}
{{/if}} ++ {{foreach $admin.plugins_admin as $l}} +- {{$l.1}}
+ {{/foreach}}
+
+ + +{{$logtxt}}
++- {{$admin.logs.1}}
+
+ diff --git a/view/theme/frost/templates/admin_site.tpl b/view/theme/frost/templates/admin_site.tpl new file mode 100644 index 000000000..af0eebacc --- /dev/null +++ b/view/theme/frost/templates/admin_site.tpl @@ -0,0 +1,81 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} + +{{$title}} - {{$page}}
+ +{{$registration}}
+ {{include file="field_input.tpl" field=$register_text}} + {{include file="field_select.tpl" field=$register_policy}} + {{include file="field_input.tpl" field=$daily_registrations}} + {{include file="field_checkbox.tpl" field=$no_multi_reg}} + {{include file="field_checkbox.tpl" field=$no_openid}} + {{include file="field_checkbox.tpl" field=$no_regfullname}} + + + +{{$upload}}
+ {{include file="field_input.tpl" field=$maximagesize}} + {{include file="field_input.tpl" field=$maximagelength}} + {{include file="field_input.tpl" field=$jpegimagequality}} + +{{$corporate}}
+ {{include file="field_input.tpl" field=$allowed_sites}} + {{include file="field_input.tpl" field=$allowed_email}} + {{include file="field_checkbox.tpl" field=$block_public}} + {{include file="field_checkbox.tpl" field=$force_publish}} + {{include file="field_checkbox.tpl" field=$no_community_page}} + {{include file="field_checkbox.tpl" field=$ostatus_disabled}} + {{include file="field_select.tpl" field=$ostatus_poll_interval}} + {{include file="field_checkbox.tpl" field=$diaspora_enabled}} + {{include file="field_checkbox.tpl" field=$dfrn_only}} + {{include file="field_input.tpl" field=$global_directory}} + {{include file="field_checkbox.tpl" field=$thread_allow}} + {{include file="field_checkbox.tpl" field=$newuser_private}} + {{include file="field_checkbox.tpl" field=$enotify_no_content}} + {{include file="field_checkbox.tpl" field=$private_addons}} + {{include file="field_checkbox.tpl" field=$disable_embedded}} + + +{{$advanced}}
+ {{include file="field_checkbox.tpl" field=$no_utf}} + {{include file="field_checkbox.tpl" field=$verifyssl}} + {{include file="field_input.tpl" field=$proxy}} + {{include file="field_input.tpl" field=$proxyuser}} + {{include file="field_input.tpl" field=$timeout}} + {{include file="field_input.tpl" field=$delivery_interval}} + {{include file="field_input.tpl" field=$poll_interval}} + {{include file="field_input.tpl" field=$maxloadavg}} + {{include file="field_input.tpl" field=$abandon_days}} + {{include file="field_input.tpl" field=$lockpath}} + {{include file="field_input.tpl" field=$temppath}} + {{include file="field_input.tpl" field=$basepath}} + +{{$performance}}
+ {{include file="field_checkbox.tpl" field=$use_fulltext_engine}} + {{include file="field_input.tpl" field=$itemcache}} + {{include file="field_input.tpl" field=$itemcache_duration}} + + + + +{{$title}} - {{$page}}
+ +{{$h_pending}}
+ {{if $pending}} +{{$no_pending}}
+ {{/if}} + + + + +{{$h_users}}
+ {{if $users}} ++
+
+
+
+
+
+
+
+
+{{**}} +{{**}} + + {{if $qcomment}} + + {{/if}} + + +{{$header}}
+ ++{{$relation_text}}
+ {{$nettype}}
+ {{if $lost_contact}}
+ {{$lost_contact}}
+ {{/if}}
+ {{if $insecure}}
+ {{$insecure}}
+ {{/if}}
+ {{if $blocked}}
+ {{$blocked}}
+ {{/if}}
+ {{if $ignored}}
+ {{$ignored}}
+ {{/if}}
+ {{if $archived}}
+ {{$archived}}
+ {{/if}}
+
+ -
+
+ {{if $common_text}}
+ {{$common_text}}
+ {{/if}}
+ {{if $all_friends}}
+ {{$all_friends}}
+ {{/if}}
+
+
+ - {{$lblrecent}}
+ {{if $lblsuggest}}
+ - {{$lblsuggest}}
+ {{/if}}
+
+
+{{$lbl_info1}}
+ + +{{$lbl_vis1}}
+{{$lbl_vis2}}
++ {{foreach $contact.photo_menu as $c}} + {{if $c.2}} +- {{$c.0}}
+ {{else}}
+ - {{$c.0}}
+ {{/if}}
+ {{/foreach}}
+
++{{if $contact.alt_text}}
{{$header}}{{if $total}} ({{$total}}){{/if}}
+ +{{if $finding}}{{$finding}}
{{/if}} + +{{$tabs}} + +{{$title}}
++{{$desc}} +
+{{$title}}
+ ++{{$desc}} +
+ ++ +
+- FileBrowser
+
++ {{foreach $folders as $f}}- {{$f.1}}
{{/foreach}}
+
++ {{foreach $files as $f}} +- {{$f.1}}
+ {{/foreach}}
+
++
+
+ {{include file="field_checkbox.tpl" field=$lremember}} + +
+ +
{{$title}}
++ +
+{{$desc}} +
++ +
diff --git a/view/theme/frost/templates/mail_list.tpl b/view/theme/frost/templates/mail_list.tpl new file mode 100644 index 000000000..0607c15c7 --- /dev/null +++ b/view/theme/frost/templates/mail_list.tpl @@ -0,0 +1,21 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +
+
+
+
+
+
+
+
+
+
+ + + + ++ +
{{$album.1}}
+ +{{$pagename}}
+ +{{$title}}
+ + +{{$banner}}
+ ++- {{$viewprof}}
+- {{$cl_prof}}
+
+- {{$del_prof}}
+
+
++{{$lbl_about}} +
+ + + ++{{$lbl_hobbies}} +
+ + + ++{{$lbl_likes}} +
+ + + ++{{$lbl_dislikes}} +
+ + + ++{{$lbl_social}} +
+ + + ++{{$lbl_music}} +
+ + + ++{{$lbl_book}} +
+ + + ++{{$lbl_tv}} +
+ + + ++{{$lbl_film}} +
+ + + ++{{$lbl_love}} +
+ + + ++{{$lbl_work}} +
+ + + ++{{$lbl_school}} +
+ + + +- {{$location}}
+ -
+ {{if $profile.address}}
{{$profile.address}} {{/if}}
+
+ {{$profile.locality}}{{if $profile.locality}}, {{/if}}
+ {{$profile.region}}
+ {{$profile.postal_code}}
+
+ {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
+
+
+ {{/if}} + + {{if $gender}}- {{$gender}}
- {{$profile.gender}}
{{/if}} + + {{if $profile.pubkey}} {{/if}} + + {{if $marital}}- ♥{{$marital}}
- {{$profile.marital}}
{{/if}} + + {{if $homepage}}- {{$homepage}}
- {{$profile.homepage}}
{{/if}} + + {{include file="diaspora_vcard.tpl"}} + + ++ {{if $connect}} +- {{$connect}}
+ {{/if}}
+ {{if $wallmessage}}
+ - {{$wallmessage}}
+ {{/if}}
+
+{{$header}}
+ +{{$regtitle}}
++ +
{{$realpeople}}
+ ++{{if $oidlabel}} +
{{$fillwith}} {{$fillext}}
++ +{{if $invitations}} + +
{{$invite_desc}}
++ +
{{$nickdesc}}
++ +
+ +
+ {{$item.item_photo_menu}} +
+ {{**}} ++ {{$item.item_photo_menu}} +
+{{**}} + ++
`J(M1%E(;~=tG;`Z+nyGtxlJE-d-zOXHRCo0rTJb{~ z%0_R(b{q?)$jUAE0}_k8T5|4QGYTd{34ea~R%}smBb`u;0)O^pPWO#J@_d%L`ColF zkCd62NVyX{eZiTzp~p?`$p1BesKc87yzd!W91W+hWhchcO;y
z@ocQqGhcb%_7@H8oz?UI);g$B`+hxp>9#Ixhk+u9-^{I_oCk{v|NYpx>{Am#uKj%R
z@bmfx{_{Ixt#26hl(-3rnfL17iQp_4AZ5!$mb6>3)ndY@Lzkx0Id+jD^I5F?C6SEC
zDlFmevDVU3>{2N{6Y
zn^XTQ4{ET6-&X95coe6ep1jbLrtj}|02`Ol4mhNO>HaJ}htgE>avc|O_T0zTrg^;haDLue=hOum1SSdMGt7WzvI}T){`aHCh
z5fk#9Ad`uiDvLHFi#u_$+6ic|c|IkSBKI!<5yCWPc4`F1?9A-k3y>k5kQUq>n!%nG
z(A|-tE@WqBrU#foInzyfTms;kkXDhw9@q^q5kor>z*SDuJBZ8#YTK)`E?^8o(H7{0
zZo$|PkV-e*U2lL!H$83UeKVNMw#E!HYS!su2$gj<7@D!kBd?ntIm1kJ-au>#0%nnU
zVCIfUwWn3a6%`f?D&m)%~;RlXo^0eOm-`8cIdfvXT|REjO|6@h8OmH*ckd1TV-2OQB$;i
zQ|+0l!Z)p`gm7|VQ5b|G@5DoeCUt4UBUc^+K7nL{^&vGhoMiqadcuNJf12Dx1TCpC
zTMj@nQ(Ad!ijf|J9MU|%2!x6a9L4fxy?hv^4B{--sW?=&94&xo=A;{%&N0fNH6tEM
z`y-QRA}3Snr5QH62#q)ZC@bukuACw{-!aO-jQSx_vkKD&^AGn*4V#{vLzDv_PJC+V
z)fu$F9~1g%tZ80b;IoDEa)8C~SmDO9O5*uVZ>_ORfAQ!521_=IrL_e?d@NZ(V1Yj*
z=q5xuA7!78dNKV38N{7QK!6*>x&mm3Y8FS^Y62FHBAW6r^&M>-(`=OD0t@m9ND$N0
zC>42r?Oapm5H6iS)Ye=;IS}VpfY?@iOrsO+8bqK77z9dv%?}Q?XeZ+)C{@#i7_t4um6?=~txEzv2g!N`Bw&)5hHE1B^!hDh@YOHLeqURz;Xu_(m^kkHGnH#6WdNFfwx<#GHt
z=#-gElq4M!;|~N}!S((GFaw}DSmqm|5)QzLJOmXf{pHMFU)b;u!|;0Z3EMz-FcL=v
z0CX~mLPyA;KNyaiO-l`=yfC6&N{5c@kZ4#9NsRkl4KYlcB_$LbLa1QZgAJQiVsnjfelZN`*u<_dhwl#3#;eYKK-*w9Vwsy^&w(5Bg6{c18PCx!I0^6S(aN=nsJ{b@
zSJ?L$x^8MH&U0J!GY{2EI?ts~H(5boBV_qOutHl(bvol>i?a0Oy9S)F(pVl9stFO?
z5Vdb<2RP-_nMoH5v^i7?jId+M3VMVoJ))D9Q<+KsK-tYA=3O_n4Sd+
zK~V*hae>B6Yu;pOi6T5k7;LaNOv$@PqQamRnjsK|XFPFvN)R3oIhxclx9V{hl^bJM
zcC0V>lXAQV14GMIov<|bQg8e5autKSyEFuz1x8mVD;$ryfo9~+)8@@o>^9@vW#xYT
zUbN3_d=%$Y^^;lI2lcF8@snw~D&cF-d9T3}*Eb@bf`&*8>ad*q=4N9ZLYYBsdOAFT
zb2(j+!%694W@wJ2Eo7Q1XGYj$Cb#O*yxd*LHBI9l6r5fn&r1+`$_v9_WPZ2Z128SG
zq)R^|Yrh*Ak(uUwVAYfXjBVZp`)O#ZBO(9S?XI1JJ#sQKI6Wz-W{R#z<5+zxainev
zE=#E$ZKuUX5}xzCF3DpW(?5pBiYv#H;@5R!QO#S
z&LN3a1`?^6WO4+dVv&$aVP)jA+8Utds<}H)RY!|h+pdXymHUwGTAP0n8rT_7CI^8&
zHV4DI+~cVDG~*sY6KlQN^`bZGoR>jp0GQ;Bwir7>cr$=~L))QJ1$wv??u_?V1|O!n-H(GU$&_v=rW7bH6J
z1!t*hGCJ5P3fBwGkjtJ{K7?3v1b$BxG%6+9!B$b}{YMMM%~SJKyS#faA8eRREfbLg
z-rr+4i*3bt{+7FacqX4W^NgY9
z@kx<$>~lwUtgu|#=Q`6XR#wYMY6%X6-#aAa&+T^?R@>Bea(vRtz*$i4GJHOwWF?nu
z`9|iPLd`4dx@PfZfbL_jA<#F`l2Q9~8C^M(`KXEKECUtPhRD*`VI&HR@!~)ewSh+u
zmja*Y126PJ*YvU`O0kIV?tK2sb{l+Kk*%p)`c6I@u4Mp2>dh24mOJiUxU8`tOZZQ6
zQihl`!iy~&JVRy5rA-}0l@r<5@-v(!OIAVdd2HM$ZP(
z>3{rWPVZM#&U4g8OyL~;#dc2wZWjpRCMc!NRwyP+w=cM9tCH9X#!Iqiz`N}Qm9M=i
z#x7h6rAFn*)kqBO_TCo5Lz1k*Pc|)0{5b8eMPi;lOWzmdxOHBtO52pPd{?+k^}Wa?
z^%xpP_5m7aMUW@7S}L^t;05%PA8Ju-N9?>Tq}lDOD(X9kMp%1I_*q8$HLpQYoBrN)
z8Xx@mL&w_jWCTtOv^&h~#Q(Y!{Nhsy%8nTGEW^w)%k6BM_PW>04T*Ox
zssVdEcWM$cg|&7DSb6aTL+0ecA;@h2_&oFx5c*}HsmX4r*HH`e{Wo_vL{~jr*nL*b
z6x>05@t8Io=i6Pb
z&f7377|$Z;d-F)8EE@l%+19m20Gg@ox+WhztmNNe>;00j<8aB!dO*TXKLY%FL~M!W
z74aA>K1__ZB%wHwD1k6516h{*=>E}iKTd3fJalvxT>sbVC5Rp
z@<6UY)%8=sYInserQtafpav;{_YHQ1v;zPm)`@4UqBn
z&MVmnN6Ww~2w>QBc^f*ub^>SY;ZVvl1L8@i4`t+-92)S@q=RxybfGQ`F+iRYYy>|s
zn6qgJ`BRC+hL(D5SDgqJhw*_a?f^-Iuz6BnWOAxNK2bzr1C2Zo1;V-g9ffk9MfS}4
z)ZWiU5)75YpkgyoQVtwL_BC?mwDol|wil#e_8sUD4Ljtip5gtOw+v|;%LT0ui9qe-
zrch~1Lq)AOih-@94rxm}#mrBN0qvxSZF97ejCiDO+DM3=W{MO(skez4R$+1gg8wp4BzGXBdxrMh{@8`)ZoNIG9=>IqQv1$x;56!
z#KL(MEC-<|`g0g`{NX=t9SyXW_#q?)cNc^JobfnN*tDa<;<3f?9a3m#Nqh_!X(Qx=
z5HW@aM7@`KbRr{P!z-QOGpSSVJnDAno{bBke%a?^DVFxo5rzCCN%0Zw%V;hV7Kj8M
zg#nNXdamv6Z5icXSJ7TAbZIl+T~l-o+-^yL4gKwn(>{f!;mf21Fm!2HI9Rx-y}q@g
z#vZC1xSOWQdxDV^gn%dtf@C0t0WsdRxevY<;>Smm;pT@{0cW1c0COTMaxp7o$!0C_
zG*9@#2N*#Q7D&oEf(h-FiD|ibMOKq1E}Wjpm5h-)HC7;uw-8dwEC3w&W-j5w%hSbn
z7hsCaKMlmUQKBfZK+xq_5Wy7KM{t>G(0QGT294Cd5yaF8zM!kkfrJ6G90a^>bh|1JcrMuIJ
zEk-ezMJIWiLtR#DtH4tWa%EXP0;L}@v>HZB$yrV()QT_E-8vc3DL1#aGfrF?9^w^N
zH8VynIy1iC5a7;U5x``KYMH+Lga?b!-fK!a
zob|71vS`mgOcFiL{u{zmzAoe0#XiVN9mV+Agx9A5eDSRndoH|KIw3FImBNl$MH`
zu#HHsHFG_^jE3MKuge(xFD>x#E60$AH70wK&R@&xgo>{_i7>504tqFsbbPtAiSav$
z;MesFB4B>%r)@O&wTkoVkqr3B>~$wQI~ar
z2aIObkUZ*XK&RWi{Vg@rJzzJJg%eFEV@y@SbGI=h-6dnbd(0ZKN
zLctU)E((wh?9&L4=WR0yt>vlDl}vQd*wM3L7bj5{*Jw4VnUR*KOvCnINn
zTzuZXUVGCa(RzMO1r33~6cQl;)SvlU9teSGlrP+A
z)do2}Xj|Qb{KP+c$=N8=rTt_SL6qw@ds~X`JLXDO3wL#
z=4dc$$^zP;MVtz1vj#?5Vd;W6s4d($9r$!iT-UPU^mChRMPu+4&Hx!%CD~?*Up@||
z?Q9`~4o6X1y&hP?U>5c*L5Z=Ee>FZz5l4Roc!wh->1H#T7r^XOCMVh%D93a6t`D`T
zi8icglplamlrl8shB5bwZ}fD@~6_?-S1l4~&ufJ=42-
zQT=t?+V@FdXR!Y+Fy2j$qx*ENF@nEYgz7#0YCn2U>Jb!DRw
zQcV+v8c7vRw4oGUPO^@D87$Bnpaqy^FDL-mf*dCq=16J8epj}J*K~k|*-uoP9waX6
zd1G1T6Mph90?K)4*dl{iG}|*DZQ=Gm#{9=ldQaPX!wn3Z8CpogUKhW*L)DqT=!XJ00XwdK}_COrQ#Pxj1&!`A4gf6?h2sh$<&MUzqB)Y4_Ssz~PXKH&-a>4a4hEL@iHZ-R
zBu~L0=!{1g4e(+`)R9TsdkYzwEBPjR#?9caaRj>uuVL_yRD^{+A^2rtIw!1*L6z`a
zA>FL=^eSY7ig|R)|7q51(*r3i=%5GjkjLOL|6%A!dX6XSZ;q+H*w1Sb^fUJ|g@^T*>C%tJkT~&x1iOKG%Sc=7bvYd&g7(M2|Tzxtr
zMh;k(;z>H+kj2a?Ph3$W-UC1?HlG9@2ZubP1p{ty3w3Btpl}&K9tE#k{q74Fuz{_k
z&NM8c{Fc1I^$Nq94>Sy
zw2ZwAc#)ZdI40P+uQ?Z;C}H{b=D=Xd^{k5{0x9Cf+peM5t-lEId9(Y^s(Vfo2$Ul5Wn!jI4}DM$;qbL~#MjgcpA
z%-M;so1qQYINXK9&KWZXA5{{3%^1XiF`^zGzY^BUS@EZOs+7mK&)3k
zVhMpqR6ac#0*Pv<1|*W+Lmt%aVm!k!n!#n!B{)C6oD%344fqCgiCxk%7vWiS*>?ZB
zzTEX@JY#k`-vo-_Th|+7RA}fz!cX62+^k?`AakAuhsnYQ_boIg#8k%2YR3ieo$)&X
zod5>g=h3?{L`{8_KPT&elbPE!`?VdukjADexwRy&_tp}Hao5L<7D97@uBR55svlr>
zhVJ9d7{c3Nt^3{;_v>I*AQSEuYuOEth<2DmsoMyq+*z-vDbdW;g?pAPgx|rFCzEdU
zSv9XOUt3k*O|I~ra@oq~1qzO8iSDCq8+^pSYs~0w!v=YUDXorwmn0er?2evvPu8to
z6xtlidr7PVGd08(6mN%OVjkYTLOs{&B{cd
z1EX8dvkb}(qXtHe?YF|QgRH^96+1EBU50T4H?Jz^B@VO(#R|RujL~Ycfst_+(AX@y
z@7y%n8&MgAL5k%s!lA3;-o2`VNCDo}S;4rB`9X!e$8C;V82vdm)ZLWQh)gM8P3Ki?=IJ_9HSf?uwHgg84
z;7uYm8Mi@>8n&b9+((%+5p97Cn_3-n3^gifJfYhfjjTdJNg3me$i(Mx!mp^EXP~&z
zr!RBvg4B!wKHQX6MjSCgd@hJ#45~Mu3*#TRx7W
z#=)*2qV8@lbv#}QC37nzazJ*$vV%;|wM)<`roONo`?ta+KZn8cjgKTFY1F22GIkVEbl)Kwzcx}wT5uc~I_D%Jm1MZ;
z{J$6~Qs~ThMhO-YZE`cQKD1`?qqvVyG9)=IR?*)SGn@C_~PNfnVl
zrY?s5iAs?ibLO2$r6M)byNjl2yu)HxYjf)}n;LdvE!ShgOt?R=NC{p8I|VN6q9gNu
z-g1a=nt|q-8sK+i{8*;mnhix6WG3y_t73-r(wzr=i*P1N#R|i1lrA9|R0?)W^@bCT
zQB%KQ=yc0CPqjfrulNHL+w!-BD3YudgCxPiWSuO}W1Gg4i9?+HwZ{>mKUlMJ;fg>f
z*B{OynNdmFena1LR-T5&=jz$MSzEJTTfd5`Q>uvZb%I2g(^}7aZ|1;cEZHNhR@s%$
z0NQ@^%*Rw8k3d0w1L83m=4L#FM@FvOgfW;7DLU(ADPt4)VHR>99HkC>aRe2U+~wI6
z2urz(3(EgZNAgCbaK$|al-#n|q0Dv(#8Wm>3OG(IGaS;c(ncKX&n<7wfj>|0n*El#
z`o7<2QJqEzIwwvTb{eLHjFB?R6cO>Kh|^5+8u!}yr}L`ShD3hL4Y1`}sQw9E`0*Md
zrd$T)DsJ;W*(&Nx^AxHkuTj}4M12DrAE&1qgL|-tg(`>Xm1@WQ9&n!b8A!b-imzT!
z$r>w;#cEO==^#3iO&}>Eo)MAMAdbp&I&GQhKC*j^Tyw=VnC_xwccb;<8N%L
z8(|kVeskA;L_fsH9+PdYu+M^TX)`#abNfwz145pEH6aNQKCG+ZLmcn*H#mCsf|X66
z@}&WU3J|ekU9@+t!K9I(oTbU#)0gkB_Sy(c-MMYrtBog*VCh=qwLffmC(}t@SEYsX7ihky==Sa3Vu!ge6iA>
z2%g1Akru^#ck91wS8nD=R*79myML3~4=;B7Y^RsJd36{fG@U5vVy7S`-SvXq2h2Gs
zysdi9vgZ&E)+O%D*bkgRz2$$Lm+vad(>`#n*dF7q_4wPKeEi$;`}J|1^hM_6((50~hQ_I$>&>l58Kcp3y2UYk_IUIPpbEKMUWk3BYK
z%C=DlJq;bg5mT3I5k>1KCd_Pfzj0F29-n^UzyTsnwN8zlI9_jGPmuNt$|DN;fWCln
z8HxB?aC0N>-wVL9H#|n`uh1!o%0xOx^(2S$_T(bjPA;G*XD{+BkMC
zCNDof2p$F#joXt0!RN$@LpzhIz<^>?Mx_2=|1qoHgK>dZz1Y4mCfvp>2~gSdp>iyAZ;^u&Q87c?`0AL*nVJxU
zj~n7ESE2Ss#wf^nQ*Tx>8P+re+eoP4h;xadgmWlhAXY1CG9ntXxD)SY>v>bL9{VLt
zA_Kt^&!a7|cs|Gq9)ISC^y1Yz58K{lj=mj8G`(URThk79x70J$eXY>lu5{i!bNglX
zElZJVY8b?d3E_mR?y`K&Y;$iKoobXNMNc)r9JVtsf_<6x(>P_`cr5sY%PEeOrMzPC
zyl9!6ec0YIg-TB-&AG=Of9?}K_cjP=1*vSzy#0dzip-ut8qz?zCwmGKNPR+HQ8-7L
za7rt6TXRw;vhO;m;CNecQi}j@$`2^kh2;J~z@gZtotmHRR>Oah$$c7@lgWExhEN(_
z1YJ^pb=6ouC&aRU2iw&+7aHT*BCZp%kRFZJPHh!KP+SSS!7z7hBXp;G&Z%?<|53WK
zF)@wLk1Qs7Z|Aw8G?dtj-r_$p?EUB30D34~85Ld*rylW^7R(Y2LEV%EVVGZ6)kE2g
ztc@RD5eDC{RGf$ec155qWVhE*g+f?{WTxeWpJu*SnWsx;j4Cs$9V+8EpVc)%S`qVO
zXGc9~x1iX@D}*RQfhQGOIa`WOgxLu!d(n^{P4Cn!lA2@9znw9*7aV*DPH-qNEf*R=
z)CO!-XB9gXj1|(xAP2t3g#h*dL1LYA1ohI8#58NW-|Yfg^%V@ReqCZ
za38h8WN2xIpO%GNlicIUm8_0mp<%pDuxU;m1N9uVaKU-eouyvQHGn2Qfu0OARUh9&
zOwz+Rk2x2|gANCD#e)`m*T;)Sw1N?a19=z4gG%)G(zN0XfAUvijAcF6m7d7@s3@%%
z+Vxw)<1c1tT8~^vlm-b$+dyPO#gb%RX@6nmH5L+wA@-fyu)Eo!?Jc$Akd%~7mUiGI
zd0&UBO_o)iEJoH_WDhruIj-I6)JCxoN_|S&c``?dv_e(2+k2Kao^0RBh#)$6hEkJN
zV8m4fXg=BHVfKnI4_ro7V9dNnS7RXUqG!PiwT`v?@gqj1UnWU%RHpZiD8!}B7SBv~
zhy}^<=G3ux&^7>B9;hwFT%dDPw~H#RH>vjK$zEfLv`s6c<~+6`x+5&m<`OT|23yW%
zlO?egm`(~KSfE3OfzApgz1WTRRgv>gmVm9NEz;(?WUSME9RrRMC(HB}CllACBAHg9
z;d{c!ErP`4c&s{3!75hJ|I~YDn`p{VL#7@r
zWXMCH`~cI0s-n?|D|Jhkk~N*EQd^%9r=k=l6sT|&ee>&2J)9r3SEzXEBc~2%2RNsK
zfE*3h!WO8R>G;NrQt15q{%(=hBhny*QKOy$j3#yn*HdL0iD67MUIoT8SpVc%s)@G!
zN^8AN^7OAZnz|L*W1HO7X`ur_p?aq%k$R{q&hu2U6<=?1c>WSi5;T-Y7|EsH(d>0s
zfgkz{bOTMXdZ!gbz526s>X=%^0%a``SC5nut*DT)?IQ8VK#_3WR;uc)gWb_w#Q?b|
zuSPB1_uyW;TNWBKo?=4B+_l+dni3;H(8wPk^Z{xa^nuEq5)l;bhsp%D#{`&2B`Ia%
zE6E>s5|mF1HK=;pGLf}e#sZPGxyBYK#o(xra_|}T8ZpV@hNJA1C>)bDAiVU)!xbub
zkP!QMhBL`3jQu_7Imn$w=IbF6#kaMfEG|9YV#Z6C7a6abig5vcX7K)Px{bjgj=*{%
zOpH5jcDy4Y;di)A!$3C{#7nl9CF|=YX+ko|sD<*w_9(?%Oi39P$%%%7#&RMjJo%-i
zc+fA(D>b&^i&+o7Az$GD*n#q60{PicDwY!-TtMV;=L}?~*h53{Gad_c3zBS~UgzYm
zpiXzxLXPf7&$yNl?HUKsaA49)2u3z-sN+MdKWr>M+0c;ivdF)RRv5AZFU{il
zm8JJ>3vA)~WL@lXJ003ljN$sDEx0f8;$EkZ7#eT1-hRgdr$J(g6W3LOg(G`@WB7MC
zgJQi(JOpix3@brsB>A~un-O%9cA~t!XpW@<#Q;{iBOVZ<3d+HU1Yw5fTrdte!;HD~
zH?HRyAI&~xdylU8gz{f^nn?+7OIUVzW4KHa16bbDy>GX@Bi^DU_w6HNwFrIXdI$6|
zKoc7MLs1`t#NSg1WuB_F#bmyBhVLCOO}}M|oT&Zi){wZCl?bE9SHVOjORckn+$`u8
zg&>$Tgk`ZNiQKZiP0}wBc`A(RpadhP)ve&fj7rjPP5vM)4449R=eh(LOwzO8{1a~O
zM?6LRS_6V$X?odkXNvYQEe9Q$$(~}NH#lV!cQcIqNG-zk7A130zBG_IwUZ)d=Vc~v
zb6$UM)g5~tIH6$uS*=z2$=;m-S}4h4CsF>GNez#Ac9A2c%*FCMN^w-h;XeO!^zR90
zp+Y(xoRHluEmJ~)K<$0(?l6W;=l;)tqU@D9MG`7*>V4KTy0i6kE>amj-=DEubhfBe
z1PCEzY^X*?%VQShY&0J9o5tG`NwGL|R?8twMA@c4o;1{sVdXTpd=3i0BA
z-!KTOqDe8yqxecIBT)8TfEwd(;`{oIeXkFSkB9sdAhykSGaObTB33>&FesAw2e8u=#{3
zd@8kn$by6p;+_b2u;eUp@G}u(K9CADg2mws6k`VR74*O&I*m?=uFJwWBP*TWUF
zp9EtTzWw~U3aUTEe_w749WnUG&`>yxn{BcHaB!#LAp<5VSW?z@unqh@GwIR4Y@%d=
z#+>FmGA$uggxi%mRFJ~z;RrdgeToyQ7Aj6nn04u*IwYI^6Qd$1H!+`TwCgOf?5nSn
zx*(34Q&N^2&OZU6&L{FT`NVJ?zdzS_j!P@)>z7~xG^v1gvf^3}s#Remfw
z98VB;6K^K14j9>uqH8n;3oAg@HRCB$PaiF}%O{}LFq#LoZa){t@
zGkhgANuo~(q-^7NUNEp*jN@R%X`4ber;ub6U{S*>_*am|N1Zj>g3%Y$(R~&haZHG!
zlF(eNGlpbDoiW2eZSRio+~lNpI|X{!1KI#ZKJ)a$#`9I0ER5REIC~kbW!BE|g)@rx
zZGE5ZxND_YS=YKTdhe!M2#Kt4Qgr=hvG+2WZWRS8RwtOHSR3F$qyx{e_1VTNtG(Ml
z@##Mp41!3IdZeoxwS2R!?%2x8;+hYR7Ch|te1He-9%a#k5b
zfm%fBK*2+q{EMg_mR*O)>B&^Vkc4t{E3v}h+PxgExB=b6{meW~L6)(QKJ5sbsiM5G
z>Ms1t)C4)~Y*rE&_Y23^nO%?l4XXSeGzNRDcO*ziGp%xqcrpgAekW?^Rs@Ebq6l24F`i!^=5*0LM33qh`sP&pd|y{@S~O#3x}xh&?vR5Z56)@`6u=U
z#7|B1f#u|za2!yHxeH<&KIg7dm=1Ghz{0wLfu0bV`iW9f_|=Fs2qCQ^R-l4{RX*`g
z&7Y&Y@PhDR#Ei(3c7n$#8+2L$Uy+JkroAfr~5JuO>I{hIOlezPp7ltl8yA}kE3}TEU
z#41Gm6%$5O-y-)Y5LJ3PRUY@621SSJ?oKEvOr%{;r8Y4p&EFOrbl|6qJkFwj6*M=Z
zZllvmL|8;;*HtC?6^sP_Eo>EBYLe--U;
zmqhW-b%hJCn#a3ke`YsA{7u;eHad=M`aCO9v6kAbuY5jGCw&qz1;I)0y|;0D+_`_q|y848u;PU5KAq;`44V4uLUDZc=Xte@%Jt<-hT7BsYZc
zEi_&=LMiCGU3{I^V9{ThrPAaglPk5VutWJM*P~b78%#=0tekY(-Bvb5JdaDzF5q4?
zR9Cl9J(+@XKV8knYJEEGmxJNgtt3J6p-PCO4oW*;dKJS-`Re+P|RDz06
zPhRc{J?0?o;E3S91L0%B*zLjnxXn4j5F0|_u$KKH
zK@-s+gBlVGkF>oD(`!d$bm%*liQ(>^oYMdMm}adaqQ8=IFb|9D;>g<
zoyEW2>?@{A@cjT8Di85@xvwodIN3?tKd|i*=O2FV<})9ZL0lLjsUj!TJq-gFF;pXyFtY0qBWK2<-oK!9GAIa=
z$EKlOsuSkYTtQ?vNf(cc(vJhTL+PpB{(?oa7y|%b4qV1FC0V}hi{C#9?CgF9_icvW
zZXh^TIe=iO>@uZULlO+d0{LRF@c6pg7s=~uG_W&hOB^MdFX0_n}NW=ki
z)eON@@wao+-<5ynPvF9&Kd=2k>R5pmo&FwYG_G6cJ_AU_-3~iC!GVgU{y6s|!3*b_&zec3{W5WW
zkSOFMRjJSRk?k|6Z8Bk$*;Rve(39BBmM9BH?yNnQLz{`tJE-~%m_889r#Yu=xkg~@
z9ISTu_*`q7=uVE=eMckr?45y#?iJ)qX!tue_hvtsuUelDm`ArBoJZ
z7JIYe+Lh=^Pb%NJCSl%@*77^9Oa$z5wDWg?PD8id>S?mp96K0kx8u$<9wrlDFagF+
zj&c2)M|ehEYoC6Xy{=w}qg)$C=YHTZc^GguROIt^BLF}ky~T>>bC5WH{d8eqJf_B7
zdJo4$&-44rVwkqnf{H{INrb#BIr@zRHvR;~(fN8I8ehqydFW#1C{w1|5~h`+J617V
z=G{)mV0jcQzRkT$H8FR`$MR-_cQBA)qjDb0kNEE7%&&D?+!m(TDq-PSv}il^d5D1F
zx^SK(YSL>wx;$0oOBRp@#H`PPYJ45QWAt2LsyXUBQ8u0EK9v`SYkVQYP|r@JJU%p(
zc6c8Q8)UgaG?sF&$reA*s5uSVj!LDOqM)~%UGuRPP$XZKK
zb6|_)>VZE=KuSuV&-*fy!rfGV76Hq?h@&;_>V+V`d_^N~fjBV@8PHp0RoW$8>fQ3(
zgmp%WTY9JAU5&?X_ZTdt*yw&~aoi9gjkzC#^|Q7!ux{j8C8-@S%{qW^`3h4=R5)OG
z_?k(B;#ntql6pQ_#mX!)*Nk-(G%d_M+-y5+$vyRngyhVIEut>+qL!Qv_x@WP;
z^?DeK&-O5f+>6h__gDt3yLWD6(Y<|N(~F%aTTe}1^{3>Quo;H=_Ep^O$6&=pJQX4E
z$daz*oyKhX5anYjMbtJ!;d@y
z|I+K;I8-D=Ao~W@@X0CC`U_pfS^NAisjYopm=mq;h6)W?CXi(F|FIxMK6VqwNXmJ_
z^b=bWO!~AH*tMpBG0BBAVR}BNfH}MyZ1nRR~jorb<9*r6Kk{B|phUdF&B;@^wBD!w>^gDIw%H2k4f)$ba8w93bg(aR*MKn+1ONJ7a)7J;elEVTyGRK*!V|nZ3WhkNPMsB_R3C
z(^ksfr}rcYfr{m>vq-&U)d|R7Uo5uN#r>DV0sw?EZco-VULySXGR$D-l-Rb}xTEog
zaa4K}uh4Dm3hZqDCh}Ilwc)|Y(5x|B5i+q}6!>Oyd~g`ITC9va)X?)N*P!WdJtGVP
z50V*s#DOpuV#=PQ4-9YM2#rvkK_G9V#5C;jM5LAd)lD84>h}%2_g|pmht~u4VK*%B
zr^&+ViD>26UG-=V
z!P^L~iA|XGAc;+l
zsVq#SFYfyeXmh%#Rx!c59QmT~c&(@)*wcXfIe#Lhp&i#Oroj|Sob{S6ZiW!>Ir4e1
zH;L4w-_G0Kwr;Y+!EIG*DPbsQ)^aBWg$k
zI9ASf*N#Y_^2})kMA1!mqn*K;ozqFE3}y!gz^
ztWmF2NXt=^<2C%{)WAOaojwvLIP`kFUnhU^X6-=7xKuHUweqBNg}=-)I&3l3_YCZ<
zl-V0e#QD6BLl{%c_DB$UUuCG{Lg-RSq~djG_1hItx)tQzZ%Y%mE^
zl3an8r_9&sIreV1@`m}r&w9Z`7_*o$Lo10vrOLtN^ qd$xw8juIHl1QthmE#H zl#HjY^es(mVz#(_D{6Fp#E6A&Wyw9`W*f2OIMP<*2B|A*@AQZSuIm72L74P#u?azi zCBUgOTt?GGsJyE$O^$2chL^*3McWfI`%c^!Tn!W9<161*4TX
zoy3LsuGw1g=o1N(IWD;i$v%+~7MA7#l!Iw}bF>agMz6+qw2>TAyqcwl=O#n^Dvhqe
zILO*~!WnCp5#3)re|J`om}F+Yp^(>{nmZG)*|cce4?K}%Z#KyTH^kO4qY5YyQqD8Z
zmo|Ueyv%s7fe~8$DRr&@vIZkvR-{@H;<$qY92@6eT-X{WmRT*5M!Nh!mv%*v#
%X(SMRf4|pRfnuJDV*tR1 zc3ShCS6ak?lz9LT4W`H9-qFS&{7aMLMOxlj)2?^9VJ~Qt{Uv~#sXL4hK}2J;tO<09 zH)oAH1U0k>kQxHix#pu5u+^F&VV{de^V?V_V(op9EQwto+
zzgB{msMY$mpz<8HC(?|9C6jtzKd@Vbf~LmsgA>Jx?1v8D)iWi7+xB6)nqNJr-BhFM
zs|lwuSww?Dm3Y(c*ZkH`KD_7$mVWHY&i*lT>$glOwMi{<(D|}3Xrg_@8WK2+DD{M_
zJA2aH#TJ>%aOvj4L(Ou~887tTUKh7W-vLC)dxZStx*g0PYs72?*$m&iB8_M-_00-*
z)JihKOlf{yhLZ%iPG`%xJK10#E81jer~moN_3U3N8<}9Ax>)+`a%X+
zgoYToK#zGA&|IvV?>%0o?eZ7B^0nF}E9!jKYds~>B@(Yq)|^$RY!JZR>>Hr-=W-j&
z38pmoe@4n+E)<~@VyM(=dy=@*$zNYz&
zXUqT?!BOFw5@UWD+ZP&TKmNM2%z8-1-2%Ce%4wXs9A75&)T7gU3L6g4I;uWFZe+$1
zN5>6T?xyFE_!oZ->tFmetbg&L{N-|BG#GHof8RTQaXq+}g%HUr%iVCnnu0iN_BNU~
zZXo{bIUNVjl@=qdQQ+eCgd}3`9^C(}-#40B$wHjkPu{f&b%xP5pB$*0ES_}!>3ZUoxmcT;ZwzrIC~QdWw4>VzXwxZ%6^{9
z>#y-*b(d&IaTqNF0f1(IZvBQYD+KT~*gAt*8%>|G%(8MXyKytDXzE_di((kj-j4z@
z>dNCiYhzT=RsaRw$*p-~S+hEdqKMj;$S{l+wGY3LZF3*?VHF+RNVeLrJ?-+OZVu@D
zIQ#^%1@h(d6)PF?&BXTxR>76s%wSR2tQH8|^{o`G}LtJoVYYZrxgS8u47o$7sX8R24gHgcMCD*@%mCq7TL)
z1JTprU3z8$N4{dGq8svcIdG!<(ajHD6rX&k{&~=Xr2yX~bl@nt_g_WH##8gn|75{S
zemst9b>$P#bE6Rp}Tx`fWBe5T6mi)Nm|&3XHIny}gGA)>OSmJ{$6^
zf>=>dI_K1D1p$9_*^Pcq`XSY2C3$_^SJ+l`nI1{OYMk7=RD%l(vvy;xd~^Q5ZBORW
zVQB4Q#guMJ%sND~m~P<=>mO|IJeHNbxRjgw54lAs<$Pn|=W+}meg#Oy1%t7{hGaGc
zxmE}2FU%N`FQD2?yAP>ZSxYdeowi{h>0=8roQA>cWrC{j==Z#VTde-gvYW7UQQOds
zto_xEvO0#8#PL9eoFO-3A0qMgo`eDT59o^a&f@F-3CB?a>_YEd4rwb7o_uR0rYfn5
z&oI-jrUo_UI)34j+CJzpT5uwy;0G{ZW@&m=1KZ3+4KVrvx%_9M12rZn*0fsdV~uS2
zkA56)5~J_g`ftJi4f*-6fD$E9#zEx2GD?fNz(9omAIQ)DN%H-V;`{#t{e1lc{lHya
zrycoTD2G~4ZCxGwPtMQBK2ZEif=ZbTw*oc0w`-^5T!3H?>u)%g(kdHAA7j|-q_GGh
z>=>f|KtErd0pI0k`j5SUYgaz}3BO0?T(jhm(z_!;w~yKI6Kj{K1up60pUYb)iXVaQo-PwO4tUX?brFqQZj=-q(cAoSItErcDu(TE7cBK%b8$>vQ$6?b8cRY?j7+Qw@EQ
zl79GiF8pHIV9%lYwY%JF)w}U}&CJ!$CFka^pPv#iv6`j%qsq&?4ezNW@qtoC`Nz}y
zDH;GS^sIzoW#zHO}A26MPC
zd=`JTXwhz}Phs`vJl#)QT`%>(pjy3BkAXDkdGP$9=lcsc^ZR5JS&nZ>j;DrgMSnAl
z+(6@WFfkVYL!n_+%B^F!8M$h!7AqNi+E$n0QiBz??Y%?Xv@eOeFm=Qta9PoA&&kG1
z{78#m6Bj}>M#Bb-BAhnkRMa`Mztn7d$zFUV$SqGKk@~R8zzvePp*VX_vn#=!&dZB<
z0`tIDY&jxZiCR`D^OwO-Lv3|g%(LB`(Sldv!w{!4-j7T3wnwY8#b-u~o5eP8X
zA=Q%YxCBuhn4MN<1d6u?AC#;R9LX_awrKaa@@$m%KunJhYHIo7K5yO!hxfztbgLc%
zqF_#zs_sXjcpF$gTX;oEAgT6Pz}NTmt_+7z4Z?ID@t2jQ|HBCJ=Lx`aF)@Sx+uy=v
zLHyisK;p!7mBX&jfDR-6<34hlxkk|61ZMKIE&SeeRc#eDzrP`rDJ^+JYsz{Rb+SZgZ+MibZ&%QXj$cDQYWW#JXumK|(diog7520&I#T|8jr#E`6}td$UP*n*ZCyRT
zR@qVCA^Z7ZFgu`nGoBr@>WuNJ!=II7*xm2DF=5bjx$4)*Hyuz3WsqHUi5ti)AL{mliX{ci-3UK
zi$zF7axR*5{Hz${h#)K9gGMsFkL$2St4>E{c)9tTJ|9ZH^gBkjq00C{M6l&m09Z~J
z_~0he5xr1TWc5kk6+7Z+6jzxS1#3jh<ZKt_tQh?Y73|x0esOD*{lh
zRl%B#dr#ldur0rFigH+7`pHF5Mm(L)7})p*gUSkeN&^mGi#(=F7j1%(QB>60<&4-G
zR8_a*C9!+J^5&`7n(=2d6b`E?Ra;hfG!(g>_j{R8L@~
z%!JQ-sLX`-eTTxuxFrqs-|@?L%7SkI3W<1Dbxm%ftynno(gvIiLg)j?8I}n)gLX>}5MW-Mi=?Sg
zoKltR71|KU)jA5sCUkg4mY@yrmFx)iWU^fOXmRGrhjYHXX18(P9Ky>SvOJ52E06ka
zy(i9V<88dS@;jTw7W9iuEE4%gn3I;Ws$G|!7id+MY)W!y6lLp%+KhA+IFELtq>P=&czT|l@s
z51WLK5_mZWAU5@?A?NMSEYd+d;9~YyO<#}1LM%uA*OZWa$gx?1E|~2!7EeCWSY9)o
z<;*mkQEEBAskXujE1z}=12U@uWiq(guAM_gLk)M$VT@5N_GYtm9M;-H
znz?z|re`zM$@4?M*|jm;tcbW0OF6H15;4KEnij%D!-a?fuXK)LLdHyua~LQQ0S24;
zO-8~{8xJpeLn9qH5o;5etqdK7)vGLh5nTYxn^^LrhIgWTg6k2-o84~!Kl!;X>ysVG
z5XU$shJ0H5t5`Gf^NN>&oKfl(&FsTC$d_bdJ6yz@Sy+`_qS;%7EEy)o4$N#>GDxg8
z#~U?4(YV5p`*aLF9uca26tju4#J$mV?X9Z-a4}o4QDXiKMeuugY^^m*Ch>YZH3dgB
zRniU&W;C?ej71xIKTu6&c!48!&^noLag`|Rpq|Vavgt*=D@%|Go}~gXbKZrNfbNO4
zfbew7KN|{ZluJ@c`-B${bZj9VZnh1W^Q1+d!rX20X4NPVQnD1m=?;wL8`!i}+m<LD9D?fU~h#F{p{NyDSVLvmb`
z0Ef*+E*1Fs^TMUNuvdgOde=^b+oe*+D5*0<9(Ij@1#6XSzKfRIJ@0>ON^126uc|s)
zr!ddB-4K#ni$
zBaKD+rl88uiZB&k_sS(VB6dmf*mx8md|G=j+%<-Uo?#tPC??iCW$D)TkMT8F$a|J^
zOv3okQAX9o#Ge^bK_6w8NsrcQ(SGeJp)q4=UK)9aCnsA%q+-pkKV=!Ubl0V`ESWqi
zQROADxTHowQGtp)U6Y~EEHZy|Ppc?!lp%vwwJuxC;WnP*
z%}Oj@>N5aFLNAV=pV3nVP*LwNuo+XE+!Q5^Bf1XQff@>5+8l2b)?*+kWSWQ
z3m(DVteK8;e>sNch+4ux+HBF%n1-r6tJ^QOhEAvTcBtagK-yJX0B()(Zc24(-oZ61KUkKyGG+b$qx!}
z+~|WWyLS#)mxrc;On*IFDHh&-AC5V;oA_E~6GVRfnH~k5Wenx-Ml*7+yb6nU*C3DjkES?CrPn8Vb1a1rIXkn$izIBTs}W=7{8xBlXNMW
zno6nK;g`VynIdQ~`z>6t*|tuYeRx<7pPe!?C4+proR4t4L%m~?x^}r^6)YaDkTPeGR-UTtozbWgWGNvh#=^K!TK)@
z(iT(voiUyun#Y%pDv!R@fKlSOTMt`zyRq1kY#o!%%HigLCm-CAKk;49_opt=k6G!d
z@qd`o!>y7CB>BY?Xl$SHx~{pkUW&0g(z3NeTv4&RV^A}@OCVWVyL^Pk;K)DJ#Qlb)
z`H5IsIFPhuC?oI+vBdz+M`c=4#Z>=FKgNwz;ES`zN#`P)a4SlVy9&rOQzuWq>AJ|1
z`Ik5(eY)Mzx#2kbSk}2HB`#W?>11qGD~t5Jf^tHq%%?@ivYCdT*Mg6CgLWq)fL!ukQCu9C1~A0@1R)_e0wUOX9|}m8PKdm$U1RJ%FcU
z%uoB08Df1>)E|(En)GQ-{1pOI2q6}-p~ms$TQUp+A87rqE0suWsF=)1W($D6w(P?{
zs_*2!h@u0-_em2f&kF~C=_?9&qm`w38}9C%{q_5WZ9MPU!pVAG?Osvxvj1zB7v1^g
z#5|zU-zvceAeSa*HsDzlb#MH~-
zPNKDyVk|W*na?YzcDP^Kx|})d5y2T%n6oQi_};GC=9W&8YXTD~PJE}##Oe4eTEtE{
z!VhhVKbN|!p$`m$!1ph?V6N%oKQxTbTx@`E%)BL*--$41-W>*LIhNmrFsHyB#tTf0
zf#=*bK3TLIx5O;}*#@FOt5&-4<5X~7VQrznc9KB;Eq1Sm?lWEg-FR$A61b&Z9S`Oa
zQmJYpXNq*!F8YK>Yj?ZvdvsV55)qR;U6jRyyOb#t^WCPJeX|%sOwE4RcxtBb2N>(z
zvouP0srq)^mz~o)Sg>gl11I*&=VRJGgJO|A>kMeY{7016+=opVf~*|pnC&>~@t8Tl
znJymESLyRePXWpp$voURoW*gz3fUlOBZtCe84xq07Hy_j*BuDE`oIp;l;&I1RqxEm
zHU`?Ai+&)61#u&xqnGFqGP}EAVrum$->Qcm{hryWl`tTi(2e4_o@2*_>%m+9YFexb
zVwza`f_36%al@Pd!jQuVDFFn2xEcTz*lNff;0^P1)-yrDZg`S-LDg(!p5oOu6K?ae
zK*IE3F5L@Z4_RCOgmq5@hP>o*zW1TR&xo;3;+L2w3&SY^UC;Q3KP~u{MSRD+_^HuLYd)5JG*tG4Zqht(!~v$W@`h6)If?^b_QuzIkd)cG
zvbl>!1_ccSyR#J>8?CBmFrOp$el$2ql3{F;5=Y~1!HA;MT?Iw=!S<8Q5NGa%K)=aW
zxMVOA0wStdzweozWbdqK!nENizeO?ADR5M=g_5~!Nx~K>$8>AW<5xj(2j?HndT6xE
zwh7@KBpXy%ifoe)imJFY(Wk2weR
z@o|rnMHYLs!sAW`7d(ww7Mvpm`VPy>0(EGg5eMIoUNB*uy&2i`_Hb_)*NX+*JRjf`$CfPQ`dAwhb4I+jKEK`Z`c_WC
z$DBLU#lDe)+y%&SXAIamA`G+gTchL*YDWaHVWgfOlFRp>x;!I3S62o2OVuBt9VaNW
zVphi08HVG@X_udETBN}`@4v(D?wKJlmX7;0QRP+UtQ<;t(<*=56A+g9a2dS}+#iYj
zW&@&_{*Bl@kq0O*Z!2ryFG$}s&rY$@jmr&-CR%V9G`F)(FFr2PNrSaKSH^gI#5p0b
zql?pHQg}}s6B)^)WgtH4IB=uDY`^@@jpdfhhezV)P;e=)vS1rE*VV&Mlt9hO|{8YmPuR(hN6db?vSM8Hes`=i_^eN
z3Nt4+U$M@Ji{VfcU!EcsZE=8X1BWyQyF$js14Sb(ghwny6kpS)kM|Q=bznJ?egV&(
zA4%4sCoD}Q0xqX9)}2o})UE;yO)IH9k4jMzv;YL2QkMzUX266_0y#(Wi(T9UJZ{Xp
ziP#eE=?$&~
zEZNn|Vxtk}Z>-Kj?hE-;cV~4jm1ssB53q>!S0*wEtgu^Fhq-Yma>rd!kS_W=281^M
zY${yU3UHOXtV8b^v3$r>R5^j}Ci5SAs@xf21Oiboq+Am!^=|aF2p%Qs
zirDctVMkii`}IhuLsisPM)_uc=-iS`OcDLEACYgnIt}0qJ8s*@8AF|HV+WudQXMpb
z0|%{pc@QcE+ch6Sae3!4HgnNmovI8X;wReE=e7tANo1{nQjag-AQwL*XH5{cT74iK
z4MKXLb7*f*U}+}@aVX)#I-%_ewi_uC+@|H&328UJLYI0bdn#O;~SH
zHs$FRS&|(E?uA`&QF#zQcL8zh-5ZVmyOq#I-3j>Jnfvfk6tH)t-3;nQHGu69i8>4Y
zu8^0f5**5LGR40+EZ3K$bqP#&pogqUC_q5e!ZO|hwmpExS>#w)1S(Qu4{5waSfm6ko^p7Fkcc^QY>HF~hRMYi
zF}+iyBrr-xLj(;ZUU1~z4_#x`Fm=j0t~s2zF=*~L(<*b-FcaZ#Cq$h(EY$n)GM}3CJZT}<AcB_v@E39m_pcZKHFEuEKlmPOpX9mhDuCCUc1x73pCK6QZ+{tm9ge5H;S$@~AwIeG4+z2IFB4EBO_$yaCvc#LrtA!W&tCOz~^;?eZq^k@>
zZ!Wp#&Qf+e!kjx-Hu4LG)EjkZM)jQ<g*9(F4eJkTUzQ9#|A5+zLPvY(H2=
zA{a^JqdjuWrV7ir3b16>Zb%em*cE`p;B)uZ90|zO^#bGXaO7@<3}k3|TDV4D{7h6x
zX1Qi@^w7l84i)GFMA)1>dCIG4*W~bvIBZ7>cAc>~
zP^OU9F#MjTg^}Pand^C5Ys%BsP+E)CD|mIBNNj8-N!8-3hN}gtFNeQL4m&s#h4OCD
zt7)>W#c#;sLiir(w@=J=;2=kc>A;r2g77+;po?Gu_liO3j;NWs!dN2tK`f91xi5gH
zo3^Hn2iK&4&H;U!w-~hq;qh^)e0#S
z$zI{RM#@V%3Rd~n?3D{|2+MyUbZ^vPd5f8cvx~v(wXWN#x8%2LkY&LjOolrNiuwRv
z4^<_~y8x27rGuT&{qWd}W09qt0qgA5V9x0dLsoQ^8>y;>%eP}WFH7%tm0yFmCRld>
z;fX0p!6blh+qaDQcEFR-2U4aO;4Nt_|DL2LC3Os>xPbd+Cl{(fm$w7F-<-UUH3D%c1p~tEXh8Q-vw}g4F6Gy_j>@9vgl?IFUu{#)-($m=_|?(4
z3c?gm0~GSyGN<){WNz4`VgULpSzhJ6%8WVn5bOb~SsJoy!wmRP>soM}!}~P*bn&(3
z6qhL3qlU{sP!f;Q1Suj
z+^^PYe9jp#0ubP|nb|m+r*^bNut)qvDh&nnYovU8i}zJq2=t5I&*gd&&^LNr&mRTE
z-rj+!{)y{0eC{
z<@r9`2+HJ+)?=@BtrVo@T}&2Mu6@%wHE<3EWw1#CGt-zQh2l5ePsM$5NW>;QKNnea
z3$^QsVwQyf;5|KM_iBp7K{^KQxd?*oZ$24U;glGOJzm#*^?*5P?l4CfUG6;b#&h@@
z)qZm&RNF1cv=u2jhl%MpNpTd3&={D#@fb;wR-1ZL;h)HqySu?#x`M$Kq1tN>W!J>t
zlNCh(gW@Bdbfuc^oY?0f-j~0{{aBgA#QlvHkdNRhr|2+xU)JV|zqXku55s>mnw{bc
z?D1wQw#${t-XK>N0TQ7)ls#b|$-?TmgX_*?M_L>P=4+Y$7TggvQc=lg=`#YDPe>il
zIjhG?NM5K&LcSZr4l#LOx`k~YJi=|uEzzNQZ(V*HfaEaYi3*+zyES+wcB&~VQ-~^a
z%%2LokiYKlK7nT~*D|Ljwn=2YemcJu+vY
z1-LlsD}}zb=kdq5j^cN5LHu6URNyA@AWcUSorbxghfSR%BP|rL6(G=QuIiscoeYnmOc%e5Z
z;vf;jC_r#?u57nAM6K>!2)=sRiT-4
zT-)%h)^y~aQqp~!Fk}8NUHH!>UUfQ&9v7bV(Ie(iIf8IhR*Z`2P=7%8yEl4Z;uBi4=ku3%b_*9{j=
zqTXiyuM%%)i==J%y)9T_6NT9OkK4e`NPggxySs7p_Dz^~5#`TjqnpV9vywTzW)~CF
z-@6Kltxh-GvJkU7tPv<0UGK2x{p9U#Z?i*WdBOyJ<8Qi^Pvi{MZL$8H^0fWkkXj!k
z@`K!!v=TidMY4=0QxYfwC}(bdAg)x;lYhO~24l8MXp&*IWFrYf8FRN(Bwb_r$-dMi?EHm?NoD)_F+w;f$W-B>i@1
z(KcPdz7Sq*aA=upslubx6*gEg;ha>e7`b>OioMYqr%!c9j72$)M0*HGP|+2=x_zHg)Yiv(*1`usgvr#xhLO5Qq^
zNgs}yq(-gDezj#aioZhq-+0D@a}Q-_h+^GCi}YuyYMPgoxpTwzEL7==2~j0e(Z8{3
z@(Zebvf@w=q5BC9BmIub0mECfu4l5E%2805|K@q=Uvjr;i&sGJQe+&}to8Hdmdd
z{n7UECGHj2i^eAG`D_BoRP_Yrc(p|!5JYykL^=P>oN%Rkl=|iDc@5QwvnsW63>w
zKvgiPw|d6LLBpebY#Mkbj-x{QejgDgcl5(2cnWZgr)G0CHjzm
zmuuCx(DrzrUx?;On=Qq@Yp)cQHy^w_