Re: [josm-dev] Trac: OperationalError: database is locked

2011-12-04 Thread Vincent Privat
It's locked again :(

2011/12/3 Dirk Stöcker openstreet...@dstoecker.de

 On Sat, 3 Dec 2011, colliar wrote:

  Just want to make sure you notice (hope you are working on it)

 I get OperationalError: database is locked on the ticket system for new
 tickets
 and requesting filtered ticket list. Opening tickets directly works.


 This is basically an issue caused by too much load on the machine. And
 this again seems to be caused by hanging Apache requests. I'm investigating
 this for some time now, but did not really find the cause.

 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)



 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev

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


Re: [josm-dev] Stabilization ends

2011-12-18 Thread Vincent Privat
I'm fixing #7162 right now.

2011/12/18 Dirk Stöcker openstreet...@dstoecker.de

 On Sun, 18 Dec 2011, Simon Legner wrote:

  I know this delay is one of the drawbacks of our current development model

 Git or Mercurial as VCS could easily deal with a stable master branch,
 development/feature branches and dealing with hot fixes (see for example
 [1]).

 I don't know whether it is an option to migrate to another VCS (maybe in
 the corse of [2]) …


 SVN can do the same (maybe not as good as git, but good enough). It is no
 technical issue. The idea behind current model is to prevent the may
 others care for bugs, I care for new stuff mentality of many projects I
 know. If a developer wants to go on with new stuff he needs to make sure
 that at end of stabilization phase the software really is stable. For JOSM
 that seems to work pretty good (or we simply have the best developers of
 the world :-)

 So as long as the team is small enough that the current model works I
 prefer it over others. If the number of developers gets 10 times as large I
 happily switch to new methods required to handle this ;-)


 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)

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


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


Re: [josm-dev] Stabilization ends

2011-12-18 Thread Vincent Privat
Thank you Dirk :)
The issue is fixed in revision 4667.
I would say I love the current development model, too :)

2011/12/18 Dirk Stöcker openstreet...@dstoecker.de

 On Sun, 18 Dec 2011, Vincent Privat wrote:

  I'm fixing #7162 right now.


 Probably we really have the best developers of the world!


 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)


 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev

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


Re: [josm-dev] josm-tested (r4667) bad preferences file: SOLVED

2011-12-30 Thread Vincent Privat
2011/12/29 Richard Weait rich...@weait.com

 That bug from 2008 pointed to my problem.  I was using an old jre.
 Don't do that.  :-)


Maybe we can do something about it in JOSM.
First I have updated this wiki page:
http://josm.openstreetmap.de/wiki/Help/SystemRequirements

To point out the more recent bugs caused by an old JRE version.

Next, I propose to update the Main.checkJava6() to issue a warning when
JOSM runs with an old JRE 6.
We'd just have to define what old is. It must be at least 14 (the update
fixing this issue), but we have the following versions of openjdk-6-jre in
Debian/Ubuntu:
- Debian stable: 18
- Ubuntu stable: 23

So, I'd suggest 18, to start with ?
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM Translations

2012-01-29 Thread Vincent Privat
Looks like your call has been heard and answered, at least for French, with
450 strings translated today !

2012/1/28 Dirk Stöcker openstreet...@dstoecker.de

 Hello,

 currently only 3 translations are really actively maintained. These are
 Italian, Ukrainian and German.

 If these of you speaking other languages could help translating the
 software or maybe help to find others (f.e. normal non-developing users) to
 help it would be very fine.

 So all of you non-english speakers: Try to find people willing to help
 updating at least the core software.

 I know we have a large number of about 100 to 200 new strings a month and
 about 5500 core texts and 7300 total texts. This is a lot, but with a
 little contribution from time to time it can be done.

 Localized versions are important to reach most older people as well as
 these, which aren't as international oriented as we programmers.

 A lot of information and statistics are on the translation webpage:

 http://josm.openstreetmap.de/**wiki/Translationshttp://josm.openstreetmap.de/wiki/Translations

 P.S. Even for the 100% languages proofreading is necessary and the wiki
 also has lots of missing pages.

 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)


 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev

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


[josm-dev] To plugin developers: change in plugin interface

2012-02-17 Thread Vincent Privat
Hi,

I have checked in a significant change in JOSM preferences settings GUI
system that impacts the plugin interface.
Starting from JOSM 4968+, plugins that use preferences have some minor
changes to do.

This is briefly documented here:
http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins#Theplugininterface

In nearly all cases, this change should be enough to update your plugin:

--

public class MyPreferenceSetting implements PreferenceSetting {

@Override
public void addGui(PreferenceTabbedPane gui) {
JPanel panel = gui.createPreferenceTab(iconName, tr(title),
tr(description));

--

to:

--

public class MyPreferenceSetting extends DefaultTabPreferenceSetting {

public MyPreferenceSetting() {
super(iconName, tr(title), tr(description));
}

@Override
public void addGui(PreferenceTabbedPane gui) {
JPanel panel = gui.createPreferenceTab(this);

--

Let me know if you struggle to update your plugin or if you find unexpected
bugs.

Regards,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] How external plugins are added to plugin list

2012-03-16 Thread Vincent Privat
2012/2/27 Dirk Stöcker openstreet...@dstoecker.de

 What script generates the plugin list?

 A cron job scanning all the plugin manifests and adding some
 auto-generated lines for SVN plugins.

 I've got a problem with the latest version of the opendata plugin (28091,
published in changeset 28092), it doesn't appear in the list, can't find
why ?
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] How external plugins are added to plugin list

2012-03-16 Thread Vincent Privat
Thank you !
(and sorry for the quote thing)

2012/3/16 Dirk Stöcker openstreet...@dstoecker.de

 On Fri, 16 Mar 2012, Vincent Privat wrote:

  What script generates the plugin list?

 A cron job scanning all the plugin manifests and adding some
 auto-generated lines for SVN plugins.


 I've got a problem with the latest version of the opendata plugin (28091,
 published in changeset 28092), it doesn't appear in the list, can't find
 why ?


 Cronjob was dead.

 P.S. If you add your new text as quote, it is hard to understand what you
 want (fixed above).


 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)


 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev

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


Re: [josm-dev] WikiStart

2012-04-03 Thread Vincent Privat
The new design (version 4) is really great, I love it ! :)
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] New tested version after API change fix?

2012-07-13 Thread Vincent Privat
Hi,
I think we should enter in stabilization phase ASAP.
I should have some time this week-end to run extensive tests, so a stable
version released next week sounds a good idea to me.

Vincent

2012/7/12 Paul Hartmann phaau...@googlemail.com

 Hi,

 In the process of the license switch, there has been a small change of
 the OSM API [1]. This causes JOSM to crash in certain situations
 [2][3]. A fix has been committed (v. 5326), so as a user you might
 want to update JOSM or at least save often, especially before upload
 and data update.

 @team: Do you think we should release an emergency tested version?
 The fix [5326] might cause a couple of bugs at other places, so in any
 case no need to rush things.

 [1] http://lists.openstreetmap.org/pipermail/dev/2012-July/025209.html
 [2] http://lists.openstreetmap.org/pipermail/rebuild/2012-July/000317.html
 [3] http://josm.openstreetmap.de/ticket/7847

 Paul

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

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


Re: [josm-dev] New tested version after API change fix?

2012-07-13 Thread Vincent Privat
Alright :)
Stabilization begins now. Objective: release on Wednesday.
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] No Latest this night ?

2012-07-26 Thread Vincent Privat
Hi,
Latest has not been updated since r5361.
However, I checked in r5367 yesterday evening.
Is there a problem on the server ? Maybe linked to r5362 that changed
build.xml ?
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JMapViewerTiles folder in my Temp folder

2012-08-28 Thread Vincent Privat
Should we also introduce a maximum cache size ? Or consider the maximum age
is enough ?
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM release translations

2012-08-28 Thread Vincent Privat
Hi,

The today's latest displays 5461 as version number instead of 5481, how can
that be ?

Concerning the tested, I did not achieve to update i18n yesterday evening
before the nightly compilation starts.
However I think I have fixed all translations errors (some double quotes
were missing in ca, de and es languages), and I have uploaded the new josm
.pot file to Launchpad.

So if Ukrainian, German, Russian and Italian translators read me, today's
the perfect day to translate the few remaining strings in your respective
language :)

Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM release translations

2012-08-28 Thread Vincent Privat
Looks like my corporate proxy messed up with the .jar download today, I
checked it again tonight and it's correct :)

I have finally updated the i18n, both for core and plugins. I hope it
doesn't break everything !

If all goes well today's latest (r5482) will be our new tested version.

Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM release translations

2012-08-29 Thread Vincent Privat
The new tested is live.

Paul, I have made some updates to the i18n README file to add prerequisites:
http://trac.openstreetmap.org/browser/applications/editors/josm/i18n/README.TXThttps://trac.openstreetmap.org/browser/applications/editors/josm/i18n/README.TXT

What is still missing in this file is describing the necessary actions to
fix errors when ant test reports translation problems (most of the time:
single quotes).

Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] Important Java security updates

2012-08-30 Thread Vincent Privat
Hi,

You may have seen the news about the 0-day critical Java security flaw [1]
[2].
Oracle has just released two security updates: 6u35 [3] and 7u7 [4].

As a significant number of mappers may have installed Java just for JOSM
use, shouldn't we say something about this in our MOTD ?

Vincent

[1]
http://arstechnica.com/security/2012/08/critical-flaw-under-active-attack-prompts-calls-to-disable-java/
[2]
http://www.oracle.com/technetwork/topics/security/alert-cve-2012-4681-1835715.html
[3] http://www.oracle.com/technetwork/java/javase/6u35-relnotes-1835788.html
[4] http://www.oracle.com/technetwork/java/javase/7u7-relnotes-1835816.html
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Automatically activate ImageryProvider for current area?

2012-09-04 Thread Vincent Privat
Hello,
Have you tried the current tested version ? It's one of the major changes
that have been made:

http://josm.openstreetmap.de/wiki/Changelog#a2012-08-31:Stablereleaser5485

major changes/enhancements

   - Imagery layers:
  - Suggest imagery layers for downloaded area based on their bounds
  and shape in Maps http://josm.openstreetmap.de/wiki/Maps
(r5369http://josm.openstreetmap.de/changeset/5369/josm
  , r5381 http://josm.openstreetmap.de/changeset/5381/josm,
r5388http://josm.openstreetmap.de/changeset/5388/josm
  , r5402 http://josm.openstreetmap.de/changeset/5402/josm)

Cheers,
Vincent


2012/9/4 Dr. Tilmann Bubeck t.bub...@reinform.de

 Hello!

 JOSM already includes a large number of imagery providers. Some of them
 are activated by default, but most are not.

 I would like to improve JOSM to automatically activate (or deactivate) all
 imagery providers which are available for the current area, which the user
 is editing. E.g. if I am editing munich which is part of bavaria, then
 the imagery provider Bavaria (2m) would be activated after downloading
 the area. The file 
 http://josm.sourceforge.de/**mapshttp://josm.sourceforge.de/maps
 already includes the bounding boxes of the different imagery providers, so
 checking an provider for a selected area is possible...

 This would improve quality of the user edits, because they see all imagery
 providers which are available. (I was using JOSM by myself for quiet a long
 time until I started discovering the various menu entries and found, that
 there are more (and better) imagery providers, than standard BING for my
 areas).

 One could even extend that idea and sort all activated imagery providers.
 The one which is of highest speciality (=smallest surrounding area) is
 considered the best and is automatically selected (and not only
 activated). So If you assume, that there are imagery providers for
 munich, bavaria and germany, and I am editing munich, then they
 will be sorted: 1. munich, 2. bavaria, 3. germany and munich is selected.

 What do you think of that idea? I am willing to develop a patch for
 inclusion, if you like that idea. Feel free to discuss!

 Kind regards,
   Tilmann Bubeck

 +---+-**--**
 --+
 |   | dr. tilmann bubeck   reinform medien- und   |
 |   |  informationstechnologie AG |
 | rein  | fon  : +49 (711) 7 82 76-52  loeffelstr. 40 |
 | form  | fax  : +49 (711) 7 82 76-46  70597 stuttgart / germany  |
 |AG | cell.: +49 (172) 8 84 29 72  fon: +49 (711) 75 86 56-10 |
 |   | email: t.bub...@reinform.de  http://www.reinform.de |
 |   +-**--**
 --+
 |   | pflichtangaben nach paragraph 80, AktG: |
 |   | reinform medien- und informationstechnologie AG, stuttgart  |
 |   | handelsregister stuttgart, HRB 23001|
 |   | vorstand: dr. tilmann bubeck (vorsitz)  |
 |   | aufsichtsrat: frank stege (vorsitz) |
 +---+-**--**
 --+

 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev

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


Re: [josm-dev] Imagery bounding polygons

2012-09-05 Thread Vincent Privat
Try the xml-imagery-bounds plugin, I wrote it especially for that :)
Right click on a polygon, and it shows you the XML code :)
You can also download the Maps contents to edit an existing imagery
boundary:

http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Imagery-XML-Bounds

2012/9/5 Paul Norman penor...@mac.com

 I've been thinking of cleaning up some of the shape entries for the
 sources in https://josm.openstreetmap.de/wiki/Maps so that I don't get US
 imagery suggested in areas without coverage.

 Is anyone aware of a tool that will convert from .osm, .poly or WKT to the
 XML used by JOSM?

 I could convert it by search and replace or writing some simple code, but
 I'd rather not reinvent the wheel if someone's done it already.


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

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


Re: [josm-dev] Building plugins

2012-11-09 Thread Vincent Privat
2012/11/9 Paul Norman penor...@mac.com

 I've been trying to compile the mirrored_download plugin so I can fix bugs


Thanks for this investment !
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Seeking input from existing maintainers of JMapViewer/JOSM

2012-12-20 Thread Vincent Privat
Hi,
I have created the JMapViewer component on the JOSM Trac instance.
Related tickets are welcome :)

Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Java version 7

2013-03-08 Thread Vincent Privat
Yes, definitively. There will be no more security updates for Java 6,
that's why Oracle prompts users to upgrade to Java 7.
JOSM is perfectly compatible with this version of Java (in fact the
majority of JOSM users now use Java 7).


2013/3/8 Bob Hawkins bobhawk...@waitrose.com

 I am being prompted to update Java from version 6 to version 7.  Should I
 do it?
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.org/listinfo/josm-dev

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


Re: [josm-dev] JOSM Server and Database

2013-03-17 Thread Vincent Privat
Is this big and ugly new sponsor logo really needed as it ? I find very
disturbing to display such a large commercial logo without any discussion
first ?


2013/3/17 Dirk Stöcker openstreet...@dstoecker.de

 On Sun, 17 Mar 2013, Jo wrote:

  Server moved, but the IP addresses are still wrong. Until that is fixed
 you can reach the josm pages at 78.47.52.148 or 2a01:4f8:d16:2082::2.

 I hope all the database locked issues are now history.


 That fancy IPv6 address will only work if you happen to have a valid
 public
 IPv6 address yourself already, of course.


 The same is true for the IPv4 address.


 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)


 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev

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


Re: [josm-dev] JOSM Server and Database

2013-03-18 Thread Vincent Privat
Ok thanks, it's much better right now, integrated on the right side of the
front page :)
I recognize I may have have over-reacted, sorry for that. Thank you Dirk
for finding us a new server :)


2013/3/18 Paul Hartmann phaau...@googlemail.com

 On 03/18/2013 12:38 AM, Vincent Privat wrote:

 Is this big and ugly new sponsor logo really needed as it ? I find very
 disturbing to display such a large commercial logo without any discussion
 first ?


 I've slightly adapted the size and position:

 from  
 http://josm.openstreetmap.de/**wiki/WikiStart?version=191http://josm.openstreetmap.de/wiki/WikiStart?version=191

 to
 http://josm.openstreetmap.de/**wiki/WikiStart?version=192http://josm.openstreetmap.de/wiki/WikiStart?version=192

 I'm sorry, we haven't involved you earlier, see my other mail for some
 background info.

 Paul


 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev

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


Re: [josm-dev] JOSM Server

2013-03-19 Thread Vincent Privat
Do you think a split per country would be enough ?


2013/3/19 Dirk Stöcker openstreet...@dstoecker.de

 On Mon, 18 Mar 2013, Simon Legner wrote:

  What about re-generating this file on modification and shipping as fast
 as possible (using Apache directly, Nginx or Varsnish). Maybe, having a
 subdomain for static content might be worth a try (getting rid of
 cookies, sessions etc.).


 /maps is cached now.

 In a test I saw that editing the maps page is awful slow. It really must
 be splitted. Takes about 45 seconds to change the page (after I improved
 the validation, before it took many minutes).


 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)


 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev

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


Re: [josm-dev] josm/jmapviewer / tilecache / single directory

2013-04-03 Thread Vincent Privat
There are already several bug tickets on this subject. Patches are always
welcome :)
Le 3 avr. 2013 12:02, Dirk Stöcker openstreet...@dstoecker.de a écrit :

 On Wed, 3 Apr 2013, Florian Lohoff wrote:

  i send an email a couple of months back about the jmapviewer tilecache
 used by josm using a flat directory for storing the tiles.

 Today now i stumbled that doing a find in the .josm directory takes
 upwards of 10 Minutes on my Quad i7 with a 7200 IDE Disk on
 Debian/Wheezy.

 Doing a cache cold ls in ~/.josm/tilecache/Bing Aerial Maps
 takes

 flo@p2:~/.josm/tilecache/Bing Aerial Maps$ time ls /dev/null
 real9m3.151s
 user0m23.133s
 sys 0m26.474s
 flo@p2:~/.josm/tilecache/Bing Aerial Maps$ ls -1 | wc -l
 1846091

 9 Minutes 3 seconds for a ls - 1.8Mio files in a single directory.

 Flo
 PS: Dont get me wrong - large cache is good - but not like this.


 Hmm. Did you change any of the cache parameters in config? It should not
 get that large. Probably cache clean is broken, if so, please open a bug?

 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)


 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev

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


[josm-dev] Introducing #josm IRC channel

2013-04-19 Thread Vincent Privat
Hi folks,

For those of you who are both interested in JOSM development and using IRC,
I have the pleasure to announce the creation of #josm, a new IRC channel on
OFTC (same server as all the other OSM-related IRC channels):

irc://irc.oftc.net #josm irc://irc.oftc.net/josm

See you there :)
___
josm-dev mailing list
josm-dev@openstreetmap.org
http://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] update tested version

2013-05-08 Thread Vincent Privat
It was planned, just needed to wake up this morning :)
New tested is here: 5939
It is STRONGLY advised to update to this one if you're running the reverter
plugin (you're not affected if you do not use revert/undelete features).


2013/5/8 SomeoneElse li...@mail.atownsend.org.uk

 colliar wrote:

 Please update tested version as r5935 did fix a critical bug.


 Thanks.  Are there any more details (stable is 5932; is that affected?)

 Cheers,

 Andy


 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev

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


Re: [josm-dev] Geotagged images JOSM 5990?

2013-07-19 Thread Vincent Privat
You can also update to current tested version :)


2013/7/19 Paul Hartmann phaau...@googlemail.com

 Hi,

 please file a bug report and attach a sample photo!

 Paul


 On 07/19/2013 02:13 AM, Bryce Nesbitt wrote:

 I'm used to loading images from my cell phone camera into JOSM for
 mapping.
   This is not working now,
 and I wanted to see if anyone is aware of this before filing a bug report.

 Here's some example EXIF from an image I tried:
 Make: google
 Camera Model Name   : Nexus S
 Warning : Invalid EXIF text encoding
 GPS Date Stamp  : 2013:07:17
 Compression : JPEG (old-style)
 Thumbnail Offset: 960
 Thumbnail Length: 12911
 Comment : ...�.�.
 GPS Latitude: 46 deg 45' 22.00 N
 GPS Longitude   : 122 deg 8' 12.00 W

 The images load into JOSM at the right location, but without a picture.
   The Geotagged Images pane says No Image without a filename or image.
  I
 can't select the images either.
 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev



 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev

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


Re: [josm-dev] New selection action for the utilsplugin2

2013-08-19 Thread Vincent Privat
This function may be done with a search, it does not forbid us to create a
new action for it in the plugin for those who do not master the search
operators :) it's OK to create a ticket, just make sure to include your
documentation in the code and to use the select menu for it :)
Le 17 août 2013 02:00, Peter peter@gmx.net a écrit :

 Hi

 I wrote a new selection action for the utilsplugin2.

 Since i read an announcement from some month ago where the
 'new' function could already be realized by a search i ask here
 before i put the patch in the JOSM trac.

 Since it doesn't depend on anything in utilsplugin2 it maybe
 also integrated in any other place.

 I patched my own version of the plugin, so the (small) code
 is tested.

 I already wrote some documentation, so i just append it here:

 Function: Select shared nodes
 =

 Purpose:
 ---
 Separate ways which share nodes, e.g. landuse and highway or landuse and
 landuse.
 Some mappers share a lot of nodes, glueing highways and landuse together.
 Editing in those areas is difficult.

 Also one may find other uses for 'select shared nodes'.

 Doku:
 -
 This function selects those nodes that are shared by all selected ways.
 In other words, if you look at ways as sets of nodes, it selects the
 intersection of those nodesets.

 If more than one way is selected all shared nodes are selected
 as just described.

 If no way is selected nothing is selected afterwards.

 If one way is selected, after invocation all of its nodes
 are selected that are shared by at least one other way.

 # Older Version, maybe reactivated:
 # If one way is selected, after invocation all nodes of that
 # way are selected, independent if the way shares nodes with other ways.


 [here i have some more text with images]


 Peter


 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev

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


Re: [josm-dev] New startup page not deployed

2013-08-19 Thread Vincent Privat
A day without commit is very rare for josm it does only occur during
holidays :)
Le 18 août 2013 21:42, Dirk Stöcker openstreet...@dstoecker.de a écrit :

 On Sun, 18 Aug 2013, colliar wrote:

  E.g. it is Ok for me but from a developer point of view, why do we not
 use hashes to verify the cache and download if hashes differ ?


 Because to use a hash you need to download the page and actually we want
 to prevent unnecessary downloads. Same when using the HEAD call. It saves
 transfer of the content, but still you need to make a network call.

 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)


 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 http://lists.openstreetmap.**org/listinfo/josm-devhttp://lists.openstreetmap.org/listinfo/josm-dev

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


[josm-dev] An incredible and unexpected use of JOSM

2013-09-10 Thread Vincent Privat
Reported on talk-fr mailing list:

https://www.youtube.com/watch?v=CKqJccK_EkM

Thanks Mercedes :)
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] XML Mappaint styles

2013-09-22 Thread Vincent Privat
Yes there is now some code related to icons size for large images (in order
to properly display SVG files).
You can open a new ticket, do not forget to attach your style.

Here's the history:
http://josm.openstreetmap.de/ticket/8849#comment:15https://josm.openstreetmap.de/ticket/8849#comment:15
http://josm.openstreetmap.de/changeset/6172/josmhttps://josm.openstreetmap.de/changeset/6174/josm
http://josm.openstreetmap.de/changeset/6182/josmhttps://josm.openstreetmap.de/changeset/6182/josm


2013/9/22 Malcolm Herring malcolm.herr...@btinternet.com

 Has something changed in the processing of XML styles in the latest
 release? I am having problems with a previously working style - the icons
 are not displaying correctly. The icon references are URLs which do get
 downloaded into the cache OK, but the display sticks at the clockface.
 About one start in four, some of the icons do display, but at a much
 reduced size. I tried using local icons  they don't hang, but do display
 at the same reduced size. Other styles seem to display OK, so maybe there
 is something odd about my PNG files.

 Before I open a ticket, does anybody have an inkling as to what may be
 going wrong here?


 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.**org/listinfo/josm-devhttps://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM MOTD

2013-09-22 Thread Vincent Privat
Well, the wiki is not up-to-date yet:
http://josm.openstreetmap.de/wiki/StartupPageSourcehttps://josm.openstreetmap.de/wiki/StartupPageSource


2013/9/22 SomeoneElse li...@mail.atownsend.org.uk

 On 22/09/2013 13:57, Vincent Privat wrote:

 As far as I know the MOTD never tell to upgrade to a particular version.
 You're getting this message if you're not using at least the current tested
 version, which is the case (current tested is 6238)


 Normally there's an entry for the new version, including details of
 changes,.  Currently the top entry is for 6115:

  * 2013-08-07 (6115 
 http://josm.openstreetmap.de/**changeset/6115/josmhttp://josm.openstreetmap.de/changeset/6115/josm
 )
  o Request OAuth
http://josm.openstreetmap.de/**wiki/Help/Dialog/**
 OAuthAuthorisationWizardhttp://josm.openstreetmap.de/wiki/Help/Dialog/OAuthAuthorisationWizard
 
permission to fully support the new notes plugin

 https://wiki.openstreetmap.**org/wiki/JOSM/Plugins/Noteshttps://wiki.openstreetmap.org/wiki/JOSM/Plugins/Notes
 
  o Refactoring of the plugin menus to support better grouping and
integration
  o Prefer the child node of (last) selected objects when selecting
nodes with duplicates
  o Many other enhancements and bug fixes (changelog
http://josm.openstreetmap.de/**wiki/Changelog#a2013-08-07:**
 Stablereleaser6115http://josm.openstreetmap.de/wiki/Changelog#a2013-08-07:Stablereleaser6115
 )



 Cheers,
 Andy

 __**_
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.**org/listinfo/josm-devhttps://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] opening hours provoke validator error for unexpected seasons

2013-12-17 Thread Vincent Privat
Hi,

We're using a library for opening_hours validation:
https://github.com/ypid/opening_hours.js

To be discussed here:
https://github.com/ypid/opening_hours.js/issues/21

Cheers


2013/12/17 Martin Koppenhoefer dieterdre...@gmail.com

 I tried to insert some opening_hours like they were written on the receipt,
 but get an error for spring, while summer and winter apparently pass
 the test. Seems as if the opening_hours seasons are only 2? Couldn't find
 them documented in the wiki anyway.

 In my case there are distinct opening hours for winter, summer and for
 spring/autumn (or is this fall?).

 Also: is this really an error (seems like an unknown tag to me), or maybe a
 warning would be better?

 cheers,
 Martin
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Terracer Plugin

2013-12-20 Thread Vincent Privat
I have recompiled the plugin against JDK6, you can update it and it will
work again.

Please, next time, post the error message and give us your system info,
that's absolutely necessary to fix bugs. I only understood because someone
else told me the plugin was not working anymore with Java 6.

By the way we are strongly encouraging everyone to update to Java 7 asap.

Cheers


2013/12/20 tony wroblewski tony.wroblew...@gmail.com

 Hi Simon

 Yes using the latest version of the plugin. I'll open a ticket on trac with
 the log.

 Regards

 Tony



 On 20 December 2013 16:11, Simon Legner simon.leg...@gmail.com wrote:

  Hi,
 
   Anybody have any ideas what could be wrong with it?
 
 
  I cannot reproduce the problem when installing the terracer plugin. Are
  you using an old terracer version? Please try again with the current
  version. If the problem persists, please open a ticket in Trac and attach
  the command line output.
 
  Cheers,
  Simon
 
  ___
  josm-dev mailing list
  josm-dev@openstreetmap.org
  https://lists.openstreetmap.org/listinfo/josm-dev
 
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Happy new year and a lot of thanks

2014-01-02 Thread Vincent Privat
Hello,

Thank you, Dirk, and happy new year everyone !

I didn't do all the work :) While I fixed a lot of minor bugs and added
many small changes, Simon and Alexei did a lot of more visible
enhancements, they deserve many thanks as well :)
Special thanks also to everyone who help us to manage the overwhelming
amount of tickets, to write presets patches, to translate both wiki and
software, or simply report bugs. You have no idea how helpful you are if
you contribute in these areas.
It's good also to see new people contributing to JOSM ecosystem by
providing new plugins. Notes plugin is a nice example of a feature we
didn't have time to work on but that can be used by everyone thanks to
other developers, thank you !

Apart of software changes for end-users, 2013 has brought a couple of nice
things for us developers:
- a new server !
- continuous integration
- usage statistics with OS marketshare
- a free code signing certificate
- milestones

What I expect to see for sure in 2014:
- a free website certificate (should be soon, stay tuned !)
- move to Java 7

What I'd love to see this year:
- move to Transiflex. Launchpad is more and more inadequate for us with its
very poor performance and the apparent non-willingness to improve it.
- more translators. Hoping that a Launchpad migration would help.
- a new logo ! if someone knows a good artist, let him know about ticket
#6896 :)
- a way to test on Mac.

Finally, thanks to everyone using JOSM as their preferred editor. Happy new
mapping year !

Vincent



2013/12/29 Dirk Stöcker openstreet...@dstoecker.de

 Hello,

 another year gone and still JOSM is alive and actively developed.

 You may have noticed, that I did very little lately - Thanks a lot to
 Vincent Private (Don-vip) for doing all the work.

 Also thanks a lot to all the people contributing one way or the other. We
 don't make these obvious major changes, but all these small steps have the
 same effect. After some time a lot changed.

 It makes me especially happy that even without me actively supervising
 JOSM, the development goes the way I like: Constant improvements and
 always ready to be used. About 60% of our users use the last tested
 version and approx. 5% use latest.

 JOSM is really stable. We get lots of bug reports, but very few severe
 issues. Most time a lot of discussion is involved to find a proper
 solution which means that these reports care for finer details instead of
 major issues.

 Some examples this year showed us that JOSM is no longer an OSM tool. It
 got a powerful tool for map display and applications away from OSM. I'm
 happy about that (though OSM still is our main focus).

 So again thanks to all contributors and a There is still a lot to do to
 these who do not yet contribute. :-)

 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)

 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] New SSL certificate for JOSM website

2014-01-07 Thread Vincent Privat
Hi,

I am pleased to announce that a long-requested feature is now live: JOSM
website uses a real SSL certificate provided by GlobalSign through its
open-source initiative [1].

It closes a couple of tickets and will ease the use of our website for all
:)

If you want to check the certificate validity, its SHA-1 fingerprint
is C5:8A:CF:54:15:7D:37:1F:21:6D:5D:92:B4:B4:FA:3A:3C:AA:14:6C.

The wiki has been updated as well, but not translated yet.

Happy new year !
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] New SSL certificate for JOSM website

2014-01-07 Thread Vincent Privat
Forgot the [1]: https://www.globalsign.com/ssl/ssl-open-source/ :)


2014/1/7 Vincent Privat vinc...@josm.openstreetmap.de

 Hi,

 I am pleased to announce that a long-requested feature is now live: JOSM
 website uses a real SSL certificate provided by GlobalSign through its
 open-source initiative [1].

 It closes a couple of tickets and will ease the use of our website for all
 :)

 If you want to check the certificate validity, its SHA-1 fingerprint
 is C5:8A:CF:54:15:7D:37:1F:21:6D:5D:92:B4:B4:FA:3A:3C:AA:14:6C.

 The wiki has been updated as well, but not translated yet.

 Happy new year !

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Destructive SVN commit!

2014-01-12 Thread Vincent Privat
I have contacted malenki on IRC but no response yet, I take a look.
Thanks for noticing !


2014/1/12 Simon Legner simon.leg...@gmail.com

 Unfortunately, my attempts fail due to

  svn: Commit failed (details follow):
 svn: [...]: Could not read status line: Connection reset by peer (
 http://svn.openstreetmap.org)


 So it would be very helpful, if someone took a look at the commit r30196.
 :-)

 Thanks in advance,
 Simon



 On 12/01/14 22:29, Simon Legner wrote:

 Hi all,

 while developing on JOSM, I noticed that the entire plugins/ and i18n/
 directories were gone! This is due to the destructive
 (hopefully+presumably accidental) commit [r30196].

 At the moment, I'm reverting this commit (using `svn merge -c -30196 .
  svn commit`), but maybe there's a cleaner solution to do this for
 people with SVN admin access.

 Cheers,
 Simon Legner (simon04)


 [r30196] https://trac.openstreetmap.org/changeset/30196/subversion


 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Destructive SVN commit!

2014-01-12 Thread Vincent Privat
It should be OK now (r30197)


2014/1/12 Vincent Privat vincent.pri...@gmail.com

 I have contacted malenki on IRC but no response yet, I take a look.
 Thanks for noticing !


 2014/1/12 Simon Legner simon.leg...@gmail.com

 Unfortunately, my attempts fail due to

  svn: Commit failed (details follow):
 svn: [...]: Could not read status line: Connection reset by peer (
 http://svn.openstreetmap.org)


 So it would be very helpful, if someone took a look at the commit r30196.
 :-)

 Thanks in advance,
 Simon



 On 12/01/14 22:29, Simon Legner wrote:

 Hi all,

 while developing on JOSM, I noticed that the entire plugins/ and i18n/
 directories were gone! This is due to the destructive
 (hopefully+presumably accidental) commit [r30196].

 At the moment, I'm reverting this commit (using `svn merge -c -30196 .
  svn commit`), but maybe there's a cleaner solution to do this for
 people with SVN admin access.

 Cheers,
 Simon Legner (simon04)


 [r30196] https://trac.openstreetmap.org/changeset/30196/subversion


 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev



___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Destructive SVN commit!

2014-01-14 Thread Vincent Privat
We all do mistakes :)
Please note however only JOSM core developers have commit privileges to
core directory.


2014/1/14 malenki o...@malenki.ch

 Am Sun, 12 Jan 2014 22:47:51 +0100
 schrieb Vincent Privat
 vincent.pri...@gmail.com:

  I have contacted malenki on IRC but no response yet, I take a look.
  Thanks for noticing !

 On January 12th I went offline not long after my commit.

 The next day I only saw a hilight from Simon Poole but he did not
 respond to me hilighting him as long as I was online.

 Thanks for fixing the SVN.

   On 12/01/14 22:29, Simon Legner wrote:
 
   while developing on JOSM, I noticed that the entire plugins/ and
   i18n/ directories were gone! This is due to the destructive
   (hopefully+presumably accidental) commit [r30196].

 I am deeply sorry - that was my fault.
 I thought I had resolved all issues on my end successfully with
 svn resolve --accept working nsis
 svn resolve --accept working i18n
 svn resolve --accept working plugins
 (and some more) but obviously I didn't

 All I intented to do was to add the line
 check key=fuel:octane_96 text=Octane96 /
 to
 core/data/defaultpresets.xml

 Regards
 Thomas


 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM 6763 released !

2014-01-27 Thread Vincent Privat
Version 6763 of JOSM has just been released as new tested version, the
first of 2014 :)

This is a pretty *big* release, both in numbers (261 commits, 153 tickets
!) and features:

* major enhancements
  * Presets:
* Refactorization by introducing `chunk id=X` and `reference
ref=X/`
* Extension by introducing `preset_link preset_name=... /` to add a
link to another preset
  * Upload window - `source`: add `knowledge`, `survey` to selection,
compute value from layers
  * MapCSS: syntax improvements:
* Regular expression support for key conditions
* Comparison of two key values (`[key1 = *key2]`)
* New `set class` instruction and `.class` selector
* New spatial element of (`inner ∈ outer`)
* New crossing operator (`area ⧉ area`)
* New `unconnected` pseudo class for nodes without parent way
* Add option to include colour preferences of external styles
* Determine opacity/transparency of a color using `alpha()`
  * Validator:
* New MapCSS-based tag checker/fixer
* Centralized service for custom Tagchecker
  * Better zoom to selection/conflict when the objects in question are small
  * Prompt dialogs: more do not show again... choices
  * Add Search for objects by preset action (Shift-F3)
  * `wayselector` plugin integrated into main program
* minor enhancements
  * Initialize default center view of map to last download location instead
of (0,0)
  * Remote control:
* New arguments `changeset_comment` and `changeset_source` to
`load_and_zoom` handler to add changeset tags
* Add command description to usage page
  * History dialog: UI tuning, shortcuts for up/down arrow keys
  * Advanced object info: add Center of bounding box, and Centroid for
ways
  * Colour coding of conflicting tags/memberships in way combining dialog
  * Improvements of proxy support and error handling
  * Make Unix web browsers configurable via `browser.unix` property
  * Presets/Map styles:
* Update of presets for `man_made=surveillance`, `place_of_worship`,
`artwork`, `railway`, `power=substation`, `boundary=political`, `surface`,
`amenity=charging_station`, `amenity=parking*`, `barrier`/`entrance`
* Addition of `natural=sand`, `building=construction`,
`railway=switch`, `boundary=postal_code`
* Replacement of `emergency=aed` by `emergency=defibrillator`
* Display `capacity` as a name complement for labels
* Display `highway=road` differently
  * Tools - Create/Update Multipolygon:
* Update multipolygon if a multipolygon relation is selected
* Remap keyboard shortcut to `Ctrl-B` and `Ctrl-Shift-B`
  * Validator:
* Verify links on highways
* Check ways with duplicate way segments
* Detect crossing `barrier`, `landuse`, `natural`, `boundary`
* Validate `:lanes` and `:conditional` tags
* Validate nodes inside polygons with the same values
* Many test improvements
* sub-minor enhancements:
  * Allow to build JOSM from a git mirror clone
  * Make dynamic buttons features disabled by default
  * Distinguish number of conflicts on nodes, ways and relations
  * Unicode normalization and multiple whitespace removal in tags
  * Allow to enable debug log messages by command-line argument `--debug`

Summarized changelog:
https://josm.openstreetmap.de/wiki/Changelog#a2014-01-27:Stablereleaser6763milestone:14.01

Complete changelog:
https://josm.openstreetmap.de/log/josm/?action=stop_on_copymode=stop_on_copyrev=6763stop_rev=6503limit=300verbose=on

Milestone view (need login): https://josm.openstreetmap.de/milestone/14.01

Special thanks to Simon who did most of the major features :)
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Git sync stuck

2014-02-25 Thread Vincent Privat
I don't plan to do anything on this subject myself but if you or someone
else is willing to maintain it as official mirror, +1 :)


2014-02-24 11:14 GMT+01:00 Simon Legner simon.leg...@gmail.com:

 Hi Toby!


 On 24/02/14 08:28, Toby Murray wrote:

 The GitHub mirror of the JOSM SVN repo appears to not have gotten any
 updates in over a month. I'm not sure who runs it but could it please be
 kicked?


 We also have a Trac ticket for this issue: http://josm.openstreetmap.de/
 ticket/6887

 @Ævar: Would you please check the mirror again. Please also check my pull
 request https://github.com/openstreetmap/openstreetmap-mirror/pull/2 -
 the Evil revision hack is no longer needed due to adaption of the build
 file.

 @JOSM team: Since the mirror is apparently used frequently, we might want
 to to turn this unofficial mirror into an official mirror?

 Cheers,
 Simon


 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM 6891 released !

2014-02-27 Thread Vincent Privat
The February release is now available as version 6891 :)

No killer feature this month, this is mainly a bugfix release, with some
enhancements listed below, as usual :)

* major changes/enhancements
  * Allow HTTPS access to OSM API
  * Do not suggest to combine conflicting values in order to reduce the
wrong usage of semicolon values
* minor enhancements
  * Enable loading of `.osm.zip` files
  * Verify for new versions of plugins on crashes
  * GPX:
* Allow to download compressed GPX tracks from osm.org/trace/ using
Download location
* Use neutral track color if speed is zero (velocity mode) or time
extent is very short (time mode)
  * History dialog: Show changeset `source`
  * MapCSS: Allow (named) colours with alpha
  * Presets/Map styles:
* Add `preset_name_label` attribute to `item` to automatically add
[preset name] at the beginning of dialog
* Add `highway=raceway`, non-public-transport `route` relations,
`shop=bookmaker|lottery`
* Add to toolbar in preset list context menu (F3-right click)
* Rendering of
`craft=painter|plumber|pottery|stonemason|tiler|window_construction`,
`shop=gift`
  * Remote Control: new `referrers` argument to `load_object` handler
  * Validator:
* Validate `population`
* Check and remove unnecessary `area=yes`, `building=no`
* Detect `sport`s without physical features
* Sort results naturally
* sub-minor enhancements
  * Make status bar background/foregound colors configurable
  * Set HTTP `Accept` header to expected MIME types when downloading
presets, styles, plugins
* major bugs
  * Sensible upload order of relations to be deleted
  * Performance improvements

Summarized changelog:
https://josm.openstreetmap.de/wiki/Changelog#a2014-02-28:Stablereleaser689114.02

Complete changelog:
https://josm.openstreetmap.de/log/josm/?action=stop_on_copymode=stop_on_copyrev=6891stop_rev=6768limit=300verbose=on

Milestone view (need login): https://josm.openstreetmap.de/milestone/14.02

Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM 6891 released !

2014-03-04 Thread Vincent Privat
No, we're only talking of opening local or remote zip files containing a
single .osm file. The zip file must have the extension .osm.zip. Nothing
more.


2014-03-05 0:21 GMT+01:00 Jo winfi...@gmail.com:

 When downloading from Overpass API with the mirror plugin, is the zip
 functionality used as well?

 Polyglot


 2014-02-28 1:18 GMT+01:00 Vincent Privat vinc...@josm.openstreetmap.de:

 The February release is now available as version 6891 :)

 No killer feature this month, this is mainly a bugfix release, with some
 enhancements listed below, as usual :)

 * major changes/enhancements
   * Allow HTTPS access to OSM API
   * Do not suggest to combine conflicting values in order to reduce the
 wrong usage of semicolon values
 * minor enhancements
   * Enable loading of `.osm.zip` files
   * Verify for new versions of plugins on crashes
   * GPX:
 * Allow to download compressed GPX tracks from osm.org/trace/ using
 Download location
 * Use neutral track color if speed is zero (velocity mode) or time
 extent is very short (time mode)
   * History dialog: Show changeset `source`
   * MapCSS: Allow (named) colours with alpha
   * Presets/Map styles:
 * Add `preset_name_label` attribute to `item` to automatically add
 [preset name] at the beginning of dialog
 * Add `highway=raceway`, non-public-transport `route` relations,
 `shop=bookmaker|lottery`
 * Add to toolbar in preset list context menu (F3-right click)
 * Rendering of
 `craft=painter|plumber|pottery|stonemason|tiler|window_construction`,
 `shop=gift`
   * Remote Control: new `referrers` argument to `load_object` handler
   * Validator:
 * Validate `population`
 * Check and remove unnecessary `area=yes`, `building=no`
 * Detect `sport`s without physical features
 * Sort results naturally
 * sub-minor enhancements
   * Make status bar background/foregound colors configurable
   * Set HTTP `Accept` header to expected MIME types when downloading
 presets, styles, plugins
 * major bugs
   * Sensible upload order of relations to be deleted
   * Performance improvements

 Summarized changelog:

 https://josm.openstreetmap.de/wiki/Changelog#a2014-02-28:Stablereleaser689114.02

 Complete changelog:

 https://josm.openstreetmap.de/log/josm/?action=stop_on_copymode=stop_on_copyrev=6891stop_rev=6768limit=300verbose=on

 Milestone view (need login):
 https://josm.openstreetmap.de/milestone/14.02

 Cheers,
 Vincent
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev



___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM 6950 released !

2014-03-30 Thread Vincent Privat
The March release is now available as version 6950 :)

Main improvements this month concern circle/alignment functions (thanks to
Balaitous, a new contributor), HTTPS support, bugfixes and beginning of
Java 7 migration.

This release is still compatible with Java 6, as it will be also for the
next release at the end of April.

After that we plan to migrate to Java 7, so if you're still using Java 6,
now's a good time to switch. See
https://josm.openstreetmap.de/ticket/8465for migration progress.

Here's the changelog:

* major changes/enhancements
  * Enhancement of Align Nodes in Circle, Create Circle and Align Nodes in
Line actions
  * Access to OSM and JOSM websites in https by default
  * Remote control: listen also in https
  * Make UI messages copy-able
  * Ask Mac/Debian/Ubuntu users to update to Java 7
* minor enhancements
  * Add Add/Edit/Delete entries to tags/memberships contextual menus
  * MapCSS:
* Add support for `@media` expressions
* Add CRC32 checksum
  * Validator:
* Check addresses interpolation range/values
* Check wrong multiple values
  * WMS: filter unsupported image formats, preselect jpeg or png

Summarized changelog:
https://josm.openstreetmap.de/wiki/Changelog#a2014-03-30:Stablereleaser695014.03

Complete changelog:
https://josm.openstreetmap.de/log/josm/?action=stop_on_copymode=stop_on_copyrev=6950stop_rev=6892limit=100verbose=on

Milestone view (need login): https://josm.openstreetmap.de/milestone/14.03

Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Startup notes not matching current version

2014-03-30 Thread Vincent Privat
I just have updated the page to reflect recent changes.


2014-03-05 16:12 GMT+01:00 colliar colliar4e...@aol.com:

 On 04.03.2014 23:27, Vincent Privat wrote:
  2014-03-04 10:48 GMT+01:00 Dirk Stöcker openstreet...@dstoecker.de:
 
 
  Probably because nobody thought there are changes important enough to be
  noted there.
 
 
  It's rather the opposite, there's a ton of notable new features in
 January
  release (less in February, rather bug-fixing oriented). But I find it
  better when it's not a developer summering up, it reflects better the
  user point of view. That's a small task that could be easily done by
 our
  user community from the SVN changelog for purists of summarized changelog
  (which we maintain).
 
  Remember all: JOSM website is a wiki, everyone can help!

 All true, but the simple answer is that I do not have much time for JOSM
 ATM and only some few users ever changed this page.

 Sadly, that is true for the whole wiki in English and German, where lots
 of pages are outdated or do not even exist.

 cu
 colliar


 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev


___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Problem to compile JOSM since jaxb target exists

2014-05-25 Thread Vincent Privat
Can you please share more information about your environment? OS, Ant and
JDK version?


2014-05-25 22:02 GMT+02:00 Holger Mappt holger...@gmx.net:

 Hi,

 I use the command line to build JOSM from the SVN sources.  Since rev.
 7133 the build fails with this error:

 compile:
 Caught an exception while logging the end of the build.  Exception was:
 java.lang.NoClassDefFoundError: org/apache/tools/ant/util/DateUtils
 at org.apache.tools.ant.DefaultLogger.formatTime(
 DefaultLogger.java:330)
 at org.apache.tools.ant.DefaultLogger.buildFinished(
 DefaultLogger.java:177)
 [...]
 There has been an error prior to that:
 /home/josm/core/build.xml:215: Problem: failed to create task or type javac
 Cause: the class org.apache.tools.ant.taskdefs.Javac was not found.

 The workaround is to remove the dependency jaxb from the compile
 target in build.xml and to run ant jaxb (fails after files were
 generated) before ant.

 Does someone have the same problem?  Looks like jaxb does something that
 breaks ant, but I cannot figure out what is wrong.  What could cause the
 build error?

 Thanks,
 Holger

 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Problem to compile JOSM since jaxb target exists

2014-05-26 Thread Vincent Privat
I have never seen this problem.
I build JOSM frequently on Ubuntu 13.10 and 14.04 with same version of Ant
+ Java 1.7.0.55 (IcedTea 2.4.7) with command line ant clean test-clean
test-html but compile target should be enough.


2014-05-26 21:05 GMT+02:00 Holger Mappt holger...@gmx.net:

 Hi,

 Ant is Apache Ant(TM) version 1.9.2 compiled on October 2 2013, JDK is
 OpenJDK Runtime Environment (IcedTea 2.4.4) (suse-24.13.5-x86_64), java
 version 1.7.0_51.  OS is Linux 3.11.10, openSUSE 13.1.

 The question was more whether this is a common problem.  If I'm the only
 one who gets this error then I'll just wait until the problem is gone, i.e.
 until the affected package was updated.

 Regards,
 Holger



 On 26.05.2014 00:06, Vincent Privat wrote:

 Can you please share more information about your environment? OS, Ant and
 JDK version?


 2014-05-25 22:02 GMT+02:00 Holger Mappt holgerosm-hi6Y0CQ0nG0@public.
 gmane.org:

  Hi,

 I use the command line to build JOSM from the SVN sources.  Since rev.
 7133 the build fails with this error:
 [...]


 Does someone have the same problem?  Looks like jaxb does something that
 breaks ant, but I cannot figure out what is wrong.  What could cause the
 build error?



 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM 7182 released (first Java 7 version)

2014-05-26 Thread Vincent Privat
The May release is now available as version 7182 :)

As said before, this version is the first tested version compatible only
with Java 7 or later.

Java 7 is used today by 91% of users running JOSM 7000 or above. 5% are
running Java 8, and only 4% are still running Java 6.

If you're still running Java 6 and would like to update, you have to:
- On Windows, go to https://www.java.com/en/download and download Java 7
- On Mac OSX, same. But you should have a look to the Oracle FAQ at
https://www.java.com/en/download/faq/java_mac.xml. The important thing is
that Java 7 requires an Intel-based Mac running Mac OS X version 10.7.3
(Lion) or above.
- On Linux, install the Java 7 package (for example, openjdk-7-jre on
Debian/Ubuntu/Mint)

Like for the previous migration (Java 5 to 6), the previous version (7000)
will remain available on JOSM website for several years, so if you're stuck
on Java 6, you will be able to download it again if needed.

For more details about Java 7 migration, see
https://josm.openstreetmap.de/ticket/8465.

This version brings a lot of technical changes, many enhancements and
bugfixes, here's the changelog:

* major changes/enhancements
  * First release compatible only with Java 7 or later
  * Code cleanup, drop deprecated features, improve unit tests
  * MapCSS:
* Major performance improvements
* Use MapCSS for the default map style
* Add support for `canvas{fill-color}`, deprecate
`canvas{background-color}`
* Add support for alpha info in color property
* Various improvements to default map style
* Deprecate use of `length()` for lists, use new function `count()`
instead
* Add function `any()` according to MapCSS standard, deprecate
`coalesce()`
* Add functions `min()` and `max()` according to standard
* Make greater-than sign optional in child selectors
  * Add a Move Node onto Way action (opposite of Join Node to Way)
  * Add double-click selection mode (select polygons/multipolygons by a
double-click inside)
  * WMS: Improve support of transparent tiles
* minor enhancements
  * Extrude mode: new parameter `extrude.initial-move-threshold` (to tune
ignoring small movements)
  * Zoom: new parameter `zoom_to_selection_min_size_in_meter` to set the
minimum dimension of the area (in meters) for the zoom to selection action
  * Support `josmdir://` URIs for files inside JOSM config directory
  * Presets/Map styles:
* Add `landuse=plant_nursery`, `barrier=swing_gate`
* Add new `bridge` types; drop icons for `bridge=` on nodes
* Add support for `alternative_autocomplete_keys` in presets, esp.
auto-complete `addr:street` also from `name`
* Disable `no` value for some checkboxes in the preset dialog
* sub-minor enhancements
  * Show distance in status line when 2 nodes are selected
  * New command line option to enable debug level ''trace''
  * Add call relation editor to context menu of validator dialog
  * Jumping to play head marker when playing next audio

Summarized changelog:
https://josm.openstreetmap.de/wiki/Changelog#a2014-05-27:Stablereleaser718214.05

Complete changelog:
https://josm.openstreetmap.de/log/josm/?action=stop_on_copymode=stop_on_copyrev=7182stop_rev=7001limit=200verbose=on

Milestone view (need login): https://josm.openstreetmap.de/milestone/14.05

Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM 7182 released (first Java 7 version)

2014-05-28 Thread Vincent Privat
I dropped the support of 0.5 in the general code cleanup process.
Didn't think it was worth keeping 5 years after release of API 0.6... Feel
free to revert r7013 if you think it's really important.


2014-05-28 21:33 GMT+02:00 Dirk Stöcker openstreet...@dstoecker.de:

 On Wed, 28 May 2014, Maarten Deen wrote:

  I was a bit surprised to notice that my saved osm files would not get
 loaded anymore. Then I saw in the changelog that v0.5 format was dropped.
 It would have been more graceful to have josm save v0.5 osm files as v0.6
 as soon as that was implemented. This is a tip for when the version goes to
 0.7.


 I'd consider that a bug. We still should be able to read files saved with
 0.5 format identifier.


 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)

 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Using Java

2014-06-11 Thread Vincent Privat
If you want to use JOSM you need Java to be installed on your PC. That's
what the J is standing for :) JOSM always works fine with latest version of
Java so you can use either Java 7u60 or 8u5. If you don't know how to
choose between these two versions you may rely on the one proposed for
download on java.com as it will always be the more secure and mature
version available. So as of today we recommend you to use 7u60.
Cheers,
Vincent
Le 11 juin 2014 17:40, Bob Hawkins bobhawk...@waitrose.com a écrit :

 I have been cautioned twice in security forums about the use of Java on my
 Windows 8 PC (it seems it might be responsible for the daily creation of a
 particular and large temporary file).  The latest reply advises me to
 either remove it completely or have it in a separate browser for use only
 with those applications that require it.  The version on my PC is Java 7
 update 55.  I was informed the latest versions are Java 7 update 60 or Java
 8 update 5 (Can I use Java 8?).  I wonder what other users of JOSM have to
 say on the matter.

 ---
 This email is free from viruses and malware because avast! Antivirus
 protection is active.
 http://www.avast.com
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM 7287 released

2014-07-03 Thread Vincent Privat
The June version is now available (a bit late) as version 7287 :)

This version brings some technical enhancements and a lot of bugfixes,
here's the changelog:

* major changes/enhancements
  * Extrude action: add dual alignment mode
  * Automatic reloading of local map paint styles and validator rules on
file change
  * Automatic update for imagery entries using `id`
* minor enhancements
  * Allow setting shortcut for Move Node to Way
  * Mac OSX: register JOSM package as `.osm` files editor
  * Remote Control:
* allow it to work from osm.org in https on Windows by installing JOSM
certificate
* allow to select objects by a search expression in
`load_and_zoom/zoom` handlers
  * MapCSS:
* add right- and left-hand traffic database, update roundabout icons
(new pseudo-class-condition `:righthandtraffic`)
* add `number_of_tags` expression to get number of tags, `print` and
`println` to show debugging output
  * Presets/Map styles:
* use of new `leaf_type` and `leaf_cycle` keys in presets, deprecate
old `wood` and `type` values
* add `highway=elevator`
* better rendering of bridges, tunnels, highways, cycleways, turning
circles

Summarized changelog:
https://josm.openstreetmap.de/wiki/Changelog#a2014-07-04:Stablereleaser728714.06

Complete changelog:
https://josm.openstreetmap.de/log/josm/?action=stop_on_copymode=stop_on_copyrev=7287stop_rev=7183limit=200

Milestone view (need login):
https://josm.openstreetmap.de/milestone/14.06

Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM wants to add a certificate?

2014-07-08 Thread Vincent Privat
Hi,
As said this is a required mechanism to let you use Remote Control in https
(for example from Edit button on main OSM website, when browsed in HTTPS).
See https://josm.openstreetmap.de/ticket/10033 for explanations and
progress update (currently this stuff is only implemented on Windows).
The warning you are referring to is displayed by Windows and we have no
control on it.
The certificate has been generated thereby:
keytool -genkeypair -storepass josm_ssl -keypass josm_ssl -alias
josm_localhost -dname CN=localhost, OU=JOSM, O=OpenStreetMap -ext
san=ip:127.0.0.1 -keyalg RSA -validity 1825
As you can see it contains proper denomination. We cannot do better for the
certificate itself.
The best we can do is display another warning before the installation,
that's planned in https://josm.openstreetmap.de/ticket/10230
Cheers,
Vincent


2014-07-08 10:13 GMT+02:00 Maarten Deen md...@xs4all.nl:

 On 2014-07-07 13:36, Dirk Stöcker wrote:

 On Sun, 6 Jul 2014, Maarten Deen wrote:

  I opened JOSM (webstart) and it came with a question to install a
 certification authority for localhost with a sha1 thumbprint
 I have no knowledge of having generated a sha1 thumbprint on my windows
 computer, so I am interested to know how JOSM can ask this.
 I also don't know why JOSM needs this. Is this something from JOSM or
 has some worm crawled in? (yes, this was the first thing that entered my
 mind).


 Due to the browser restrictions of today any request to the remote
 control of JOSM needs to be HTTPS as well when used from a HTTPS page.
 For a HTTPS server functionality we need a certificate. The request
 you talk about tries to copy that certificate to the JAVA keystore, so
 it can be used. The browser still should ask you about it (at least
 for first connection), as it is a self-signed cert.


 But whose certificate is it? Where can I validate the key? It is not
 localhost, because my computer is localhost and it is not a key I generated
 on my computer. It is JOSM that is trying to install this certificate. So
 the certification authority caliming to represent localhost is not
 correct. At least that should be changed to JOSM.


  Lets make it clear that, not having created this thumbprint myself, I can
 not verify this thumbprint and that this seems a very strange way of
 operating.


 If you have a better solution, feel free to fix it.


 I really dislike such replies. You seem to insinuate that the only ones to
 make comments are the ones that have the knowledge and ability to change
 the source.
 I hope my view of your answer is incorrect.
 You may not like criticism, but my goal is not to talk the developers of
 JOSM down but to try to give them hints of how things could (IMHO) improve.

 Regards,
 Maarten


 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] josm locale english / iso date

2014-07-09 Thread Vincent Privat
Not yet see https://josm.openstreetmap.de/ticket/10121
I'm thinking about adding a new option for this.
Le 9 juil. 2014 17:24, Florian Lohoff f...@zz.de a écrit :


 Hi,

 is it possible to tell josm/java that my language is English
 but my date preference is iso date? (e.g. History).

 Typically i have a locale en_US.UTF-8 although i hate the US style
 date - i prefer iso date.

 Setting LC_ALL=de_DE.utf_8 and LANG=en_US.utf-8 results in a german
 JOSM which i still dont understand as LANG says en_US.

 Flo
 --
 Florian Lohoff f...@zz.de

 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.10 (GNU/Linux)

 iQIVAwUBU71el5DdQSDLCfIvAQjQrw//VGgKcE0T4fmVK6DvtCW2TbgJ62WnQn9T
 OedpcnbwhUsO9sAfe7bE46LQdtIzTbA+jAy7daQFP+KHYGVh+1mw89OpagAip2Un
 Jo9rPaYHxUd8y1G9rNCfOaONrxmeQ4jzV8TARZ/mX71E0GK+t5/sbGihTlRTlVSv
 KTnZbWIEvRn1UmA1KMl+ASQfEMWMwUegmd/90oMqEoAhwLYg94o4TZIxoBLKz6Vw
 tXEIEw1/f1KNH+APbCwzDt+AVIc4e5aalVKB9R4OmSgvGZL1Gi3iP0NgxQm8YaWn
 W+3gZj4oKeu6pwJhipNoECi/0W09zkCHnjJKZvbUieO7OruLkAGSQlPYRGKgnvdK
 /7hHn7UAg+SpCqs8H57Vpatxd6UW/+FGOEQ2BxxE5aprVYcAHGSt6Ys/IW3UAPRl
 jOg1iZVioyKXA3mNIfTPBkljPQkg1zw6/nK8dzRDUBUEg/B0+NMktJB3oLdx4DTD
 ucGThOH5k94cbGxebrqXl792UpaaAaIznjGJ5zab/WRiGnArzzET7SitDLa8xWPs
 pNz70n+gJUKMMtxk+oRYkqItnL/kB01eXo/WQV/H5RSFfwC7w6wYMQ1SuSR2/XYP
 kxNN9eGOpq4SaKdnmfbKFYt1Y/V13gT+iU9ZY28yWjBa8alvUsObsMKeM2aSu5cw
 sds9yj514z8=
 =3vc7
 -END PGP SIGNATURE-

 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev


___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM 7480 released

2014-08-31 Thread Vincent Privat
The August version is now available as version 7480 :)

This version brings a ton of enhancements and bugfixes. The main ones being
related to default map style, thanks to Paul and Klumbumbus who, among
others, wrote several patches this month. Thanks to everyone who
contributed to this release!

Here's the changelog:

* major enhancements
  * Map styles:
* better view on low zooms (shrink nodes, hide texts and icons)
* unification of font rendering on all systems (new `Droid` font)
* better label placement inside areas (ex: `addr:housenumber` on
buildings)
* display real speed limit on `maxspeed` nodes
* display name of `highway`
* more prominent label for `place`
* user-settings for mapcss mappaint styles
  * use `N` as a new shortcut for Move Node onto Way action
  * add offline mode with new command line argument
`--offline=[josm_website|osm_api|all]`
* minor enhancements
  * Presets/Map styles:
* new icons for `barrier=block`, `barrier=chain`, `natural=peak +
tourism=viewpoint`
* new styles for `highway=track`, `embankment=yes`,
`landuse=residential/garages`, `barrier`
* new presets: `man_made=embankment`, `natural=bare_rock/stone/ridge`,
`place=farm`
* updated presets: `natural=water`, `power=generator`, `tunnel`,
`sport=handball`, `tourism`, `addr:*`, `bicycle=use_sidepath`
* removed presets: `natural=land`
  * Plugins:
* `openstreetbugs` and `nearclick` plugins are deprecated
* core changes for better integration of `notes` plugin
  * Validator:
* Check MapCSS assertions in local rules (new option
`validator.check_assert_local_rules`)
  * Improved performance of multipolygon computation
  * WMS: Improved exception handling. Proper message is now displayed on
tiles
* sub-minor enhancements
  * show undo/redo buffers state in Command Stack dialog
  * ask for JOSM update in case of crash with old version
  * add last error/warning messages to bug reports
  * Linux: add .desktop and AppData files
  * OS X: use native look-and-feel by default
* major bugs
  * Incomplete menus on small resolutions
  * Text rendering issues on OS X

Summarized changelog:
https://josm.openstreetmap.de/wiki/Changelog#a2014-08-31:Stablereleaser748014.08

Complete changelog:
https://josm.openstreetmap.de/log/josm/?action=stop_on_copymode=stop_on_copyrev=7480stop_rev=7348limit=200

Milestone view (need login):
https://josm.openstreetmap.de/milestone/14.08

Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Translation of Plugins

2014-09-05 Thread Vincent Privat
Hi,
With the recent move of some Github plugins (conflation and areaselector)
to our Github organization (https://github.com/JOSM), it is now possible
for us to handle i18n (almost) like any other plugin. That's what I did:

- checkout http://svn.openstreetmap.org/applications/editors/josm/
- usual i18n procedure (as described in README)
- checkin SVN:
  - https://trac.openstreetmap.org/changeset/30618/subversion
- checkin Github (we can access Github through SVN !):
  -
https://github.com/JOSM/JOSM-areaselector/commit/2b60da2367a1a901010dd12c5426ee52470f6965
  -
https://github.com/JOSM/josm-conflation-plugin/commit/c8c87faa6467e752d862babd4eda07a90eeb8a0f

I assume you can do the same just for areaselector.


2014-09-05 12:24 GMT+02:00 Dirk Stöcker openstreet...@dstoecker.de:

 On Fri, 5 Sep 2014, Paul Wölfel wrote:

  yes I know you prefer SVN, but SVN does not fit my needs. That's the
 reason why the plugin is on github.


 Everything has advantages and disadvantages.

  I read the readme file, but it's not very verbose.


 Short description:

 After doing the normal gettext translations steps with pot, po, ... simply
 call the i18n.pl script like this:

 ./i18n.pl targetdir po-files...

 Result will be the .lang files. You always need to install the english one
 and additional the other languages.

  So you don't want any other users to translate JOSM or it's plugins??


 Well. Translation infrastructure is pretty standard except the file format
 as described above. But managing translations is a lot of work. For the SVN
 this is automated. We don't support other ways in detail, everybody needs
 to care for it himself or improve the documentation and scripts himself.

  I think how to translate should not be related on where it is hosted. If
 it's easy to translate maybe more people would help to translate.


 Translation is more about infrastructure than about the possibility in
 code. We did setup infrastructure for the JOSM SVN's.

  I found out how to generate the required files, but how do I edit them? I
 want my plugin to be as easy to use as possible and that includes
 localization. Shouldn't there be a guide for a plugin developer to
 translate their on plugin?


 Which files? Po files are simple text. The lang files are direct binary
 conversion of the po files (we use own .lang instead of standard .mo as the
 results are much smaller which matters for a download tool).

 The gettext system is standard in open source software. We wont document
 this.


 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM server shut down for maintenance

2014-09-05 Thread Vincent Privat
Hi everyone,

The JOSM server will be shut down for maintenance at 20:00 GMT (in 10
minutes).

Following services will be unavailable:
- wiki
- bug reporting
- download from website
- SVN

It's a perfect time to test the new offline mode of JOSM :)
java -jar josm.jar --offline=josm_website

Regards,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM server shut down for maintenance

2014-09-05 Thread Vincent Privat
Hi,
Unfortunately I encountered unexpected errors and the website is not yet
100% functional.
SVN access is restored but many links on website are broken right now.
The download links are OK though.

We'll try to bring back the site alive tomorrow. In the meantime please
refrain to edit any wiki page (translations are ok but please do not try to
fix links).

Please also do not create tickets for broken pages/failed downloads.

Vincent


2014-09-05 21:50 GMT+02:00 Vincent Privat vinc...@josm.openstreetmap.de:

 Hi everyone,

 The JOSM server will be shut down for maintenance at 20:00 GMT (in 10
 minutes).

 Following services will be unavailable:
 - wiki
 - bug reporting
 - download from website
 - SVN

 It's a perfect time to test the new offline mode of JOSM :)
 java -jar josm.jar --offline=josm_website

 Regards,
 Vincent

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM server shut down for maintenance

2014-09-06 Thread Vincent Privat
Hi,
The server is operational again.
Vincent


2014-09-06 2:53 GMT+02:00 Vincent Privat vinc...@josm.openstreetmap.de:

 Hi,
 Unfortunately I encountered unexpected errors and the website is not yet
 100% functional.
 SVN access is restored but many links on website are broken right now.
 The download links are OK though.

 We'll try to bring back the site alive tomorrow. In the meantime please
 refrain to edit any wiki page (translations are ok but please do not try to
 fix links).

 Please also do not create tickets for broken pages/failed downloads.

 Vincent


 2014-09-05 21:50 GMT+02:00 Vincent Privat vinc...@josm.openstreetmap.de:

 Hi everyone,

 The JOSM server will be shut down for maintenance at 20:00 GMT (in 10
 minutes).

 Following services will be unavailable:
 - wiki
 - bug reporting
 - download from website
 - SVN

 It's a perfect time to test the new offline mode of JOSM :)
 java -jar josm.jar --offline=josm_website

 Regards,
 Vincent



___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM server shut down for maintenance

2014-09-06 Thread Vincent Privat
My fault I tried to improve the default security parameters. I have now
reverted this change it should work now.
Le 7 sept. 2014 00:48, Richard Z. ricoz@gmail.com a écrit :

 On Sat, Sep 06, 2014 at 08:41:15PM +0200, Marián Kyral wrote:
  Hi,
  it still does not work for me. The wellcome message, list of presets,
  styles and plugins fails on:
 
  [java] CHYBA: SSLException: java.lang.RuntimeException: Could not
  generate DH keypair
  [java] VAROVÁNÍ: Already here
  java.security.InvalidAlgorithmParameterException: Prime size must be
  multiple of 64, and can only range from 512 to 1024 (inclusive)

 had the same issue with openstreetmap/api a few days ago, hopefully the
 same solution that Tom has found can be applied for this problem.

 (search for JOSM connection problems downloading/uploading data?
 in archives)

 Richard

 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] new confirmation dialog for presets

2014-09-13 Thread Vincent Privat
2014-09-13 13:11 GMT+02:00 Jo winfi...@gmail.com:

 OK, sorry for the tone. Simply wanted to convey it was rather annoying and
 totally disrupted my workflow.


Every change breaks someones workflow:
http://xkcd.com/1172/
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Taginfo integration

2014-09-14 Thread Vincent Privat
I like the idea.
I think we could provide three files:
1. tag usage in default preset
2. tag usage in default map style
3. tag usage in validator rules

2014-09-14 10:04 GMT+02:00 Jochen Topf joc...@remote.org:

 Hi!

 Taginfo (taginfo.osm.org) has the mission of aggregating all information
 about OSM tag usage and present it to the users. As a part of this, taginfo
 has parsed the JOSM style config files for a long time to present infos
 like this: http://taginfo.openstreetmap.org/keys/highway#josm .

 A few weeks back JOSM changed its config files and the parser broke. Since
 then this data has been static.

 I always wanted to extend this to other editors and other uses of OSM tags,
 in maps, routers, etc. But I have realized over time that that approach
 doesn't scale. I can't parse everybodies config file (or look at the source
 code of all these projects) to see which tags are used how. And I can't
 keep up with the changes.

 So I changed the approach: Instead of taginfo having to understand all the
 different formats, I created one simple format in which all projects can
 report to taginfo which tags they are using. The projects generate either
 automatically or manually (or both) a .json file that taginfo pulls in
 daily and integrates into its database.

 Currently this setup is in beta test. You can see it at work at
 http://mercator.openstreetmap.de/projects (or the behind-the-scenes-look
 at http://mercator.openstreetmap.de/projects;). Or, for instance, the
 info about the highway key here:
 http://mercator.openstreetmap.de/keys/highway#projects

 I have copied over some JOSM infos from the old setup into the new, just to
 show how it could look. But that is just for the beta test. If JOSM wants
 to
 show up in taginfo in the future, you'll have to create this json file and
 give me the URL. A documentation of the format is in the wiki:
 http://wiki.openstreetmap.org/wiki/Taginfo/Projects . The format is
 intentionally simple and can't reflect all the nuances of the tag usage.
 I see it more as a way to *find* information about tag usage then to
 directly present all of it. That's why there are links back to the project.

 I'd be glad if you can provide such a project file. I don't know enough
 about
 the innards of JOSM, maybe it should be more that one file, one for core
 JOSM, one for each style, maybe one for each plugin? We have to try this
 out and can start small and extend this over time.

 I have not released this taginfo feature yet, because I want to get
 feedback
 from you and others. If you have ideas about the file format, or the
 presentation or other aspects of this feature please tell me.

 Jochen
 --
 Jochen Topf  joc...@remote.org  http://www.jochentopf.com/  +49-721-388298

 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM 7588 released

2014-09-29 Thread Vincent Privat
The September version is now available as version 7588 :)

Remember today's the last day of our logo contest, so this is the last
version with our current logo!

It brings some nice enhancements for presets, validator and native OS
integration.

Here's the changelog:

* major enhancements
  * Better OS X integration:
* Enabled full-screen
* Use of Command modifier instead of Ctrl
* Native file dialogs by default
* Various fixes and UI tweaks
  * Preliminary Notes support
  * Preset UI: Show which tags will be changed
* minor enhancements
  * Presets/Map styles:
* Added new `bridge` scheme, `route=light_rail`
* Rendering of `power=cable`
* New icons for huts and shelters, `traffic_calming`, `natural=scrub`,
`landuse=farmland`
  * Validator:
* Checks URLs and e-mails
* Checks ways exceeding 2000 nodes before upload attempt
* Checks for old-style multipolygons
* sub-minor enhancements
  * Better Linux integration:
* Updated man page and Appdata file
* Support of undecorated windows
  * Improved data consistency test performance

Summarized changelog:
https://josm.openstreetmap.de/wiki/Changelog#a2014-09-30:Stablereleaser758814.09

Complete changelog:
https://josm.openstreetmap.de/log/josm/?action=stop_on_copymode=stop_on_copyrev=7588stop_rev=7481limit=200

Milestone view (need login):
https://josm.openstreetmap.de/milestone/14.09

Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM 7588 released

2014-09-30 Thread Vincent Privat
Sounds like a java bug you should update to 7u67 or 8u20 to see it it gets
better. If it still doesn't work you can switch back to java file dialogs
in display preferences.
Le 30 sept. 2014 11:08, Shaun McDonald o...@shaunmcdonald.me.uk a écrit :

 I’ve just had a quick look at the josm-latest.jnlp version, and the native
 file open dialog is a bit unreliable at listing the files on Mac OS X
 10.9.4 e.g. I just get a spinner saying it’s working:
 http://note.io/1uydHr7 Hitting cancel and opening again sometimes has a
 bit of luck, at getting some more items to be listed.

 Shaun

 On 30 Sep 2014, at 00:01, Vincent Privat vinc...@josm.openstreetmap.de
 wrote:

  The September version is now available as version 7588 :)
 
  Remember today's the last day of our logo contest, so this is the last
  version with our current logo!
 
  It brings some nice enhancements for presets, validator and native OS
  integration.
 
  Here's the changelog:
 
  * major enhancements
   * Better OS X integration:
 * Enabled full-screen
 * Use of Command modifier instead of Ctrl
 * Native file dialogs by default
 * Various fixes and UI tweaks
   * Preliminary Notes support
   * Preset UI: Show which tags will be changed
  * minor enhancements
   * Presets/Map styles:
 * Added new `bridge` scheme, `route=light_rail`
 * Rendering of `power=cable`
 * New icons for huts and shelters, `traffic_calming`, `natural=scrub`,
  `landuse=farmland`
   * Validator:
 * Checks URLs and e-mails
 * Checks ways exceeding 2000 nodes before upload attempt
 * Checks for old-style multipolygons
  * sub-minor enhancements
   * Better Linux integration:
 * Updated man page and Appdata file
 * Support of undecorated windows
   * Improved data consistency test performance
 
  Summarized changelog:
 
 https://josm.openstreetmap.de/wiki/Changelog#a2014-09-30:Stablereleaser758814.09
 
  Complete changelog:
 
 https://josm.openstreetmap.de/log/josm/?action=stop_on_copymode=stop_on_copyrev=7588stop_rev=7481limit=200
 
  Milestone view (need login):
  https://josm.openstreetmap.de/milestone/14.09
 
  Cheers,
  Vincent
  ___
  josm-dev mailing list
  josm-dev@openstreetmap.org
  https://lists.openstreetmap.org/listinfo/josm-dev


___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Maps page preview for WMS

2014-10-01 Thread Vincent Privat
Great :)
Looks like there's a problem with Spanish entries as I can't see them.

2014-10-01 18:53 GMT+02:00 Dirk Stöcker openstreet...@dstoecker.de:

 Hello,

 after a long time (actually 5 months) I finally finished the preview of
 map entries in the wiki also for WMS (based on Simon's work, thanks a lot).
 Also I updated to OpenLayer3 release from August, which has some
 improvements.

 For these who don't know what I talk about: Go to
 http://josm.openstreetmap.de/wiki/Maps and click on the {view} part of
 maps.

 Please report any previews which don't work correctly and if possible also
 tell how to fix the issue :-)

 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)

 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Undelete

2014-10-19 Thread Vincent Privat
Yep. And code of this plugin is better than reverter, which is an
unmaintained mess.

Concerning JOSM develoment, I'd like to highlight:
- we are in stabilization phase, so be careful this week, and please, no
new strings: https://josm.openstreetmap.de/wiki/DevelopersGuide/Schedule
- there's a continuous integration server, check you don't break tests:
http://donvip.fr/jenkins/job/JOSM
- there's also a Sonar instance used to improve our metrics (that means
essentially, write Javadoc for all public APIs, minimize duplicated code):
http://donvip.fr/sonar/dashboard/index/josm

2014-10-19 23:48 GMT+02:00 Dirk Stöcker openstreet...@dstoecker.de:

 On Sun, 19 Oct 2014, Frederik Ramm wrote:

  I haven't kept track of JOSM development in the last few years, so you
 could help me a lot by pointing me in the right directions. Would it
 make sense to piggyback this on e.g. the changeset reverter plugin or
 something else that does similiar things?


 Sounds much like an improvement to undelete plugin to me:
 http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Undelete

 Ciao
 --
 http://www.dstoecker.eu/ (PGP key available)


 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM 7643 released

2014-10-21 Thread Vincent Privat
The October version is now available as version 7643.

Before talking about it, some few words about the logo contest. Submissions
are over and I'd like again to thank everyone who participated. We were
really astonished by the number of people who sent us a design :) We are
now in the final phase and still deciding who the winner(s) will be. Stay
tuned, the new logo may appear during the development of the November
release.

Also, welcome to Klumbumbus who joined the team and who is behind nearly
all the preset/map stuff of this release.

Back to the new version. Well it's mainly a bugfix release, here's the
changelog:

* minor enhancements
  * Presets/Map styles:
* Added `amenity=shower`, `leisure=firepit`, `shop=antiques`,
`building=cowshed`, `barrier=kerb`, `sport=scuba_diving`
* New icon for `amenity=fountain`, `highway=raceway`
* Render `railway=construction`
* New advanced boolean preference `taggingpreset.display-keys-as-hint`
to display/hide OSM keys in preset UI
  * Remote Control:
* New `load_data` handler to load OSM data directly from URL
  * Add Help/Report bug menu entry. Please always use this feature to
report bugs!
* major bugs
  * Fix keyboard shortcuts issues
  * Combine ways: conflicts dialog not shown

Summarized changelog:
https://josm.openstreetmap.de/wiki/Changelog#a2014-10-21:Stablereleaser764314.10

Complete changelog:
https://josm.openstreetmap.de/log/josm/?action=stop_on_copymode=stop_on_copyrev=7643stop_rev=7589limit=200

Milestone view (need login):
https://josm.openstreetmap.de/milestone/14.10

Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] assertMatch and assertNoMatch

2014-10-23 Thread Vincent Privat
Hi,
They do what you think.
See http://josm.openstreetmap.de/ticket/10206 : they were designed for unit
tests but can be enabled at runtime with an advanced property.
I tend to skip adding these rules for basic cases but it's still
interesting for complex ones.
Cheers,
Vincent

2014-10-23 1:03 GMT+02:00 simson.gert...@gmail.com simson.gert...@gmail.com
:

 Hi,
 can someone please explain me assertMatch and assertNoMatch in mapcss
 validator files and/or add the explanation at
 http://josm.openstreetmap.de/wiki/Help/Validator/MapCSSTagChecker ?

 If I understand correct, you can give there examples, which should
 (assertMatch) or should not (assertNoMatch) match the used selector? And
 this is used for internal tests if the rules work correct? Should there
 always be atleast one assertMatch and one assertNoMatch when adding new
 validator tests?

 Best Regards
 Stefan
 (Klumbumbus)

 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] Jar signature updated

2014-11-24 Thread Vincent Privat
Hi,
Tomorrow expires the code signing certificate we were using until now to
sign our jar releases (both tested and latest).
I have renewed the certificate and updated the signature of current tested
release (7643) so it won't expire tomorrow for Webstart users. Starting
from today, latest jars use the new certificate as well.
It should be transparent for everyone, but if you see a security warning
because you're using an old version, you should upgrade to current one.
Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM graphics contest

2014-11-24 Thread Vincent Privat
Hi,
I have updated the wiki page:
http://josm.openstreetmap.de/wiki/LogoContest#FinalphaseOctober-November2014

to show latest work of our two finalists. The winner will be announced soon
and the new logo will be used for the next tested release :)
Cheers,
Vincent

2014-10-05 12:36 GMT+02:00 Martin Koppenhoefer dieterdre...@gmail.com:





  Il giorno 03/ott/2014, alle ore 21:37, Dirk Stöcker 
 openstreet...@dstoecker.de ha scritto:
 
  Not to forget: We always need icons for presets, features in the map,
 icons for program functions, display icons for plugins/styles/presets, 



 is there already a list of the items for which we need icons? If not it
 could be useful to set one up, so that designers know what is actually
 needed.

 cheers
 Martin
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM 7777 released, with the new logo + help needed for an OSM blog post

2014-12-10 Thread Vincent Privat
The November version is now available (a bit late!) as version , with
our great new logo :)

I won't repeat the changelog here, see the annoucement for details:
https://www.openstreetmap.org/user/josmeditor/diary/28201

Instead I'd like to ask if someone would help Harry Wood to write a small,
non-technical, blog post about JOSM.

If I quote him:

 It seems to me this is a good opportunity to have a blog post about JOSM
on http://blog.openstreetmap.org

 Just a quick non-tech overview of what JOSM is. I guess any other
interesting information in and around this logo design work. So I've
started drafting something here:

https://hackpad.com/A-new-logo-for-JOSM-the-Java-OpenStreetMap-Editor-m1pum0nqE4n
 (very simple and non-technical you see)

 I doesn't need to be a long blog post though, so too many editors might
make it too long. I will have to chop bits out if that happens.

 My aim would be to post it ~next 48 hours.

So if someone's available to help him quickly, go ahead! That's another way
to help JOSM :)

Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM 7906 released

2014-12-28 Thread Vincent Privat
Hi,
Our last release of the year is out:
https://www.openstreetmap.org/user/josmeditor/diary/28321

Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM server maintenance

2014-12-29 Thread Vincent Privat
Hi,
I'm going to shut down the JOSM website in 5 minutes for a small
maintenance task.
It should be a matter of minutes :)
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM server maintenance

2014-12-29 Thread Vincent Privat
back online!

2014-12-29 20:56 GMT+01:00 Vincent Privat vincent.pri...@gmail.com:

 Hi,
 I'm going to shut down the JOSM website in 5 minutes for a small
 maintenance task.
 It should be a matter of minutes :)
 Vincent

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JavaFX

2015-01-02 Thread Vincent Privat
Hi,
It's a bit complicated right now, I'd say it depends on your audience.

If you expect only Windows and OS X users, go ahead. All JDK7 and JDK8
runtimes released by Oracle contain JavaFX (versions 2.2 and 8).

On Linux however, this is not as simple as people tend to use OpenJDK
runtime rather than Oracle one, but not a single distribution include it by
default.
There's an openjfx package in Debian sid:
https://packages.debian.org/sid/openjfx

problem is it depends on this one:
https://packages.debian.org/sid/openjdk-8-jre

which is an extremely unstable package (seems to be an old development
version of the next, unreleased, Java 8 upgrade 8u40: we have plenty of bug
reports with this version).

so currently on Linux users would have two choices to have a working
environment:
- install Oracle runtime
- build their own, stable, runtime (based on JDK 7u72 or 8u25)

We do not have considered the Java 8 migration yet, it's too early
regarding the Linux situation.

I hope when we'll switch to Java 8 we will be able to use FX features too :)

2015-01-02 21:04 GMT+01:00 Malcolm Herring malcolm.herr...@btinternet.com:

 Is it possible to use JavaFX for a JOSM plugin? Or will I have to wait for
 a Java8 JOSM? If so, what is the expected timeline?


 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Invisible way

2015-03-09 Thread Vincent Privat
This is rather a bug of the software that produces the .osm file
(GraphEnhancer 1.0.0), not JOSM. Half the nodes are missing in your file.
Please report the bug to them.

2015-03-09 8:25 GMT+01:00 Jochen Topf joc...@remote.org:

 On So, Mär 08, 2015 at 11:11:15 -0600, Martijn van Exel wrote:
  I just had a weird experience with a JOSM XML file where some ways are
  present but not visible on the map. I described the issue in some detail
 in
  my diary: https://www.openstreetmap.org/user/mvexel/diary/34521
  Before I open a ticket I just want to make sure I am not missing
 something?

 I see two problems:

 1. Not sure how you generated that base.osm.pbf, but it contains a way
 without
 any attributes. If I convert this with osmium to XML I get:
 way id=813/
 with Osmosis I get:
 way id=813 version=0 timestamp=1970-01-01T00:00:00Z/

 2. My JOSM reports these:
 INFO: Way -1 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -72 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -65 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -66 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -67 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -68 with 5 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -20 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -22 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -21 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -24 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -36 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -40 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -37 with 4 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -43 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -44 with 7 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -41 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -51 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -50 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -54 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -53 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -64 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -63 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.
 INFO: Way -62 with 2 nodes has incomplete nodes because at least one node
 was missing in the loaded data.

 I haven't looked farther than this. Not sure any of this explains your
 problems, but fix them first and we'll see then.

 Jochen
 --
 Jochen Topf  joc...@remote.org  http://www.jochentopf.com/
 +49-173-7019282

 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Build Errors

2015-03-10 Thread Vincent Privat
See comment 1:
https://josm.openstreetmap.de/ticket/10385#comment:1

You need at least Ant 1.8.3.

2015-03-10 16:04 GMT+01:00 Harvey Sama princeme.s...@gmail.com:

 Version 1.8.2

 On 10 March 2015 at 15:56, Toby Murray toby.mur...@gmail.com wrote:

  What version of ant are you using? This seems relevant:
 
  https://josm.openstreetmap.de/ticket/10385
 
  Toby
 
  On Tue, Mar 10, 2015 at 9:51 AM, Harvey Sama princeme.s...@gmail.com
  wrote:
 
   Hello.
I tried to build the project using ant. I get the following error;
   C:\Users\Harvey\eclipseLuna\josm\build.xml:220: javac doesn't support
 the
   createMissingPackageInfoClass attribute
  
   I tried using java, but I get a list of 100 errors
  
   With eclipse, I had some JDK problem but I solved it. The application
  runs
   from eclipse and I can open the main application. Can I continue from
  here?
  
   --
   Best Regards
   ___
   josm-dev mailing list
   josm-dev@openstreetmap.org
   https://lists.openstreetmap.org/listinfo/josm-dev
  
  ___
  josm-dev mailing list
  josm-dev@openstreetmap.org
  https://lists.openstreetmap.org/listinfo/josm-dev
 



 --
 Best Regards
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] New JMapViewer release for JOSM 8109

2015-03-04 Thread Vincent Privat
Hi Sebastiaan,
Thanks for reporting it, I totally forgot this change.
JMapViewer 1.06 is out :)
Cheers,
Vincent

2015-03-04 21:58 GMT+01:00 Sebastiaan Couwenberg sebas...@xs4all.nl:

 Hi all,

 The Debian package for JOSM 8109 fails to build because it uses
 TemplatedTMSTileSource() introduced in jmapviewer r30933.

 Are you planning a JMapViewer 1.06 release to accompany JOSM 8109?

 Kind Regards,

 Bas

 --
  GPG Key ID: 4096R/6750F10AE88D4AF1
 Fingerprint: 8182 DE41 7056 408D 6146  50D1 6750 F10A E88D 4AF1

 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] HTTPS changes on osm.org

2015-02-27 Thread Vincent Privat
As they don't answer us I think we can release the February version without
any change.
What do you think?
Le 25 févr. 2015 16:14, Marc Gemis marc.ge...@gmail.com a écrit :

 Thanks for letting me know there is a key I can change. Of course I hope I
 can upgrade this machine soon, but that's not my decision. And I fully
 understand that you won't do anything special for this old version.

 regards

 m

 On Wed, Feb 25, 2015 at 2:39 PM, Dirk Stöcker openstreet...@dstoecker.de
 wrote:

  Hello,
 
   Sorry, I can't upgrade, the OS X version 10.6.8 does not support Java 7.
  Since I only borrow this computer from work during lunch for mapping,
 I
  have to stay on this Java and OSX version. At this moment we need those
  versions for testing (the OS) and development (the Java).
  For now I'll save my changes and upload them later on from a machine
 with
  more recent OS and Java.
 
 
  You can switch your system to use HTTP. Search openstreetmap in expert
  settings to find the right key. But we don't support Java 6 any more, so
  that's nothing we need to care about in default josm system.
 
  Ciao
  --
  http://www.dstoecker.eu/ (PGP key available)
 
  ___
  josm-dev mailing list
  josm-dev@openstreetmap.org
  https://lists.openstreetmap.org/listinfo/josm-dev
 
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] List Admin Role

2015-02-24 Thread Vincent Privat
If he agrees, I think Dirk should have this role. In fact I thought it was
already the case.

2015-02-24 19:59 GMT+01:00 Jo winfi...@gmail.com:

 I am a regular on this list for a long time now, but I'm not a core
 developer, couldn't even call myself a JOSM developer. All I develop are
 some styles and presets.

 Anyway, if nobody else signs up for the task, I can do it.


 Jo

 2015-02-24 19:43 GMT+01:00 Frederik Ramm frede...@remote.org:

  Hi,
 
 I am currently the list admin for josm-dev. This means I can
  theoretically kick people out (which I'd never considered doing), and
  that I receive moderator requests when someone who is not registered
  tries to post (I ignore them and then they expire). I also have a couple
  of config options with mailman which I am not using.
 
  Since I'm not exactly a regular here, I was wondering if someone from
  the group of more active participants would like to have that role
  transferred to them?
 
  Bye
  Frederik
 
  --
  Frederik Ramm  ##  eMail frede...@remote.org  ##  N49°00'09 E008°23'33
 
  ___
  josm-dev mailing list
  josm-dev@openstreetmap.org
  https://lists.openstreetmap.org/listinfo/josm-dev
 
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] HTTPS changes on osm.org

2015-02-22 Thread Vincent Privat
Hi,
Tonight osm.org sysadmins briefly switched to another root CA for their
https certificates (StartSSL), which is not included in Java Root CA
default list. As a direct consequence it caused download/upload errors for
all JOSM users since we enabled HTTPS access by default.

This issue is discussed there:
https://github.com/openstreetmap/operations/issues/2#issuecomment-75379077

If we can't find a practical solution we'll have to disable HTTPS by
default.

I propose to postpone the February release a few days until we clarify the
situation. If we need to disable https, the sooner the better.

Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] HTTPS changes on osm.org

2015-02-24 Thread Vincent Privat
2015-02-23 11:42 GMT+01:00 Dirk Stöcker openstreet...@dstoecker.de:

 I added a comment there. Let's see what they say.


Nothing yet. I made some noise to bring attention on the subject:

https://www.openstreetmap.org/user/josmeditor/diary/34460
https://www.facebook.com/josmeditor/posts/57899336419
https://plus.google.com/b/115458051662705872607/115458051662705872607/posts/RRspb9DYe6k

If someone wants to do the same on Twitter, you have my blessings.
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Banning plugins

2015-06-03 Thread Vincent Privat
Agreed. The multiplication of similar plugins is not a good thing :(
Le 3 juin 2015 14:56, Paul Hartmann phaau...@gmail.com a écrit :

 Hi,

 These belong to a group of plugins developed by students at University of
 Brasov (Romania) [1]:

 * DxfImport
 * ColorPlugin
 * kendzi3d_Improved_by_Andrei
 * BuildingGeneralization
 * ShapeTools
 * ContourOverlappingMerge
 * LanecConnectorPlugin
 * Remove.redundant.points

 My guess is, that the students signed up for an interesting project, but
 did not necessarily have any relation to OSM before. This means a long term
 commitment cannot be expected.

 It would be good if some could be merged with existing plugins.
 E.g. we have already a core feature to simplify a way. Then there is the
 SimplifyArea plugin, which does the same, only better. Now the
 Remove.redundant.points plugin should be integrated somehow.
 Next, we don't need kendzi3d and kendzi3d_Improved_by_Andrei, the
 improvements should be merged.

 [1] http://forum.openstreetmap.org/viewtopic.php?id=26385 (German)

 Paul

 On 03.06.2015 02:43, Vincent Privat wrote:

 Hello,
 I'm sick tired of these three plugins:

 1) CADTools
 2) ContourOverlappingMerge
 3) LaneConnector

 Why? Because they all include old, incompatible code that causes conflicts
 with turnrestriction plugin:

 https://josm.openstreetmap.de/ticket/11202
 https://josm.openstreetmap.de/ticket/11438
 https://josm.openstreetmap.de/ticket/11468

 We reported these issues to their respective authors, but none of them
 dare
 to reply:

 https://github.com/ROTARIUANAMARIA/CADTools/issues/1
 https://github.com/bularcasergiu/ContourOverlappingMerge/issues/1
 https://github.com/TrifanAdrian/LanecConnectorPlugin/issues/1

 There are still users facing these errors, see:
 https://josm.openstreetmap.de/ticket/11518

 So I'm moving these plugins to the internal list of unmaintained plugins.
 Next version of JOSM will suggest to disable them at startup.

 Regards,
 Vincent
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev



 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] Banning plugins

2015-06-02 Thread Vincent Privat
Hello,
I'm sick tired of these three plugins:

1) CADTools
2) ContourOverlappingMerge
3) LaneConnector

Why? Because they all include old, incompatible code that causes conflicts
with turnrestriction plugin:

https://josm.openstreetmap.de/ticket/11202
https://josm.openstreetmap.de/ticket/11438
https://josm.openstreetmap.de/ticket/11468

We reported these issues to their respective authors, but none of them dare
to reply:

https://github.com/ROTARIUANAMARIA/CADTools/issues/1
https://github.com/bularcasergiu/ContourOverlappingMerge/issues/1
https://github.com/TrifanAdrian/LanecConnectorPlugin/issues/1

There are still users facing these errors, see:
https://josm.openstreetmap.de/ticket/11518

So I'm moving these plugins to the internal list of unmaintained plugins.
Next version of JOSM will suggest to disable them at startup.

Regards,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] debugging plugins

2015-06-22 Thread Vincent Privat
Yes it is possible. Simply add the Eclipse project of your plugin to the
list of projects being used to search for sources in your debug
configuration.
Cheers,
Vincent

2015-06-22 10:24 GMT+02:00 Jo winfi...@gmail.com:

 Hi,

 When one develops a plugin for JOSM, the compiled jar file is used. That is
 quite convenient, but it seems to make it impossible to run a debugger from
 Eclipse on the code of the plugin. One can always print messages to the
 console, but the ability to work with breakpoints and such is priceless.

 Is there a possiblity to use a debugger on plugin code in another way, that
 we simply didn't find on our own?

 Polyglot
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] unit testing and functional testing of plugins

2015-06-22 Thread Vincent Privat
Hi,
Good initiative. Tests are always welcome.
To add new unit tests, look at those existing plugins:
- alignways
- elevation
- graphview
- opendata
- turnrestrictions
- wikipedia

and copy the same arborescence. Please take care of SVN properties
(externals and ignore).

Then add your plugin to the list of tests being run in the common build
file:
https://trac.openstreetmap.org/browser/subversion/applications/editors/josm/plugins/build.xml#L223

It will then be run in the Jenkins build, see:
https://josm.openstreetmap.de/jenkins/job/JOSM-Plugins/lastCompletedBuild/testReport/

Updating the wiki is also welcome :)


2015-06-22 9:13 GMT+02:00 Jo winfi...@gmail.com:

 Hi,

 For some peace of mind and to avoid regression, while boldly adding
 functionality, I'd like to encourage the student I'm mentoring to write
 tests for the Mapillary plugin.

 I found this folder, which contains tests:

 https://josm.openstreetmap.de/browser/josm/trunk/test

 Do tests which test a plugin go in a dedicated folder as part of the
 plugin? I guess that would make most sense. Or is it possible to add a
 condition which tests first for the availability of the plugin one wants to
 test?

 I tried to find this information here
 https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins, but
 TDD is not mentioned there at all.

 Polyglot
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] Late-May version released

2015-06-16 Thread Vincent Privat
Hi,
The new tested release is out (8491).
It was originally scheduled for end of May, but I assume we all have a lot
of stuff outside JOSM :)
The version scheduled for June has been cancelled, the next one will be
released end of July, to catch the nominal monthly release train.
Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JCS as optional dependency

2015-06-17 Thread Vincent Privat
I can try to have a look but I never packaged something on Debian before.
Is there a Debian packaging for dummies somewhere? :)

2015-06-17 13:02 GMT+02:00 Sebastiaan Couwenberg sebas...@xs4all.nl:

  We understand the problem but I don't know if keeping the old cache is
  easy
  nor feasible. Wiktor what do you think? Is the old code still there or
 has
  it been dropped during the switch ?
  Even if it's possible, it might lead to Debian specific bugs...

 I'm afraid keeping the old caching as an alternative is not an option,
 that's why I didn't raise the issue before. If it is possible, this would
 remove the barrier preventing josm updates in Debian though.

  Couldn't we help you to package JCS on Debian instead?

 Yes that's possible and very much appreciated. Have a look at the JCS
 Request For Package bug where I've recorded my progress.

 https://bugs.debian.org/783538

 There are too few contributors to the Debian GIS team to allow me to
 dedicate sufficient time to packaging JCS and maintaining it in the long
 term. All my time is currently consumed preparing transitions for GDAL 
 SpatiaLite, reviewing and sponsoring uploads for others, and mentoring a
 new contributor. The Debian Java team is likewise understaffed, so I can't
 blame them for the lack of help with packaging JCS. Everyone has enough on
 their plate with the packages we maintain already to not jump at the
 request for a new package they don't need themselves.

 Kind Regards,

 Bas


___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JCS as optional dependency

2015-06-17 Thread Vincent Privat
Hi Sebastiaan,
We understand the problem but I don't know if keeping the old cache is easy
nor feasible. Wiktor what do you think? Is the old code still there or has
it been dropped during the switch ?
Even if it's possible, it might lead to Debian specific bugs...
Couldn't we help you to package JCS on Debian instead?
Le 17 juin 2015 12:02 PM, Sebastiaan Couwenberg sebas...@xs4all.nl a
écrit :

  But when you download the source code from our repository, you will get
  all the dependencies. Ant build will create a jar that will contain all
  necessary dependencies within. What's wrong with such approach?

 Bundling dependencies is not a good thing. Take JMapViewer for example, we
 build this separately in Debian because it's also used by Freeplane. If
 both josm  freeplane were to bundle the dependency we need to apply
 updates and bugfixes to both copies instead of just the component itself.

 There will be other software that will use JCS in once that's packaged in
 Debian, bundling JCS in JOSM prevents these other projects from benefiting
 from the JCS build.

 Kind Regards,

 Bas


 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Mapillary plugin for JOSM

2015-06-01 Thread Vincent Privat
No problem to keep it. Jorge made a wonderful job in taking into account my
remarks very fast :)
Le 1 juin 2015 22:55, Jo winfi...@gmail.com a écrit :

 I forwarded the notice to Jorge and he promptly solved the problem. I think
 it's better to keep it included.

 Jo

 2015-06-01 22:21 GMT+02:00 Dirk Stöcker openstreet...@dstoecker.de:

  On Mon, 1 Jun 2015, Holger Mappt wrote:
 
   The plugin is in an early stage.  Is there a way to exclude it from the
  build jobs and distribution for a while?
 
 
  Distribution is done by hand, so no need for exceptions. The build checks
  you can disable simply be removing the line in main plugin build.xml,
 but I
  would not do this: I think it's a good idea to let the tester go over it.
  We wont kill you when it gets red :-)
 
  Ciao
  --
  http://www.dstoecker.eu/ (PGP key available)
 
 
  ___
  josm-dev mailing list
  josm-dev@openstreetmap.org
  https://lists.openstreetmap.org/listinfo/josm-dev
 
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Mapillary plugin for JOSM

2015-05-31 Thread Vincent Privat
Hi,
I see the mapillary plugin is now hosted on OSM SVN but it doesn't compile:
https://josm.openstreetmap.de/jenkins/job/JOSM-Plugins/23/

1) The plugin refers to a missing class MapillaryImageDisplay. It must
have been forgotten?
2) Please use javax.json API, which is included in JOSM core, instead of
org.json. See https://josm.openstreetmap.de/ticket/9590 about why and how.

Cheers,
Vincent

2015-02-16 7:24 GMT+01:00 Jo winfi...@gmail.com:

 Hi Paul,

 HolgerMappt and me had been preparing that on a Titanpad, I only had to
 take out all the references to the new Mapillary API. I'll add you as a
 co-mentor. I could use a mentor myself, but I think it will be a lot better
 to have an actual Java developer to do the coding.

 Cheers,

 Jo

 2015-02-16 1:24 GMT+01:00 Paul Hartmann phaau...@gmail.com:

  On 16.02.2015 00:17, Jo wrote:
 
  Hi,
 
  I'm proposing the development of a Mapillary plugin as a GSoC project.
 
  http://wiki.openstreetmap.org/wiki/Google_Summer_of_Code/
  2015/Mapillary_plugin_for_JOSM
 
  The question I get now from Ian Dees, is whether there is somebody from
  the
  JOSM developer team who'd be able to co-mentor. Or replace me as
 mentor. I
  might not be the most suited person for the job. I have a pretty clear
  idea
  of where I'd like it to go, but it has become apparent I'm not capable
 of
  actually coding it. I'm getting stuck over and over again. Even creating
  the initial environment on svn proved to be a challenge... It's there
 now,
  but when I try to add some code, I'm getting 30+ errors and warnings I
  can't solve.
 
 
  Do you need a mentor? :)
  No, seriously, this is really a great idea for a GSoC project and I would
  be available as a co-mentor. The project description is nice, great work!
 
  What I would suggest is to make the first paragraph less technical and
  start with the features that are expected and what the workflow could be
  from the user perspective. Also we should mention the existing Mapillary
  integration in iD.
 
  Paul
 
  ___
  josm-dev mailing list
  josm-dev@openstreetmap.org
  https://lists.openstreetmap.org/listinfo/josm-dev
 
 ___
 josm-dev mailing list
 josm-dev@openstreetmap.org
 https://lists.openstreetmap.org/listinfo/josm-dev

___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] Cleaning up of map paint styles

2015-10-24 Thread Vincent Privat
Hi,
I'm cleaning up all invalid icon references in external map paint styles.
It's easy when they are hosted on JOSM wiki or Github, but I got a problem
with this one:

http://www.country-linedance.de/daten/Verkehrszeichen-vorlage.zip

ERROR: Failed to locate image '
http://www.country-linedance.de/daten/image/pavement.png'
ERROR: Failed to locate image 'presets/traffic-light.png'

http://www.country-linedance.de is not even accessible.
According to XML file, it is "RoadSigns:DE" and has been created by "lutz"
in 2012.

Questions:
- is this style still being used/necessary?
- can someone please contact the author?
- could it be rather merged into Presets/Traffic_signs, which is on JOSM
wiki and actively maintained?

Cheers,
Vincent
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] Cleaning up of map paint styles

2015-10-24 Thread Vincent Privat
Same problem with

http://www.freietonne.de/ft_icons/josm/FreieTonne_rules_presets_zip.php

ERROR: Failed to locate image '
http://www.country-linedance.de/daten/image/20.png'


2015-10-24 16:20 GMT+02:00 Vincent Privat <vincent.pri...@gmail.com>:

> Hi,
> I'm cleaning up all invalid icon references in external map paint styles.
> It's easy when they are hosted on JOSM wiki or Github, but I got a problem
> with this one:
>
> http://www.country-linedance.de/daten/Verkehrszeichen-vorlage.zip
>
> ERROR: Failed to locate image '
> http://www.country-linedance.de/daten/image/pavement.png'
> ERROR: Failed to locate image 'presets/traffic-light.png'
>
> http://www.country-linedance.de is not even accessible.
> According to XML file, it is "RoadSigns:DE" and has been created by "lutz"
> in 2012.
>
> Questions:
> - is this style still being used/necessary?
> - can someone please contact the author?
> - could it be rather merged into Presets/Traffic_signs, which is on JOSM
> wiki and actively maintained?
>
> Cheers,
> Vincent
>
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] josm.osm.de: No space left on device

2015-10-21 Thread Vincent Privat
It happened again this night, causing Jenkins to crash.
I understand now the root cause: the Jenkins Jacoco plugin stores far too
many files for old builds:
https://issues.jenkins-ci.org/browse/JENKINS-27297

Until this is fixed I have lowered again the number of builds we keep for
JOSM job (from 250 to 150).

2015-09-10 14:57 GMT+02:00 Dirk Stöcker :

> On Thu, 10 Sep 2015, Maarten Deen wrote:
>
> What would you need for that? Monetary donations, or can you use a
>> harddisk? I have some unused ones lying around. But they are not new and
>> not in the TB region.
>> Then again, you can find new 250 GB harddisks for as low as 20 euro.
>>
>
> At the moment we have this server, which was the biggest one on february:
> https://www.hetzner.de/de/hosting/produkte_vserver/vx18
>
> When we need renewal next year, maybe we can ask for an upgrade to
> https://www.hetzner.de/de/hosting/produkte_vserver/cx40 or even
> https://www.hetzner.de/de/hosting/produkte_vserver/cx50
>
> At least I'm very happy with the uncomplicated sponsoring from Hetzner, so
> without a good reason I'd not like to go away from them.
>
> So neither money nor hardware donations will help ATM :-)
>
> Ciao
> --
> http://www.dstoecker.eu/ (PGP key available)
>
>
> ___
> josm-dev mailing list
> josm-dev@openstreetmap.org
> https://lists.openstreetmap.org/listinfo/josm-dev
>
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JMapViewer 1.12 release to accompany JOSM 8964?

2015-10-30 Thread Vincent Privat
Done!

2015-10-30 11:48 GMT+01:00 Vincent Privat <vincent.pri...@gmail.com>:

> Hi Sebastiaan,
> We were busy to fix a few critical issues in josm 8964 => the new tested
> is 8969.
> I'm releasing jmapviewer this afternoon, don't worry :)
> Vincent
> Le 30 oct. 2015 11:30 AM, "Sebastiaan Couwenberg" <sebas...@xs4all.nl> a
> écrit :
>
>> With the new tested snapshot for JOSM I also expected the JMapViewer
>> 1.12 release with wiktorns recent tile chache changes.
>>
>> I see that there is no JMapViewer 1.12 release yet, can we expect that
>> soon?
>>
>> Kind Regards,
>>
>> Bas
>>
>> --
>>  GPG Key ID: 4096R/6750F10AE88D4AF1
>> Fingerprint: 8182 DE41 7056 408D 6146  50D1 6750 F10A E88D 4AF1
>>
>> ___
>> josm-dev mailing list
>> josm-dev@openstreetmap.org
>> https://lists.openstreetmap.org/listinfo/josm-dev
>>
>
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


[josm-dev] JOSM feedback on Java 7,8,9, including Jigsaw EA

2015-10-30 Thread Vincent Privat
Hi,
Following the recent inclusion of JOSM to the Quality Outreach list by the
Adoption Group, we have compiled every single Java issue we have
encountered, and reported when it was new, for the latest versions of Java,
on a single page:

https://josm.openstreetmap.de/wiki/JavaBugs

We will use this page to coordinate our communication efforts with you. Is
it possible to add a link to it in the last column of the Quality Outreach
table?

The list currently contains 29 unresolved items and 18 resolved ones.

I won't go through all of them in this e-mail. Ideally we'd like to see all
of them fixed in a future Java release but I will only focus on the most
important ones.

Concerning Jigsaw:
- We have reported 3 bugs. All made it to the public JIRA: 8138878,
8140477, 8140481. The second one is a bit problematic for our tests as it
basically kills our Jenkins instance. I see the two other ones are
understood/in progress. We will do more tests after we resolve the hanging
problem.
- We'd like to know if it can be expected to see the
package sun.security.x509 become a public JDK API, for example in
javax.security.cert? We currently use it to generate a self-signed
certificate in order to create a local https server. That's our only use of
private JDK API.

Concerning Valhalla:
- I see some discussions about building the JDK with project Valhalla. Are
you going to provide public Early Access builds like project Jigsaw?

Concerning the JIRA database:
- Is it possible to add the label "josm-found" to
issues 8140481, 8139659, 8034224, 7158257, 7194099 ?
- Some issues didn't make it to the public JIRA and remained in the private
bug database. Can we please have more information on them (why have they
apparently been rejected)? The incident numbers
are JI-9009025, JI-9010791, JI-9009449, JI-9008003.
- Is it expected to allow external people to have the possibility to
subscribe to JDK issues?

Concerning our incoming migration from Java 7 to Java 8:
- I am concerned about three issues in Java2D/AWT on Linux. We have several
duplicate bug reports for them: 6322854, 7172749, 8098530. Can we hope for
a fix in a future update of Java 8?

Finally:
- We had a terrible experience when trying to report a bug against JAXP. We
detected a severe data corruption problem in StaX when dealing with Unicode
SMP characters, so we reported it, including a sample Java program 100%
reproducible, in January 2013 (JAXP-76 on java.net JIRA). As no activity
was visible on this JIRA instance, we tried to use the standard Java bug
report, three times, without success, with incident numbers 2431783
(2013-01-23), 2627098 (2013-10-28) and 9048481 (2014-11-28), without any
answer. On 2014, November 29th we discovered by chance that the bug had
finally been detected and fixed internally, as JDK-8058175 (created and
resolved in September 2014). We reported back to the public JAXP JIRA
instance, again without any answer. 6 months later we finally got the
ironic and laconic answer "Please report issues to the OpenJDK Bug System",
which was exactly was we were trying to do for 2 years! Can you please tell
us why our bug reports were all silently ignored while the bug was real,
and if is it still worth reporting bugs against JAXP? Thankfully we had far
better experiences with other components of the JDK.
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JMapViewer 1.12 release to accompany JOSM 8964?

2015-11-04 Thread Vincent Privat
Maybe we patch signpost? If it's the case I'm sorry for the misguidance :/
Le 4 nov. 2015 7:35 PM, "Sebastiaan Couwenberg" <sebas...@xs4all.nl> a
écrit :

> On 31-10-15 15:08, Sebastiaan Couwenberg wrote:
> > On 31-10-15 14:11, Vincent Privat wrote:
> >> I have a few other remarks on the Debian package.
> >> The package still depends on libandroid-json-org-java and
> >> libcommons-codec-java, they should be dropped:
> >>
> >> - org.json was dropped in 6756, see
> >> https://josm.openstreetmap.de/ticket/9590
> >> - Apache Commons Codec was dropped in 8149, see
> >> https://josm.openstreetmap.de/ticket/11257
> >>
> >> commons-codec.jar must also be removed from 00-build.patch
> >
> > Thanks, fixed in josm (0.0.svn8969+dfsg-2).
>
> Removing commons-codec.jar from the Class-Path seems to have broken the
> OAuth support as reported in Debian Bug #804072
> (https://bugs.debian.org/804072).
>
> How do the tested & latest builds handle these dependencies?
>
> Kind Regards,
>
> Bas
>
> --
>  GPG Key ID: 4096R/6750F10AE88D4AF1
> Fingerprint: 8182 DE41 7056 408D 6146  50D1 6750 F10A E88D 4AF1
>
> ___
> josm-dev mailing list
> josm-dev@openstreetmap.org
> https://lists.openstreetmap.org/listinfo/josm-dev
>
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


Re: [josm-dev] JOSM feedback on Java 7,8,9, including Jigsaw EA

2015-10-31 Thread Vincent Privat
Hi Alan,
Thanks a lot for your answers and guidance. We will follow-up bugs with
appropriate mailing lists and attach test cases every time possible.
Best regards,
Vincent




2015-10-31 11:47 GMT+01:00 Alan Bateman <alan.bate...@oracle.com>:

> On 30/10/2015 15:29, Vincent Privat wrote:
>
> :
> - Some issues didn't make it to the public JIRA and remained in the
> private bug database. Can we please have more information on them (why have
> they apparently been rejected)? The incident numbers
> are JI-9009025, JI-9010791, JI-9009449, JI-9008003.
>
>
> Incidents submitted via bugs.sun.com have historically been hit or miss.
> I don't know why these four were not moved to the JDK bug database, but
> here they are now:
>
> JI-9009025 => https://bugs.openjdk.java.net/browse/JDK-8141093
>
> JI-9010791 => https://bugs.openjdk.java.net/browse/JDK-8141094
>
> JI-9009449 => https://bugs.openjdk.java.net/browse/JDK-8141095
>
> JI-9008003 => https://bugs.openjdk.java.net/browse/JDK-8141096
>
> The OpenJDK mailing lists aren't a support channel but reproducible test
> cases are a wonderful way to contribute. So if you have test cases or
> patches that can be added to these bugs for the issues that are in OpenJDK
> then it's best to follow-up on the appropriate mailing list (likely awt-dev
> or swing-dev for some of these).
>
>
> :
>
> Finally:
> - We had a terrible experience when trying to report a bug against JAXP.
> We detected a severe data corruption problem in StaX when dealing with
> Unicode SMP characters, so we reported it, including a sample Java program
> 100% reproducible, in January 2013 (JAXP-76 on java.net JIRA). As no
> activity was visible on this JIRA instance, we tried to use the standard
> Java bug report, three times, without success, with incident
> numbers 2431783 (2013-01-23), 2627098 (2013-10-28) and 9048481
> (2014-11-28), without any answer. On 2014, November 29th we discovered by
> chance that the bug had finally been detected and fixed internally, as
> JDK-8058175 (created and resolved in September 2014). We reported back to
> the public JAXP JIRA instance, again without any answer. 6 months later we
> finally got the ironic and laconic answer "Please report issues to the
> OpenJDK Bug System", which was exactly was we were trying to do for 2
> years! Can you please tell us why our bug reports were all silently ignored
> while the bug was real, and if is it still worth reporting bugs against
> JAXP? Thankfully we had far better experiences with other components of the
> JDK.
>
> JAXP development moved from the jaxp.java.net project to OpenJDK in early
> 2012. The project main page should be clearer on this point. I wasn't aware
> there was a JIRA instance but it probably should be shut down to avoid
> confusion.
>
> In any case, here is the mapping:
>
> 2431783 => https://bugs.openjdk.java.net/browse/JDK-8132652
>
> 2627098 => this one is on the old Sun web incident reporting system, I
> don't know how to move it to JIRA but it seems to be a dup of JDK-8141097
> or JDK-8058175.
>
> JI-9048481 => https://bugs.openjdk.java.net/browse/JDK-8141097
>
> As you note, JDK-8058175 has been fixed in JDK 9 builds for some time
> (since jdk9-b31). If you can verify the fix with the JDK 9 builds then you
> could lobby on jdk8u-dev to have it back-ported to 8u.
>
> -Alan.
>
___
josm-dev mailing list
josm-dev@openstreetmap.org
https://lists.openstreetmap.org/listinfo/josm-dev


  1   2   3   >