From 7b92b42603bca729bdef81349c578b65bf7ab256 Mon Sep 17 00:00:00 2001 From: Friendika Date: Mon, 14 Mar 2011 00:28:49 -0700 Subject: keywords split into public and private. Public will be used by the friend finder. --- view/en/profile_edit.tpl | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'view/en') diff --git a/view/en/profile_edit.tpl b/view/en/profile_edit.tpl index b0d4850d0..6c7d74daf 100644 --- a/view/en/profile_edit.tpl +++ b/view/en/profile_edit.tpl @@ -134,11 +134,17 @@ $sexual
-
- - -
(Used for searching public profiles, never shown to others)
-
+
+ + +
(Used for suggesting potential friends, can be seen by others)
+
+ +
+ + +
(Used for searching profiles, never shown to others)
+
-- cgit v1.2.3 From f01538a54f68c172e09aabed90e2651ca2305675 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 15 Mar 2011 17:31:49 -0700 Subject: content expiration --- view/en/settings.tpl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'view/en') diff --git a/view/en/settings.tpl b/view/en/settings.tpl index 97d67cbf6..39b18c126 100644 --- a/view/en/settings.tpl +++ b/view/en/settings.tpl @@ -76,9 +76,8 @@ $profile_in_dir $profile_in_net_dir -
- +
+
Automatically expire (delete) posts older than days
+
+ +
-- cgit v1.2.3 From 3f432a7b82480dd985dbc2a67ae23cfc1ed258c6 Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 16 Mar 2011 19:36:59 -0700 Subject: share,retweet,relay,forward, whatever --- view/en/jot-header.tpl | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'view/en') diff --git a/view/en/jot-header.tpl b/view/en/jot-header.tpl index fe818410e..20f84b851 100644 --- a/view/en/jot-header.tpl +++ b/view/en/jot-header.tpl @@ -111,6 +111,14 @@ tinyMCE.init({ } } + function jotShare(id) { + $('#like-rotator-' + id).show(); + $.get('share/' + id, function(data) { + tinyMCE.execCommand('mceInsertRawHTML',false,data); + $('#like-rotator-' + id).hide(); + $(window).scrollTop(0); + }); + } function linkdropper(event) { var linkFound = event.dataTransfer.types.contains("text/uri-list"); -- cgit v1.2.3 From 334353e502db5abd7ee248d183a915ff7468de3a Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 16 Mar 2011 21:14:22 -0700 Subject: vorbis audio/video link buttons --- view/en/jot-header.tpl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'view/en') diff --git a/view/en/jot-header.tpl b/view/en/jot-header.tpl index 20f84b851..d73fe7d62 100644 --- a/view/en/jot-header.tpl +++ b/view/en/jot-header.tpl @@ -104,6 +104,21 @@ tinyMCE.init({ } } + function jotVideoURL() { + reply = prompt("Please enter a video(.ogg) link/URL:"); + if(reply && reply.length) { + tinyMCE.execCommand('mceInsertRawHTML',false,'[video]' + reply + '[/video]'); + } + } + + function jotAudioURL() { + reply = prompt("Please enter an audio(.ogg) link/URL:"); + if(reply && reply.length) { + tinyMCE.execCommand('mceInsertRawHTML',false,'[audio]' + reply + '[/audio]'); + } + } + + function jotGetLocation() { reply = prompt("Where are you right now?", $('#jot-location').val()); if(reply && reply.length) { -- cgit v1.2.3 From b7292bc673bc7983b1fd933070bc9d6a0a155dbb Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 20 Mar 2011 17:54:50 -0700 Subject: user pref -> block remote wall posting --- view/en/settings.tpl | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'view/en') diff --git a/view/en/settings.tpl b/view/en/settings.tpl index 39b18c126..45060e1c4 100644 --- a/view/en/settings.tpl +++ b/view/en/settings.tpl @@ -88,6 +88,14 @@ $profile_in_net_dir
+
+ + +
+
+ + +
Automatically expire (delete) posts older than days
-- cgit v1.2.3 From 5f9f03daf781b95b5685a19d450800aad879c0de Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 20 Mar 2011 19:29:01 -0700 Subject: simplify insecure network warning --- view/en/insecure_net.tpl | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 view/en/insecure_net.tpl (limited to 'view/en') diff --git a/view/en/insecure_net.tpl b/view/en/insecure_net.tpl deleted file mode 100644 index 5628639cc..000000000 --- a/view/en/insecure_net.tpl +++ /dev/null @@ -1,6 +0,0 @@ -
-

-The social network that $name belongs to is an open network with limited or non-existent privacy controls. -Please use appropriate discretion. -

-
\ No newline at end of file -- cgit v1.2.3 From 798c83b6aa3887622299ec4071c0d817953f3db9 Mon Sep 17 00:00:00 2001 From: Friendika Date: Mon, 21 Mar 2011 00:21:35 -0700 Subject: localise some more templates --- view/en/jot-header.tpl | 165 ------------------------------------------------- view/en/msg-header.tpl | 104 ------------------------------- 2 files changed, 269 deletions(-) delete mode 100644 view/en/jot-header.tpl delete mode 100644 view/en/msg-header.tpl (limited to 'view/en') diff --git a/view/en/jot-header.tpl b/view/en/jot-header.tpl deleted file mode 100644 index d73fe7d62..000000000 --- a/view/en/jot-header.tpl +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - diff --git a/view/en/msg-header.tpl b/view/en/msg-header.tpl deleted file mode 100644 index 174e6c985..000000000 --- a/view/en/msg-header.tpl +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - -- cgit v1.2.3 From 94cbf3bb80371d5b4160db8bef1d70f28f8a0d97 Mon Sep 17 00:00:00 2001 From: Friendika Date: Mon, 21 Mar 2011 04:10:08 -0700 Subject: another template down --- view/en/profile_tabs.tpl | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 view/en/profile_tabs.tpl (limited to 'view/en') diff --git a/view/en/profile_tabs.tpl b/view/en/profile_tabs.tpl deleted file mode 100644 index 9c6c54a1c..000000000 --- a/view/en/profile_tabs.tpl +++ /dev/null @@ -1,7 +0,0 @@ - -
- Status - Profile - Photos -
-
\ No newline at end of file -- cgit v1.2.3 From c4b292a4f103eb049c13dbe3c62f0438c18de816 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 22 Mar 2011 03:07:46 -0700 Subject: account/profile/contacts export --- view/en/settings.tpl | 2 ++ 1 file changed, 2 insertions(+) (limited to 'view/en') diff --git a/view/en/settings.tpl b/view/en/settings.tpl index 45060e1c4..134fffaf9 100644 --- a/view/en/settings.tpl +++ b/view/en/settings.tpl @@ -2,6 +2,8 @@ +$uexport + $nickname_block -- cgit v1.2.3 From 6a280c321daedaa8444a2a64e1a824ae60a9229b Mon Sep 17 00:00:00 2001 From: Friendika Date: Mon, 28 Mar 2011 18:06:36 -0700 Subject: small wording change --- view/en/settings.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/en') diff --git a/view/en/settings.tpl b/view/en/settings.tpl index 134fffaf9..9822291c1 100644 --- a/view/en/settings.tpl +++ b/view/en/settings.tpl @@ -91,7 +91,7 @@ $profile_in_net_dir
- +
-- cgit v1.2.3 From e1fd2ecb16a212c56567ac5c5910d2a2d9754b47 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 29 Mar 2011 15:27:14 -0700 Subject: another template --- view/en/head.tpl | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 view/en/head.tpl (limited to 'view/en') diff --git a/view/en/head.tpl b/view/en/head.tpl deleted file mode 100644 index 8f97a11e5..000000000 --- a/view/en/head.tpl +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - -- cgit v1.2.3 From f1db34eebcef28cb0748931153926374f6442be6 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 29 Mar 2011 17:19:12 -0700 Subject: more templates gone --- view/en/cropbody.tpl | 57 ----------------------------------------- view/en/intros-top.tpl | 7 ----- view/en/registrations-top.tpl | 3 --- view/en/settings_nick_unset.tpl | 14 ---------- 4 files changed, 81 deletions(-) delete mode 100644 view/en/cropbody.tpl delete mode 100644 view/en/intros-top.tpl delete mode 100644 view/en/registrations-top.tpl delete mode 100644 view/en/settings_nick_unset.tpl (limited to 'view/en') diff --git a/view/en/cropbody.tpl b/view/en/cropbody.tpl deleted file mode 100644 index 39395af8e..000000000 --- a/view/en/cropbody.tpl +++ /dev/null @@ -1,57 +0,0 @@ -

Crop Image

-

-Please adjust the image cropping for optimum viewing. -

-
- -
-
-
-
- - - -
- - - - - - - - - - -
- -
- -
diff --git a/view/en/intros-top.tpl b/view/en/intros-top.tpl deleted file mode 100644 index d8b7394a4..000000000 --- a/view/en/intros-top.tpl +++ /dev/null @@ -1,7 +0,0 @@ -

Pending Friend/Connect Notifications

- - - - diff --git a/view/en/registrations-top.tpl b/view/en/registrations-top.tpl deleted file mode 100644 index d8faf3439..000000000 --- a/view/en/registrations-top.tpl +++ /dev/null @@ -1,3 +0,0 @@ -

User registrations waiting for confirm

- - diff --git a/view/en/settings_nick_unset.tpl b/view/en/settings_nick_unset.tpl deleted file mode 100644 index 903768b59..000000000 --- a/view/en/settings_nick_unset.tpl +++ /dev/null @@ -1,14 +0,0 @@ - -
-

-Your profile URL is currently '$baseurl/profile/$uid'. -Setting a nickname will allow a friendly profile URL such as -'nickname@$basepath'. -
-Once set, it can never be changed. The nickname must start with a letter; and only letters, numbers, dashes, and underscores are allowed. -

- - -
-
- -- cgit v1.2.3 From 8357c064ae7eb21ab8ab8b1feec9aa81e5374a9a Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 29 Mar 2011 19:23:02 -0700 Subject: remove obsolete template --- view/en/profile.php | 72 ----------------------------------------------------- 1 file changed, 72 deletions(-) delete mode 100644 view/en/profile.php (limited to 'view/en') diff --git a/view/en/profile.php b/view/en/profile.php deleted file mode 100644 index fa7372668..000000000 --- a/view/en/profile.php +++ /dev/null @@ -1,72 +0,0 @@ - - - - <?php if(x($page,'title')) echo $page['title']; ?> - - - -
- - -
- - -
-
- -
- - - -- cgit v1.2.3 From c32ed16303fed6e421917156d66a0605038430db Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 6 Apr 2011 22:42:08 -0700 Subject: more templates converted to string files --- view/en/directory_header.tpl | 14 -------------- view/en/group_edit.tpl | 24 ------------------------ view/en/group_new.tpl | 23 ----------------------- view/en/pagetypes.tpl | 25 ------------------------- 4 files changed, 86 deletions(-) delete mode 100644 view/en/directory_header.tpl delete mode 100644 view/en/group_edit.tpl delete mode 100644 view/en/group_new.tpl delete mode 100644 view/en/pagetypes.tpl (limited to 'view/en') diff --git a/view/en/directory_header.tpl b/view/en/directory_header.tpl deleted file mode 100644 index 03eed62b3..000000000 --- a/view/en/directory_header.tpl +++ /dev/null @@ -1,14 +0,0 @@ -

Site Directory

- -$globaldir - -$finding - -
-
- - -
-
-
- diff --git a/view/en/group_edit.tpl b/view/en/group_edit.tpl deleted file mode 100644 index e6c7afb49..000000000 --- a/view/en/group_edit.tpl +++ /dev/null @@ -1,24 +0,0 @@ -

Group Editor

- - -
-
-
- - -
-
-
- -$selector - -
-$drop -
-
- -
- -
-
-
diff --git a/view/en/group_new.tpl b/view/en/group_new.tpl deleted file mode 100644 index a1efa7717..000000000 --- a/view/en/group_new.tpl +++ /dev/null @@ -1,23 +0,0 @@ - - - -
-
- -
-

-Create a group of contacts/friends. - -

- - -
-
- -
- - -
-
- - \ No newline at end of file diff --git a/view/en/pagetypes.tpl b/view/en/pagetypes.tpl deleted file mode 100644 index 2036614ab..000000000 --- a/view/en/pagetypes.tpl +++ /dev/null @@ -1,25 +0,0 @@ - -
- - - This account is a normal personal profile -
-
-
- - - Automatically approve all connection/friend requests as read-only fans -
-
-
- - - Automatically approve all connection/friend requests as read-write fans -
-
-
- - - Automatically approve all connection/friend requests as friends -
-
-- cgit v1.2.3 From 4043ede08052846fd02751519b1568d6b8987bfd Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 6 Apr 2011 23:03:54 -0700 Subject: more templates --- view/en/dfrn_req_confirm.tpl | 17 ----------------- view/en/lostpass.tpl | 18 ------------------ 2 files changed, 35 deletions(-) delete mode 100644 view/en/dfrn_req_confirm.tpl delete mode 100644 view/en/lostpass.tpl (limited to 'view/en') diff --git a/view/en/dfrn_req_confirm.tpl b/view/en/dfrn_req_confirm.tpl deleted file mode 100644 index f053f22af..000000000 --- a/view/en/dfrn_req_confirm.tpl +++ /dev/null @@ -1,17 +0,0 @@ - -

-Welcome home $username. -
-Please confirm your introduction to $dfrn_url. - -

-
- - - -$aes_allow - -
- -
-
\ No newline at end of file diff --git a/view/en/lostpass.tpl b/view/en/lostpass.tpl deleted file mode 100644 index a7040c149..000000000 --- a/view/en/lostpass.tpl +++ /dev/null @@ -1,18 +0,0 @@ -

Forgot your Password?

- -

-Enter your email address and submit to have your password reset. Then check your email for further instructions. -

- -
-
- - -
-
-
- -
-
-
- -- cgit v1.2.3 From 000efa6df0ab2510e56d6ffb9a1c6e9f98ac2fc1 Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 6 Apr 2011 23:38:40 -0700 Subject: Add some text suggesting that new folks add some basic profile information if they want to make any friends. --- view/en/register_open_eml.tpl | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'view/en') diff --git a/view/en/register_open_eml.tpl b/view/en/register_open_eml.tpl index 8a00f21e9..221e6ec74 100644 --- a/view/en/register_open_eml.tpl +++ b/view/en/register_open_eml.tpl @@ -11,7 +11,20 @@ Password: $password You may change your password from your account "Settings" page after logging in. -Please take a few moments to review the other account settings on that page. +Please take a few moments to review the other account settings on that page. + +You may also wish to add some basic information to your default profile +(on the "Profiles" page) so that other people can easily find you. + +We recommend setting your full name, adding a profile photo, +adding some profile "keywords" (very useful in making new friends) - and +perhaps what country you live in; if you do not wish to be more specific +than that. + +We fully respect your right to privacy, and none of these items are necessary. +If you are new and do not know anybody here, they may help +you to make some new and interesting friends. + Thank you and welcome to $sitename. -- cgit v1.2.3 From 338ba485548f9ec1acbc9349f7db95e84c51e7eb Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 7 Apr 2011 18:00:35 -0700 Subject: more templates --- view/en/profile-hide-friends.tpl | 16 ---------------- view/en/profile-in-directory.tpl | 16 ---------------- view/en/profile-in-netdir.tpl | 16 ---------------- view/en/profile_listing_header.tpl | 8 -------- view/en/registrations.tpl | 1 - 5 files changed, 57 deletions(-) delete mode 100644 view/en/profile-hide-friends.tpl delete mode 100644 view/en/profile-in-directory.tpl delete mode 100644 view/en/profile-in-netdir.tpl delete mode 100644 view/en/profile_listing_header.tpl delete mode 100644 view/en/registrations.tpl (limited to 'view/en') diff --git a/view/en/profile-hide-friends.tpl b/view/en/profile-hide-friends.tpl deleted file mode 100644 index 54ade00fe..000000000 --- a/view/en/profile-hide-friends.tpl +++ /dev/null @@ -1,16 +0,0 @@ -

-Hide my contact/friend list from viewers of this profile? -

- -
- - - -
-
-
- - - -
-
diff --git a/view/en/profile-in-directory.tpl b/view/en/profile-in-directory.tpl deleted file mode 100644 index 98af3e59a..000000000 --- a/view/en/profile-in-directory.tpl +++ /dev/null @@ -1,16 +0,0 @@ -

-Publish your default profile in site directory? -

- -
- - - -
-
-
- - - -
-
diff --git a/view/en/profile-in-netdir.tpl b/view/en/profile-in-netdir.tpl deleted file mode 100644 index be111aa67..000000000 --- a/view/en/profile-in-netdir.tpl +++ /dev/null @@ -1,16 +0,0 @@ -

-Publish your default profile in global social directory? -

- -
- - - -
-
-
- - - -
-
diff --git a/view/en/profile_listing_header.tpl b/view/en/profile_listing_header.tpl deleted file mode 100644 index d4b139a69..000000000 --- a/view/en/profile_listing_header.tpl +++ /dev/null @@ -1,8 +0,0 @@ -

Profiles

-

-Change profile photo -

- - diff --git a/view/en/registrations.tpl b/view/en/registrations.tpl deleted file mode 100644 index c8646043e..000000000 --- a/view/en/registrations.tpl +++ /dev/null @@ -1 +0,0 @@ -
  • $fullname ($email) : Approve - Deny
  • -- cgit v1.2.3 From e35a5bac55e0e259c7c587adfaf546484b032c92 Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 7 Apr 2011 23:10:43 -0700 Subject: the rest of the english html templates except for htconfig --- view/en/contact_edit.tpl | 81 ----------- view/en/install_db.tpl | 40 ----- view/en/profile_advanced.php | 225 ---------------------------- view/en/profile_edit.tpl | 299 -------------------------------------- view/en/profile_entry_default.tpl | 9 -- view/en/profile_photo.tpl | 18 --- view/en/pwdreset.tpl | 16 -- view/en/settings.tpl | 176 ---------------------- view/en/settings_nick_set.tpl | 9 -- view/en/settings_nick_subdir.tpl | 6 - 10 files changed, 879 deletions(-) delete mode 100644 view/en/contact_edit.tpl delete mode 100644 view/en/install_db.tpl delete mode 100644 view/en/profile_advanced.php delete mode 100644 view/en/profile_edit.tpl delete mode 100644 view/en/profile_entry_default.tpl delete mode 100644 view/en/profile_photo.tpl delete mode 100644 view/en/pwdreset.tpl delete mode 100644 view/en/settings.tpl delete mode 100644 view/en/settings_nick_set.tpl delete mode 100644 view/en/settings_nick_subdir.tpl (limited to 'view/en') diff --git a/view/en/contact_edit.tpl b/view/en/contact_edit.tpl deleted file mode 100644 index 9aca60188..000000000 --- a/view/en/contact_edit.tpl +++ /dev/null @@ -1,81 +0,0 @@ - -

    $header

    - -
    $name
    - -
    - - -
    - -
    - $alt_text -
    - $name -
    -
    -
    -
    - - - -
    - - -
    -
    $lastupdtext$last_update -
    $updpub
    - $poll_interval - -
    -
    -
    - -$insecure -$blocked -$ignored - -
    -

    Contact Information / Notes

    - -
    -
    - - - -
    -

    Profile Visibility

    -

    Please choose the profile you would like to display to $name when viewing your profile securely. -

    -
    -$profile_select -
    - - - - -
    -

    Online Reputation

    -

    -Occasionally your friends may wish to inquire about this person's online legitimacy. You may help them choose whether or not to interact with this person by providing a 'reputation' to guide them. -

    -
    -$rating -
    -
    -

    -Please take a moment to elaborate on this selection if you feel it could be helpful to others. -

    - -
    -
    -$groups - - - -
    diff --git a/view/en/install_db.tpl b/view/en/install_db.tpl deleted file mode 100644 index c413689c2..000000000 --- a/view/en/install_db.tpl +++ /dev/null @@ -1,40 +0,0 @@ - -

    Friendika Social Network

    -

    Installation

    - -

    -In order to install Friendika we need to know how to contact your database. Please contact your hosting provider or site administrator if you have questions about these settings. The database you specify below must already exist. If it does not, please create it before continuing. -

    - -
    - - - - - -
    - - - -
    - - - -
    - - - -
    - -
    -Please select a default timezone for your website -
    - -$tzselect - -
    - - -
    -
    - diff --git a/view/en/profile_advanced.php b/view/en/profile_advanced.php deleted file mode 100644 index 6d2ecba4d..000000000 --- a/view/en/profile_advanced.php +++ /dev/null @@ -1,225 +0,0 @@ -Profile - - -EOT; - -if($a->profile['name']) { -$o .= <<< EOT -
    -
    Full Name:
    -
    {$a->profile['name']}
    -
    -
    -EOT; -} - -if($a->profile['gender']) { -$o .= <<< EOT -
    -
    Gender:
    -
    {$a->profile['gender']}
    -
    -
    -EOT; -} - -if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) { -$o .= <<< EOT -
    -
    Birthday:
    -EOT; - -// If no year, add an arbitrary one so just we can parse the month and day. - -$o .= '
    ' - . ((intval($a->profile['dob'])) - ? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'] . ' 00:00 +00:00','j F, Y')) - : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],6) . ' 00:00 +00:00','j F'))) - . "
    \r\n
    "; - -$o .= '
    '; - -} - -if($age = age($a->profile['dob'],$a->profile['timezone'],'')) { -$o .= <<< EOT -
    -
    Age:
    -
    $age
    -
    -
    -EOT; -} - -if($a->profile['marital']) { -$o .= <<< EOT -
    -
    Status:
    -
    {$a->profile['marital']}
    -EOT; - -if($a->profile['with']) - $o .= "
    ({$a->profile['with']})
    "; -$o .= <<< EOT -
    -
    -EOT; -} - -if($a->profile['sexual']) { -$o .= <<< EOT -
    -
    Sexual Preference:
    -
    {$a->profile['sexual']}
    -
    -
    -EOT; -} - -if($a->profile['homepage']) { - $homepage = linkify($a->profile['homepage']); -$o .= <<< EOT -
    -
    Homepage:
    -
    $homepage
    -
    -
    -EOT; -} - -if($a->profile['politic']) { -$o .= <<< EOT -
    -
    Political Views:
    -
    {$a->profile['politic']}
    -
    -
    -EOT; -} - -if($a->profile['religion']) { -$o .= <<< EOT -
    -
    Religion:
    -
    {$a->profile['religion']}
    -
    -
    -EOT; -} -if($txt = prepare_text($a->profile['about'])) { -$o .= <<< EOT -
    -
    About:
    -
    -
    $txt
    -
    -
    -EOT; -} - -if($txt = prepare_text($a->profile['interest'])) { -$o .= <<< EOT -
    -
    Hobbies/Interests:
    -
    -
    $txt
    -
    -
    -EOT; -} - -if($txt = prepare_text($a->profile['contact'])) { -$o .= <<< EOT -
    -
    Contact information and Social Networks:
    -
    -
    $txt
    -
    -
    -EOT; -} - -if($txt = prepare_text($a->profile['music'])) { -$o .= <<< EOT -
    -
    Musical interests:
    -
    -
    $txt
    -
    -
    -EOT; -} - -if($txt = prepare_text($a->profile['book'])) { -$o .= <<< EOT -
    -
    Books, literature:
    -
    -
    $txt
    -
    -
    -EOT; -} - -if($txt = prepare_text($a->profile['tv'])) { -$o .= <<< EOT -
    -
    Television:
    -
    -
    $txt
    -
    -
    -EOT; -} - -if($txt = prepare_text($a->profile['film'])) { -$o .= <<< EOT -
    -
    Film/dance/culture/entertainment:
    -
    -
    $txt
    -
    -
    -EOT; -} - -if($txt = prepare_text($a->profile['romance'])) { -$o .= <<< EOT -
    -
    Love/romance:
    -
    -
    $txt
    -
    -
    -EOT; -} - -if($txt = prepare_text($a->profile['work'])) { -$o .= <<< EOT -
    -
    Work/employment:
    -
    -
    $txt
    -
    -
    -EOT; -} - -if($txt = prepare_text($a->profile['education'])) { -$o .= <<< EOT -
    -
    School/education:
    -
    -
    $txt
    -
    -
    -EOT; -} - - diff --git a/view/en/profile_edit.tpl b/view/en/profile_edit.tpl deleted file mode 100644 index 6c7d74daf..000000000 --- a/view/en/profile_edit.tpl +++ /dev/null @@ -1,299 +0,0 @@ -

    Edit Profile Details

    - - - - - -$default - -
    -
    - -
    - -
    *
    -
    -
    - -
    - - -
    -
    - -
    - - -
    -
    - - -
    - -$gender -
    -
    - -
    - -
    -$dob $age -
    -
    -
    - -$hide_friends - -
    - -
    -
    - - -
    - - -
    -
    - -
    - - -
    -
    - - -
    - - -
    -
    - -
    - - -
    -
    - -
    - - -
    -
    - -
    - -
    -
    - -
    - -$marital -
    - - -
    - -
    - -$sexual -
    -
    - - - -
    - - -
    -
    - -
    - - -
    -
    - -
    - - -
    -
    - -
    - - -
    (Used for suggesting potential friends, can be seen by others)
    -
    - -
    - - -
    (Used for searching profiles, never shown to others)
    -
    - - -
    - -
    -
    - -
    -

    -Tell us about yourself... -

    - - - -
    -
    -
    - - -
    -

    -Hobbies/Interests -

    - - - -
    -
    -
    - - -
    -

    -Contact information and Social Networks -

    - - - -
    -
    -
    - - -
    - -
    -
    - - -
    -

    -Musical interests -

    - - - -
    -
    -
    - -
    -

    -Books, literature -

    - - - -
    -
    -
    - - - -
    -

    -Television -

    - - - -
    -
    - - - - -
    -

    -Film/dance/culture/entertainment -

    - - - -
    -
    - - - -
    - -
    -
    - - -
    -

    -Love/romance -

    - - - -
    -
    - - - - -
    -

    -Work/employment -

    - - - -
    -
    - - - - -
    -

    -School/education -

    - - - -
    -
    - - - - -
    - -
    -
    - - - - - \ No newline at end of file diff --git a/view/en/profile_entry_default.tpl b/view/en/profile_entry_default.tpl deleted file mode 100644 index 651199918..000000000 --- a/view/en/profile_entry_default.tpl +++ /dev/null @@ -1,9 +0,0 @@ - -
    -
    -Profile Image -
    -
    - -
    -
    diff --git a/view/en/profile_photo.tpl b/view/en/profile_photo.tpl deleted file mode 100644 index 30e51210a..000000000 --- a/view/en/profile_photo.tpl +++ /dev/null @@ -1,18 +0,0 @@ -

    Upload Profile Photo

    - -
    - -
    - - -
    - -
    - -
    - -
    - - \ No newline at end of file diff --git a/view/en/pwdreset.tpl b/view/en/pwdreset.tpl deleted file mode 100644 index dd609f061..000000000 --- a/view/en/pwdreset.tpl +++ /dev/null @@ -1,16 +0,0 @@ -

    Password Reset

    - -

    -Your password has been reset as requested. -

    -

    -Your new password is -

    -

    -$newpass -

    -

    -Save or copy your new password - and then click here to login. -

    -

    -Your password may be changed from the 'Settings' page after successful login. \ No newline at end of file diff --git a/view/en/settings.tpl b/view/en/settings.tpl deleted file mode 100644 index 9822291c1..000000000 --- a/view/en/settings.tpl +++ /dev/null @@ -1,176 +0,0 @@ -

    Account Settings

    - - - -$uexport - -$nickname_block - - -
    - - -

    Basic Settings

    - -
    - - -
    -
    - -
    - - -
    -
    - - - -
    - -$zoneselect -
    -
    - -
    - - -
    -
    - -
    - - -
    -
    - - - - -
    - -$theme -
    -
    - -
    - -
    - - -

    Security and Privacy Settings

    - - - - -
    - - -
    (to prevent spam abuse)
    -
    -
    - - - - -$profile_in_dir - -$profile_in_net_dir - - -
    - -
    - - -
    -
    - -
    - - -
    -
    - - - -
    Automatically expire (delete) posts older than days
    -
    - - -
    - -
    - - - -

    Notification Settings

    - - -
    -
    Send a notification email when:
    - - -
    - - -
    - - -
    - - -
    - - -
    -
    -
    - -
    - -
    - - -

    Password Settings

    - - -
    -

    -Leave password fields blank unless changing -

    - - -
    -
    - -
    - - -
    -
    - -
    - $oidhtml -
    -
    - - -
    - -
    - - -

    Advanced Page Settings

    - -$pagetype - -
    - -
    - - diff --git a/view/en/settings_nick_set.tpl b/view/en/settings_nick_set.tpl deleted file mode 100644 index a36b3b9a2..000000000 --- a/view/en/settings_nick_set.tpl +++ /dev/null @@ -1,9 +0,0 @@ - -
    -

    -Your profile address is '$nickname@$basepath' -

    -$subdir - -
    -
    diff --git a/view/en/settings_nick_subdir.tpl b/view/en/settings_nick_subdir.tpl deleted file mode 100644 index 303c24df7..000000000 --- a/view/en/settings_nick_subdir.tpl +++ /dev/null @@ -1,6 +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
    address '$baseurl/profile/$nickname'. -

    \ No newline at end of file -- cgit v1.2.3 From 59fd70e568fbc93922769333c55d8c1fa72cea9d Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 4 May 2011 02:20:44 -0700 Subject: issues with private photos - hitting internal size limits --- view/en/htconfig.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/en') diff --git a/view/en/htconfig.tpl b/view/en/htconfig.tpl index d3bb6b411..0ce28b4a0 100644 --- a/view/en/htconfig.tpl +++ b/view/en/htconfig.tpl @@ -37,7 +37,7 @@ $a->config['admin_email'] = ''; // Maximum size of an imported message, 0 is unlimited -$a->config['max_import_size'] = 10000; +$a->config['max_import_size'] = 200000; // maximum size of uploaded photos -- cgit v1.2.3