Re: [Potlatch-dev] Potlatch 2.3

2011-12-03 Thread NopMap

Hi!

Small update: After moving from the test installation to the live instance,
the locale does work. Though I have no idea why as nothing has changed in
the embedding. Maybe some flash caching issue?

Now that it basically works, I noted that the translation of the UI is still
incomplete. osm.org shows the same mix of English and German. I filed a
ticket on trac and I would be happy to provide the German translation once
the additional injections are in place.

bye
   Nop


--
View this message in context: 
http://gis.638310.n2.nabble.com/Potlatch-dev-Potlatch-2-3-tp6848644p7057442.html
Sent from the Potlatch mailing list archive at Nabble.com.

___
Potlatch-dev mailing list
Potlatch-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/potlatch-dev


Re: [Potlatch-dev] Potlatch 2.3

2011-11-30 Thread Andy Allan
On 26 November 2011 12:32, NopMap ekkeh...@gmx.de wrote:

 I played at migrating to P2.3 again and ran into a few problems.

Hi Nop,

First off, two apologies. P2.3 was released with a major upgrade to
the flex libraries that pretty much broke i18n completely, although
due to the seemingly never-ending saga of me being unable to reproduce
problems meant that it wasn't explained clearly in the release
announcement.

http://lists.openstreetmap.org/pipermail/potlatch-dev/2011-September/001220.html

Second apology is in not getting back to you at the weekend, since I
knew I was going to be doing a lot of work around i18n and hoping to
fix things. See the other thread for more on this.

Now, to your points:

 Is there a full set or browsable instance of the locales somewhere?

See http://random.dev.openstreetmap.org/potlatch2/ which is a
continually updated build of potlatch2 with directory browsing
enabled. I've also added a trac ticket
http://trac.openstreetmap.org/ticket/4112 to provide bundled builds in
order to cut down on these hassles.

 2. setting the locale. How do you do that in P2.3? The parameter format has
 changed, it used to be fo.addVariable(locale, de_DE); but what is it
 now?

Try again with 2.3-112 or later, it should be working, thanks to work
by Hiroshi.

 3. Config files. There was a hint earlier in this thread that the config
 file format has slightly changed. At first glance, my unchanged files appear
 to work. Can you give me more information where adjustments are necessary?

I'm not sure which config files you are referring to, but perhaps
Richard can describe more the subcategory panels work.

 4. Authorization. P2.3 asked for a fresh authorization key. What changes
 cause it to do that? That request seems to pop up from time to time, I found
 that I had about 10 authrizations in my osm account. The question is also
 asked occasionally by users.

That will happen when either the flash cookies are cleared, or the
.swf is served from a different URL. Perhaps your users have browser
privacy plugins that are clearing saved flash cookies?

 When i executed the authorization, I had firebug running as I used it to spy
 on P2. This caused Firefox to always crash after the authorization window
 opened. After disabling firebug it worked. Is this a known problem?

Haven't heard of that before.

Cheers,
Andy

___
Potlatch-dev mailing list
Potlatch-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/potlatch-dev


Re: [Potlatch-dev] Potlatch 2.3

2011-11-26 Thread NopMap
Hi!

I played at migrating to P2.3 again and ran into a few problems.

1. getting the locales. I downloaded potlatch2.swf from osm.org and took the
resources from a git zip. But there are no locale files easily accessible. I
assume that you need to run p2 with a matching set of locales and combining
with older files is not such a cool id. I downloaded some locales from
osm.org, but as you cannot browse the directories there that's only possible
for files on a path you know or guess. I use the German and English locales
now but I guess there are more.

Is there a full set or browsable instance of the locales somewhere?

2. setting the locale. How do you do that in P2.3? The parameter format has
changed, it used to be fo.addVariable(locale, de_DE); but what is it
now?

I tried adding it alternately to args and params, but P2 always runs with an
english/default locale.

3. Config files. There was a hint earlier in this thread that the config
file format has slightly changed. At first glance, my unchanged files appear
to work. Can you give me more information where adjustments are necessary?

4. Authorization. P2.3 asked for a fresh authorization key. What changes
cause it to do that? That request seems to pop up from time to time, I found
that I had about 10 authrizations in my osm account. The question is also
asked occasionally by users.

When i executed the authorization, I had firebug running as I used it to spy
on P2. This caused Firefox to always crash after the authorization window
opened. After disabling firebug it worked. Is this a known problem?

If you'd like to have a look at my test installation it's at
http://www.wanderreitkarte.de/edit2/test.html. Maybe you spot a few mistakes
that have not become apparent yet.

bye
Nop




--
View this message in context: 
http://gis.638310.n2.nabble.com/Potlatch-dev-Potlatch-2-3-tp6848644p7033728.html
Sent from the Potlatch mailing list archive at Nabble.com.

___
Potlatch-dev mailing list
Potlatch-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/potlatch-dev


Re: [Potlatch-dev] Potlatch 2.3

2011-10-21 Thread Andy Allan
On Thu, Oct 20, 2011 at 11:07 PM, NopMap ekkeh...@gmx.de wrote:

 Unfortunately, this did not work. There is no counterpart of activity viewer
 for firefox.

Firebug's Net console gives you the equivalent, if I understand
Richard correctly.

 Trying to execute the above line with git produced the error message:
 Cloning into c:/Data/Maps/potlatch...
 Permission denied (publickey).
 fatal: The remote end hung up unexpectedly

Richard gave you his private link to github (since he was logged in at
the time) so that's why you didn't have permission. The public
equivalents are

https://github.com/systemed/potlatch2.git or
git://github.com/systemed/potlatch2.git

You can also grab it from the osmf git mirror, which reflects the
deployed version, at

http://git.openstreetmap.org/potlatch2.git

I've also updated the Developer Documentation to include the upgrade
to flex 4.5.1

Finally, if you want the contents of the source code directory without
messing around with git, then there's a Zip download button on the
github pages which will simply give you a tarball to download.

If there's anything else, give me a shout.

Cheers,
Andy

___
Potlatch-dev mailing list
Potlatch-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/potlatch-dev


Re: [Potlatch-dev] Potlatch 2.3

2011-10-20 Thread NopMap

Hi!


Richard Fairhurst wrote:
 
 NopMap wrote:
 How would I go about updating a custom instance to P2.3?
 Wiki instructions and random.dev appear to be outdated.
 
 The config files have also changed a little (particularly 
 map_features.xml). If you use Safari's Activity Viewer or the equivalent 
 in Firefox you can copy the ones being used live on osm.org. Otherwise, 
 you can download them from my github account:
   git clone git@:systemed/potlatch2.git
 and everything's in the resources/ directory.
 

Unfortunately, this did not work. There is no counterpart of activity viewer
for firefox.

Trying to execute the above line with git produced the error message:
Cloning into c:/Data/Maps/potlatch...
Permission denied (publickey).
fatal: The remote end hung up unexpectedly

So I'd still need to find a way to get at a working set of P2.3 resources.

bye
Nop



--
View this message in context: 
http://gis.638310.n2.nabble.com/Potlatch-dev-Potlatch-2-3-tp6848644p6915011.html
Sent from the Potlatch mailing list archive at Nabble.com.

___
Potlatch-dev mailing list
Potlatch-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/potlatch-dev


Re: [Potlatch-dev] Potlatch 2.3

2011-10-16 Thread NopMap

Hi!

How would I go about updating a custom instance to P2.3?

Wiki instructions and random.dev appear to be outdated.

bye
Nop


--
View this message in context: 
http://gis.638310.n2.nabble.com/Potlatch-dev-Potlatch-2-3-tp6848644p6898615.html
Sent from the Potlatch mailing list archive at Nabble.com.

___
Potlatch-dev mailing list
Potlatch-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/potlatch-dev


Re: [Potlatch-dev] Potlatch 2.3

2011-10-16 Thread Richard Fairhurst

NopMap wrote:

How would I go about updating a custom instance to P2.3?
Wiki instructions and random.dev appear to be outdated.


I guess we need to resuscitate an easily downloadable instance somewhere 
- thank you for the pointer.


Until then... you can download the .swf from 
http://www.openstreetmap.org/potlatch2/potlatch2.swf , as ever.


The config files have also changed a little (particularly 
map_features.xml). If you use Safari's Activity Viewer or the equivalent 
in Firefox you can copy the ones being used live on osm.org. Otherwise, 
you can download them from my github account:

git clone g...@github.com:systemed/potlatch2.git
and everything's in the resources/ directory.

cheers
Richard


___
Potlatch-dev mailing list
Potlatch-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/potlatch-dev


Re: [Potlatch-dev] Potlatch 2.3

2011-10-13 Thread NopMap

Hi!

Looks pretty good on the main site.

Is there a binary with example environment somewhere to update custom
instances with? random.dev still seems to be using Potlatch 2.2 and you
can't read the dirs on the main site.

bye
  Nop


--
View this message in context: 
http://gis.638310.n2.nabble.com/Potlatch-dev-Potlatch-2-3-tp6848644p6889931.html
Sent from the Potlatch mailing list archive at Nabble.com.

___
Potlatch-dev mailing list
Potlatch-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/potlatch-dev


Re: [Potlatch-dev] Potlatch 2.3

2011-10-03 Thread Hiroshi Miura
Congratulations!

Thanks to Richard, Andy, Tom and many contributers.
I hope I can help some development  in i18n area in next version.

Andy Allan wrote:
 On Fri, Sep 30, 2011 at 6:29 PM, Richard Fairhurst rich...@systemed.net 
 wrote:

 Thanks to Andy for huge amounts of work on this.
 You're welcome - it's great to see it all finally coming together!
 Preparations for this release started way back in May with the fp10
 branch.

I'm seeing its branch on github and wondering when it comes mainline. :-)
Thank you for hard work!
 I'm hoping that some of our developers can help get to the bottom of
 all of our translation issues - it's been a real bugbear for some time
 now and I'd like to get it well and truly fixed.


I believe  we are about to resolve it and going to provide UI for
mappers in world wide.
But we need more hard work to help translators contribution by providing
l10n utilities.


Hiroshi




___
Potlatch-dev mailing list
Potlatch-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/potlatch-dev


Re: [Potlatch-dev] Potlatch 2.3

2011-09-30 Thread Andy Allan
On Fri, Sep 30, 2011 at 6:29 PM, Richard Fairhurst rich...@systemed.net wrote:

 Thanks to Andy for huge amounts of work on this.

You're welcome - it's great to see it all finally coming together!
Preparations for this release started way back in May with the fp10
branch.

There's a lot of work to be done to take advantage of various new
things - Flash Player 10 means that we can use Vectors instead of
Arrays in order to improve type safety and opens the door to local
filesystem access - think loading gpx traces - but the main thing I'm
looking forward to is using the new features of Flex 4.5 user
interface components. At the moment we have a bit of a mixed bag of
components between the old mx ones and some of the new spark ones, but
when the migration is completed we'll have great possibilities. It's
also a significant help to any other flex developers or designers who
want to jump in and help us out!

I'm hoping that some of our developers can help get to the bottom of
all of our translation issues - it's been a real bugbear for some time
now and I'd like to get it well and truly fixed.

Cheers,
Andy

___
Potlatch-dev mailing list
Potlatch-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/potlatch-dev


Re: [Potlatch-dev] Potlatch 2.3

2011-09-30 Thread Tom Hughes

On 30/09/11 18:29, Richard Fairhurst wrote:
:

* You now need Flex 4.5.x to build
(http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4.5).


If anybody needs an RPM of flex 4.5.1 then I've put one up here:

  http://download.compton.nu/rpms/

There's an installable package built for F15 and the SRPM for rebuilding 
on other distros.


Tom

--
Tom Hughes (t...@compton.nu)
http://compton.nu/

___
Potlatch-dev mailing list
Potlatch-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/potlatch-dev