Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [statet-users] Statet Natures
  • From: Gary Mann <gmann@xxxxxxxxxxxxxxx>
  • Date: Wed, 28 Feb 2024 17:53:42 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=azimuthgroup.ca; dmarc=pass action=none header.from=azimuthgroup.ca; dkim=pass header.d=azimuthgroup.ca; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=/g1kqIaA3sCpJEJCbFWd/rUvbvcXVxQN4Z+1YBI74ls=; b=GpmC6wCKLrIFyl0JYXTt+MVG/5+25nx+z2uXWaT6ECbv2fclBdwQP8Pxl58huxQ8NfzQM4U/VffB8WsTcEfMo7ZUnWbs10DKfri0+sEoo8duSLAoPHnQygLfJmFOny4c0LTTwQp7E8wvRnTDKGhPlei4OpquqGfevWbMAGh9COJM7bMmO5oi96ZsM4rMoU98RS+YbzQze6v25SQl2zXe8hUZe8M7SfaG243io27hYAebHTdt3Y3aXC9P+ffUVL0GCK7fK7Wz/heZ6r05zBLq6ZSLvY3w76CmWd9NGdTUCe3HLiZIoRpxZNSR+fgCZENG4oIJwcdM9Kx564iGX7F6uA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=fO4p86vka5Sr8gA21zkXSQp+UTQzx28nB/wgXm2rFtQHqGf3Lwb6NAy7OIe2LNkSNguR0eAI8LMDFKE2I3ocKG5w+QP98Fo+moByUiTVIXsQfdUMF9jqX8IXGZdZWKQ/x3MHKLxJEIhdUPjvNeafwHdqq8/i2sYZuXgjvzz3P9obT6vCyzHWiGYdTq6M62MGDRzUZmZth7dU4y7c/DnrqcT26sfqQywhGxcW8tYt6ppSKFdwsIVlxJj4orOszCHfWklcA0qITU8njWBgmVOJ0rhLvl6nnCSk03r02d8vNKQ/WRyUg1t3OdL8aq1iei/VhGXu7+v8VFt2wD+rn8CkBg==
  • Delivered-to: statet-users@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/statet-users/>
  • List-help: <mailto:statet-users-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/statet-users>, <mailto:statet-users-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/statet-users>, <mailto:statet-users-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AdpqCKFXnO3V76PgTMeiUo2PpmB3GQAK6+eAAA4xgAA=
  • Thread-topic: [statet-users] Statet Natures

Hi Stephan,

 

Thanks for much for the quick reply. And more importantly, for all the hard work you have put into StatET over the years!

 

I looked at the properties for my R Projects folder in Eclipse (see screenshot) and saw the two missing nature names (shown as missing). I hit the remove button and now they are gone. I did the same for the ‘de.walware’ builder command in the ‘Builders’ tab. I checked the actual .project file after that and it had been updated.

 

Cheers,

Gary

 

 

 

-----Original Message-----
From: statet-users [mailto:statet-users-bounces@xxxxxxxxxxx] On Behalf Of Stephan Wahlbrink via statet-users
Sent: February 28, 2024 2:53 AM
To: statet-users@xxxxxxxxxxx
Cc: Stephan Wahlbrink <sw@xxxxxxxxxxxx>
Subject: Re: [statet-users] Statet Natures

 

[You don't often get email from statet-users@xxxxxxxxxxx. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ]

 

Hi Gary,

 

each project in Eclipse has "natures", which enable language specific features for the project and make a project e.g. to an "R project". The shown entries are from an old version of StatET, they are no longer used for several year.

You can remove the outdated natures (and related configuration) as follows:

   1) Each project has a XML file named `.project` (in some views it is hidden by default), open the file

   2) Remove all "nature" and "buildCommand" entries with names starting with "de.walware.".

 

A `.project` file for a simple R project with _current_ natures should looks like:

```

<?xml version="1.0" encoding="UTF-8"?>

<projectDescription>

        <name>demo-R</name>

        <comment></comment>

        <projects>

        </projects>

        <buildSpec>

                <buildCommand>

                        <name>org.eclipse.statet.r.resourceProjects.RBuilder</name>

                        <arguments>

                        </arguments>

                </buildCommand>

        </buildSpec>

        <natures>

                <nature>org.eclipse.statet.ide.resourceProjects.Statet</nature>

                <nature>org.eclipse.statet.r.resourceProjects.R</nature>

        </natures>

</projectDescription>

```

 

Regards,

Stephan

 

 

[28.02.2024 06:51] Gary Mann via statet-users wrote:

> Hi all,

> 

> I recently started getting the message below. This is not related to

> installing the latest version as I haven't yet. I tried the "Show

> Solutions" option but that didn't end up leading me to an obvious

> solution. I have been using this StatET for years, but I don't know

> what these "Natures" are, where to find them, or how to install them.

> > Any ideas?

 

 

_______________________________________________

statet-users mailing list

statet-users@xxxxxxxxxxx

To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/statet-users


Back to the top