Tom Hughes
39cbc9d653
Tweak the password reset pages a bit.
2009-08-04 00:14:03 +00:00
Tom Hughes
e890528aac
Rework password reset system to do away with the second email and instead
...
just allow the user (providing they possess a valid token from the first
email) to enter a new password on the site.
2009-08-03 23:42:29 +00:00
Tom Hughes
254ce1eca0
Exclude deleted messages from the new_messages relationship.
2009-08-03 14:33:53 +00:00
Thomas Wood
bda35008c8
Fix translation for private data users.
2009-07-31 14:37:37 +00:00
Tom Hughes
4afacf3410
Fix the changeset feed to put the description in as raw HTML so we
...
can include links instead of having to create a separate link free
version of it.
2009-07-30 11:25:33 +00:00
Ævar Arnfjörð Bjarmason
b06b6c2ce9
Atom readers (Firefox/Liferea) don't like when we embed XHTML anchors
...
in the description. So adjust the code that creates the changeset
browser title/description to emit a XHTML and plaintext version with
the HTML and Atom output can use, respectively.
Also:
* Split up @title into @title and @heading as elsewhere
* Turn the username on the user / user+bbox browser into a link to the userpage
* Say "Changesets" instead of "Recent changes". Unlike Wikipedia the changes on OSM aren't guaranteed to be recent, they're just going to be the latest
2009-07-29 18:44:51 +00:00
Ævar Arnfjörð Bjarmason
e2abf1254b
* Turn the hardcoded #<%= changeset.id %> into t('msg', :id =>
...
changeset.id). Some languages may have a different numeric
indicator than the ASCII pound symbol
* Instead of including a column on :user/edits with a "more" link
make the changeset ID link to the changeset page.
2009-07-29 11:05:17 +00:00
Ævar Arnfjörð Bjarmason
6c034ee9fe
use I18n.l() instead of strftime(): Changeset dates will now appear localized
2009-07-29 10:43:03 +00:00
Matt Amos
586d7befce
Fixed dumb-arse bug with wrong variable name. Added tag cleanup and checking on nodes which are part of ways (i.e: not 'POIs' in potlatch terminology).
2009-07-28 16:09:13 +00:00
Matt Amos
4826032d18
Added methods to strip those non-XML control characters from tags in AMF controller and give an error if there's invalid UTF-8.
2009-07-27 16:54:00 +00:00
Tom Hughes
70cf737626
Ignore deleted traces when returning a user's traces. Fixes #2093 .
2009-07-23 17:45:28 +00:00
Tom Hughes
581c243e0e
Allow messages to be deleted from the outbox as well as the inbox.
2009-07-23 17:41:50 +00:00
Tom Hughes
f3bf0c8b14
Add the ability for a recipient to (logically) delete a message from
...
their INBOX so they no longer see it.
2009-07-23 15:22:44 +00:00
Tom Hughes
0d97737a7d
Prevent message date/time from wrapping.
2009-07-23 15:07:26 +00:00
Tom Hughes
502dc65e95
Remove surplus whitespace.
2009-07-23 15:05:44 +00:00
Tom Hughes
e728305eec
Make right hand side of browser view able to grow beyond 250 pixels.
2009-07-21 11:30:19 +00:00
Tom Hughes
88af5aad21
Prevent browser navigation control from wrapping.
2009-07-21 11:14:50 +00:00
Tom Hughes
bf0e4291a2
Don't use the (unset) value of I18n.locale to try and select a language
...
as the one we want is in lang so just use that. Fixes #2071 .
2009-07-16 20:26:18 +00:00
Tom Hughes
07211afe3e
Select the language for Potlatch indepdently of the web site.
2009-07-16 07:37:49 +00:00
Richard Fairhurst
6599fe0586
Potlatch 1.1a
2009-07-16 01:20:47 +00:00
Tom Hughes
25d0017b18
Fix compatible_language_from in the http_accept_language plugin to
...
correctly follow the RFC 2616 language selection algorithm and then
revert to the previous way of selecting languages.
2009-07-15 23:42:56 +00:00
Tom Hughes
1368f194da
Try preferred_language_from as it looks for an exact match - only if that
...
fails do we fall back to compatible_language_from which will take any
language where the first token matches. Fixes #2069 .
2009-07-15 23:29:07 +00:00
Tom Hughes
a5ab006122
Lookup the user before setting the locale. Fixes #2068 .
2009-07-15 18:21:32 +00:00
Tom Hughes
291350850d
Say which way is too long.
2009-07-15 13:34:14 +00:00
Tom Hughes
2c5f5a0114
Fix changeset paging.
2009-07-15 11:33:21 +00:00
Ævar Arnfjörð Bjarmason
5d33aaa332
Potlatch's i18n support predates our Rails i18n effort, so it was
...
still doing its own language detection.
Scrap that and use I18n.locale instead, now Potlatch is guaranteed to
use whatever translation the rest of the site uses.
I've tested this by switching the language in preferences back and
forth, and also ensured that Potlatch will fall back on English if the
specified language doesn't exist in its list of translations.
2009-07-14 21:55:40 +00:00
Tom Hughes
35d5e9d19d
Fix send message links for friends and nearby mappers. Fixes #2065 .
2009-07-14 19:48:21 +00:00
Tom Hughes
942ca1ff23
Merge 16355:16480 from trunk.
2009-07-13 23:28:02 +00:00
Tom Hughes
ab3e5e6d43
Remove redundant text.
2009-07-13 08:30:48 +00:00
Tom Hughes
2ac919d4f1
Fix a missing translation. Closes #2052 .
2009-07-13 08:26:13 +00:00
Tom Hughes
b5a6493aff
Remove SOTM advert from site.
2009-07-13 08:11:11 +00:00
Ævar Arnfjörð Bjarmason
2153fb6efd
Fixed a bug in how fields in /message/new were being pre-filled out.
...
When someone went to /message/new/:user the "Subject" are would be
pre-filled out with t('message.new.title'). The problem was that the
@title template variable was being used for two purposes, to set the
HTML <title> AND to pre-fill out the subject.
We don't always want these two to be the same, but sometimes we
do. E.g. when someone replies to a diary entry and visits
/message/new/:user?title=Foo we want Foo in the <title> and in the
pre-filled out Subject, and the same goes for replying to a message.
So I've split up the @title variable into @title and @subject.
2009-07-12 16:01:49 +00:00
Tom Hughes
f5e14bcc48
Don't send a noification email if somebody comments on their own diary
...
entry. Fixes #2053 .
2009-07-11 13:24:57 +00:00
Štefan Baebler
dcbb319015
added brief help for tag entry, continuing on #2032
2009-07-09 06:11:24 +00:00
Richard Fairhurst
8eb77ef5e1
"list mode" should really be "live mode" :)
2009-07-08 22:29:45 +00:00
Richard Fairhurst
369202787b
Potlatch 1.1 (server code)
2009-07-08 20:52:02 +00:00
Tom Hughes
50f78e52e8
Style the table in the feed content.
2009-07-07 23:30:04 +00:00
Tom Hughes
0b6f0c1d34
Use join to construct tag strings instead of mucking around counting
...
position in the string.
2009-07-07 23:05:35 +00:00
Štefan Baebler
9afb533280
added comment for future generations
2009-07-07 22:50:46 +00:00
Štefan Baebler
ebbcf63f0d
Introducing comma as tag separator (if present, otherwise it behaves as before), allowing spaces in tags. fixes #2032
2009-07-07 22:05:03 +00:00
Tom Hughes
5198500d48
More improvements to Atom feeds.
2009-07-06 00:03:33 +00:00
Tom Hughes
9a32033209
Merge 16216:16355 from trunk.
2009-07-05 23:47:40 +00:00
Tom Hughes
d63f605893
Add some more detail to the changeset Atom feeds.
2009-07-05 23:46:28 +00:00
Ævar Arnfjörð Bjarmason
a08215633c
When two users are <1 km apart display the distance between them in
...
meters, not kilometers.
Solves ticket:2028
2009-07-04 21:35:09 +00:00
Tom Hughes
0348316d0b
Make subtitle an HTML element.
2009-07-04 12:15:29 +00:00
Tom Hughes
b450ce9d85
Fix links to changeset feeds.
2009-07-04 12:12:05 +00:00
Tom Hughes
336d40f2c5
Switch to using ATOM for changeset feeds.
2009-07-04 11:34:23 +00:00
Tom Hughes
671fc09bfc
Correct resource name.
2009-07-03 17:44:21 +00:00
Štefan Baebler
8a80162db1
additional translations in geocoder describer
2009-07-03 06:38:43 +00:00
Štefan Baebler
2c6d4c1039
added missing =, fixes #1930
2009-07-03 05:49:14 +00:00