r28304 - /website/links.html

2016-11-16 Thread edward
Author: bugman
Date: Wed Nov 16 19:51:36 2016
New Revision: 28304

URL: http://svn.gna.org/viewcvs/relax?rev=28304=rev
Log:
Even more div box fixes.


Modified:
website/links.html

Modified: website/links.html
URL: 
http://svn.gna.org/viewcvs/relax/website/links.html?rev=28304=28303=28304=diff
==
--- website/links.html  (original)
+++ website/links.html  Wed Nov 16 19:51:36 2016
@@ -211,8 +211,7 @@
 
 
   
-  
-
+  
   Protein dynamics
 
 
@@ -232,7 +231,6 @@
   
 
 
-
 
   relax libraries
 


___
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
relax-commits@gna.org

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits


r28294 - /trunk/docs/devel/Release_Checklist

2016-11-16 Thread edward
Author: bugman
Date: Wed Nov 16 14:10:32 2016
New Revision: 28294

URL: http://svn.gna.org/viewcvs/relax?rev=28294=rev
Log:
Updates to the upload section of the release checklist document for sending 
files to SourceForge.


Modified:
trunk/docs/devel/Release_Checklist

Modified: trunk/docs/devel/Release_Checklist
URL: 
http://svn.gna.org/viewcvs/relax/trunk/docs/devel/Release_Checklist?rev=28294=28293=28294=diff
==
--- trunk/docs/devel/Release_Checklist  (original)
+++ trunk/docs/devel/Release_Checklist  Wed Nov 16 14:10:32 2016
@@ -125,13 +125,21 @@
 
 $ rsync -av --progress --no-perms --rsh="ssh" 
bug...@download.gna.org:/upload/relax/ .
 
-Then rsync the entire directory contents to download.gna.org/upload/relax/ 
using the command:
-
-$ rsync --delete -av --progress --no-perms --partial --rsh="ssh" . 
bug...@download.gna.org:/upload/relax/
+Change "bugman" to your user name.  Then rsync the entire directory contents 
to download.gna.org/upload/relax/ using the command:
+
+$ rsync --delete -rlptoDvP --progress --partial --no-perms --rsh="ssh" 
--numeric-ids . bug...@download.gna.org:/upload/relax/
 
 The upload script simplifies the upload process:
 
-$ ./upload
+$ ./upload bugman
+
+Upload copies to the relax SourceForge file area as well:
+
+$ rsync --delete -rlptoDvP --progress --partial --no-perms -e ssh 
--numeric-ids . bug...@frs.sourceforge.net:/home/frs/project/nmr-relax/
+
+Or:
+
+$ ./upload bugman sf
 
 
 


___
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
relax-commits@gna.org

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits


r28293 - /website/links.html

2016-11-16 Thread edward
Author: bugman
Date: Wed Nov 16 12:25:00 2016
New Revision: 28293

URL: http://svn.gna.org/viewcvs/relax?rev=28293=rev
Log:
Commented out the Gmane links at http://www.nmr-relax.com/links.html.

This is at least until Gmane is back up.


Modified:
website/links.html

Modified: website/links.html
URL: 
http://svn.gna.org/viewcvs/relax/website/links.html?rev=28293=28292=28293=diff
==
--- website/links.html  (original)
+++ website/links.html  Wed Nov 16 12:25:00 2016
@@ -3,7 +3,7 @@
 http://www.w3.org/1999/xhtml;>
 
 
   The Mail Archive
   MARC
   Free Software 
Directory
@@ -75,12 +75,14 @@
   The relax project page is https://gna.org/projects/relax;>https://gna.org/projects/relax.  The 
relax developer Gna! pages are (in alphabetical order):  http://gna.org/users/bugman;>Edward dAuvergne, http://gna.org/users/michaelbieri;>Michael Bieri, http://gna.org/users/macraild;>Chris MacRaild, http://gna.org/users/semor;>Sbastien Morin, http://gna.org/users/pansapiens;>Andrew Perry, http://gna.org/users/han87;>Han Sun, http://gna.org/users/varioustoxins;>Gary Thompson.
 
 
+
 
-
 
   http://www.mail-archive.com;>
   An easy-to-use archiving service for electronic mailing lists.


___
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
relax-commits@gna.org

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits


r28292 - /trunk/test_suite/gui_tests/rx.py

2016-11-16 Thread edward
Author: bugman
Date: Wed Nov 16 12:07:50 2016
New Revision: 28292

URL: http://svn.gna.org/viewcvs/relax?rev=28292=rev
Log:
More precision decreases in the Rx.test_r1_analysis GUI test.

This is to allow the test to pass on wxPython-Phoenix and Python 3.

Modified:
trunk/test_suite/gui_tests/rx.py

Modified: trunk/test_suite/gui_tests/rx.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/test_suite/gui_tests/rx.py?rev=28292=28291=28292=diff
==
--- trunk/test_suite/gui_tests/rx.py(original)
+++ trunk/test_suite/gui_tests/rx.pyWed Nov 16 12:07:50 2016
@@ -73,8 +73,8 @@
 
 # Check the errors.
 for key in cdp.sigma_I:
-self.assertEqual(cdp.sigma_I[key], 10578.039482421433)
-self.assertEqual(cdp.var_I[key], 111894919.2919)
+self.assertAlmostEqual(cdp.sigma_I[key], 10578.039482421433)
+self.assertAlmostEqual(cdp.var_I[key], 111894919.2919)
 
 # Spin data check.
 i = 0


___
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
relax-commits@gna.org

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits


r28297 - /website/links.html

2016-11-16 Thread edward
Author: bugman
Date: Wed Nov 16 15:48:47 2016
New Revision: 28297

URL: http://svn.gna.org/viewcvs/relax?rev=28297=rev
Log:
More sectioning for the links at http://www.nmr-relax.com/links.html.

This includes a section for relax infrastructure, mailing list archives, and 
web resources.


Modified:
website/links.html

Modified: website/links.html
URL: 
http://svn.gna.org/viewcvs/relax/website/links.html?rev=28297=28296=28297=diff
==
--- website/links.html  (original)
+++ website/links.html  Wed Nov 16 15:48:47 2016
@@ -28,12 +28,20 @@
 Links
 
 
-relax on the web
+relax on the web
  
   Gna!
+ 
+
+relax on the web
+ 
   
   The Mail Archive
   MARC
+ 
+
+relax on the web
+ 
   Free Software 
Directory
   DMOZ open directory project
   Linuxlinks.com
@@ -59,20 +67,35 @@
 
   
 
-  
-  relax on the web
-
-
-  
-
-  Site
-  Description
-  Where to find relax
-
+  
+  relax infrastructure
+
+
+  
+
+  Site
+  Description
+  Links
+
+
 
   http://gna.org/projects/relax;>
   Gna! is a central point for the development, distribution and 
maintenance of Libre Software (Free Software) projects.
   The relax project page is https://gna.org/projects/relax;>https://gna.org/projects/relax.  The 
relax developer Gna! pages are (in alphabetical order):  http://gna.org/users/bugman;>Edward dAuvergne, http://gna.org/users/michaelbieri;>Michael Bieri, http://gna.org/users/macraild;>Chris MacRaild, http://gna.org/users/semor;>Sbastien Morin, http://gna.org/users/pansapiens;>Andrew Perry, http://gna.org/users/han87;>Han Sun, http://gna.org/users/varioustoxins;>Gary Thompson.
+
+  
+
+
+
+  
+  Mailing list archives
+
+
+  
+
+  Site
+  Description
+  Links
 
 
 

r28296 - /website/download.html

2016-11-16 Thread edward
Author: bugman
Date: Wed Nov 16 15:37:22 2016
New Revision: 28296

URL: http://svn.gna.org/viewcvs/relax?rev=28296=rev
Log:
The 3.3.6 to 3.3.8 download links now point to 
http://www.nmr-relax.com/download_request.html.

These releases were removed from the download area a long time ago.


Modified:
website/download.html

Modified: website/download.html
URL: 
http://svn.gna.org/viewcvs/relax/website/download.html?rev=28296=28295=28296=diff
==
--- website/download.html   (original)
+++ website/download.html   Wed Nov 16 15:37:22 2016
@@ -587,115 +587,115 @@
 
 http://wiki.nmr-relax.com/Relax_3.3.8;>Version 
3.3.8 (2015-04-02)
 
-  http://download.gna.org/relax/relax-3.3.8.GNU-Linux.i686.tar.bz2; 
title="relax">relax-3.3.8.GNU-Linux.i686.tar.bz2
+  relax-3.3.8.GNU-Linux.i686.tar.bz2
   ced0f46c08d19891d54c860437c521b9
-  http://download.gna.org/relax/relax-3.3.8.GNU-Linux.i686.tar.bz2.sig; 
title="relax GPG signature">signature
+  signature
   90,148,435
 
 
-  http://download.gna.org/relax/relax-3.3.8.GNU-Linux.x86_64.tar.bz2; 
title="relax">relax-3.3.8.GNU-Linux.x86_64.tar.bz2
+  relax-3.3.8.GNU-Linux.x86_64.tar.bz2
   0f303dfa45bb93d2b3fcb21573a85313
-  http://download.gna.org/relax/relax-3.3.8.GNU-Linux.x86_64.tar.bz2.sig; 
title="relax GPG signature">signature
+  signature
   90,288,284
 
 
-  http://download.gna.org/relax/relax-3.3.8.Win32.zip; 
title="relax">relax-3.3.8.Win32.zip
+  relax-3.3.8.Win32.zip
   a45f597f97608199783fdc8c659c6f8d
-  http://download.gna.org/relax/relax-3.3.8.Win32.zip.sig; 
title="relax GPG signature">signature
+  signature
   95,481,119
 
 
-  http://download.gna.org/relax/relax-3.3.8.Darwin.dmg; 
title="relax">relax-3.3.8.Darwin.dmg
+  relax-3.3.8.Darwin.dmg
   cbb02dfd35bc200d7b4ce1e725c45ddf
-  http://download.gna.org/relax/relax-3.3.8.Darwin.dmg.sig; 
title="relax GPG signature">signature
+  signature
   301,462,611
 
 
-  http://download.gna.org/relax/relax-3.3.8.src.tar.bz2; 
title="relax">relax-3.3.8.src.tar.bz2
+  relax-3.3.8.src.tar.bz2
   5c189d4070bc746b57f55292877a070c
-  http://download.gna.org/relax/relax-3.3.8.src.tar.bz2.sig; 
title="relax GPG signature">signature
+  signature
   90,271,667
 
 
-  http://download.gna.org/relax/relax-3.3.8.src.zip; 
title="relax">relax-3.3.8.src.zip
+  relax-3.3.8.src.zip
   aacce935366969f3a16f9d7bbdc18712
-  http://download.gna.org/relax/relax-3.3.8.src.zip.sig; 
title="relax GPG signature">signature
+  signature
   95,600,160
 
 
 http://wiki.nmr-relax.com/Relax_3.3.7;>Version 
3.3.7 (2015-03-13)
 
-  http://download.gna.org/relax/relax-3.3.7.GNU-Linux.i686.tar.bz2; 
title="relax">relax-3.3.7.GNU-Linux.i686.tar.bz2
+  relax-3.3.7.GNU-Linux.i686.tar.bz2
   27bf8c6a183d53fc773e5f1722090c57
-  http://download.gna.org/relax/relax-3.3.7.GNU-Linux.i686.tar.bz2.sig; 
title="relax GPG signature">signature
+  signature
   90,148,136
 
 
-  http://download.gna.org/relax/relax-3.3.7.GNU-Linux.x86_64.tar.bz2; 
title="relax">relax-3.3.7.GNU-Linux.x86_64.tar.bz2
+  relax-3.3.7.GNU-Linux.x86_64.tar.bz2
   d84657eb772670dbdbe54f34fd769941
-  http://download.gna.org/relax/relax-3.3.7.GNU-Linux.x86_64.tar.bz2.sig; 
title="relax GPG signature">signature
+  signature
   90,285,547
 
 
-  http://download.gna.org/relax/relax-3.3.7.Win32.zip; 
title="relax">relax-3.3.7.Win32.zip
+  relax-3.3.7.Win32.zip
   19c7059cfd584a3d1c0ddf53d4175550
-  http://download.gna.org/relax/relax-3.3.7.Win32.zip.sig; 
title="relax GPG signature">signature
+  signature
   95,479,591
 
 
-  http://download.gna.org/relax/relax-3.3.7.Darwin.dmg; 
title="relax">relax-3.3.7.Darwin.dmg
+  relax-3.3.7.Darwin.dmg
   8d28113d40010e6de798b279235fef70
-  http://download.gna.org/relax/relax-3.3.7.Darwin.dmg.sig; 
title="relax GPG signature">signature
+  signature
   285,999,780
 
 
-  http://download.gna.org/relax/relax-3.3.7.src.tar.bz2; 
title="relax">relax-3.3.7.src.tar.bz2
+  relax-3.3.7.src.tar.bz2
   ee31e6acb50ce3679cc6f7dc619c4c65
-  http://download.gna.org/relax/relax-3.3.7.src.tar.bz2.sig; 
title="relax GPG signature">signature
+  signature
   90,268,061
 
 
-  http://download.gna.org/relax/relax-3.3.7.src.zip; 
title="relax">relax-3.3.7.src.zip
+  relax-3.3.7.src.zip
   b83ada904edb7e1c5a8d60fc05276e7f
-  http://download.gna.org/relax/relax-3.3.7.src.zip.sig; 
title="relax GPG signature">signature
+  signature
   95,598,632
 
 
 http://wiki.nmr-relax.com/Relax_3.3.6;>Version 
3.3.6 (2015-02-04)
 
-  http://download.gna.org/relax/relax-3.3.6.GNU-Linux.i686.tar.bz2; 

r28298 - in /website: ./ images/

2016-11-16 Thread edward
Author: bugman
Date: Wed Nov 16 16:05:58 2016
New Revision: 28298

URL: http://svn.gna.org/viewcvs/relax?rev=28298=rev
Log:
Added links to the SourceForge, GitLab, and GitHub nmr-relax infrastructure 
sites.

This is for http://www.nmr-relax.com/links.html.  The public domain or CC BY-SA 
4.0 licenced logos
from Wikipedia have been added and modified.


Added:
website/images/GitLab_logo.png   (with props)
website/images/Octocats.zip   (with props)
website/images/gh_logo.png   (with props)
website/images/gl_logo.png   (with props)
website/images/sf_logo.png   (with props)
Modified:
website/links.html

Added: website/images/GitLab_logo.png
URL: 
http://svn.gna.org/viewcvs/relax/website/images/GitLab_logo.png?rev=28298=auto
==
Binary file - no diff available.

Propchange: website/images/GitLab_logo.png
--
svn:mime-type = image/png

Added: website/images/Octocats.zip
URL: 
http://svn.gna.org/viewcvs/relax/website/images/Octocats.zip?rev=28298=auto
==
Binary file - no diff available.

Propchange: website/images/Octocats.zip
--
svn:mime-type = application/octet-stream

Added: website/images/gh_logo.png
URL: 
http://svn.gna.org/viewcvs/relax/website/images/gh_logo.png?rev=28298=auto
==
Binary file - no diff available.

Propchange: website/images/gh_logo.png
--
svn:mime-type = image/png

Added: website/images/gl_logo.png
URL: 
http://svn.gna.org/viewcvs/relax/website/images/gl_logo.png?rev=28298=auto
==
Binary file - no diff available.

Propchange: website/images/gl_logo.png
--
svn:mime-type = image/png

Added: website/images/sf_logo.png
URL: 
http://svn.gna.org/viewcvs/relax/website/images/sf_logo.png?rev=28298=auto
==
Binary file - no diff available.

Propchange: website/images/sf_logo.png
--
svn:mime-type = image/png

Modified: website/links.html
URL: 
http://svn.gna.org/viewcvs/relax/website/links.html?rev=28298=28297=28298=diff
==
--- website/links.html  (original)
+++ website/links.html  Wed Nov 16 16:05:58 2016
@@ -31,6 +31,9 @@
 relax on the web
  
   Gna!
+  SourceForge
+  GitLab
+  GitHub
  
 
 relax on the web
@@ -83,6 +86,25 @@
   Gna! is a central point for the development, distribution and 
maintenance of Libre Software (Free Software) projects.
   The relax project page is https://gna.org/projects/relax;>https://gna.org/projects/relax.  The 
relax developer Gna! pages are (in alphabetical order):  http://gna.org/users/bugman;>Edward dAuvergne, http://gna.org/users/michaelbieri;>Michael Bieri, http://gna.org/users/macraild;>Chris MacRaild, http://gna.org/users/semor;>Sbastien Morin, http://gna.org/users/pansapiens;>Andrew Perry, http://gna.org/users/han87;>Han Sun, http://gna.org/users/varioustoxins;>Gary Thompson.
 
+
+
+  https://sourceforge.net/projects/nmr-relax;>
+  SourceForge is an Open Source community resource dedicated to 
helping open source projects be as successful as possible.
+  This is a backup infrastructure site.  The relax project page is https://sourceforge.net/projects/nmr-relax;>https://sourceforge.net/projects/nmr-relax.
+
+
+
+  https://gitlab.com/nmr-relax;>
+  Open source software to collaborate on code.
+  This is a backup infrastructure site.  The relax project page is https://gitlab.com/nmr-relax;>https://gitlab.com/nmr-relax.
+
+
+
+  https://github.com/nmr-relax;>
+  GitHub is how people build software.
+  This is a backup infrastructure site.  The relax project page is https://github.com/nmr-relax;>https://github.com/nmr-relax.
+
+
   
 
 


___
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
relax-commits@gna.org

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits


r28295 - /website/download.html

2016-11-16 Thread edward
Author: bugman
Date: Wed Nov 16 15:34:02 2016
New Revision: 28295

URL: http://svn.gna.org/viewcvs/relax?rev=28295=rev
Log:
Changed all the relax download links to point to the new release subdirectories.

This is for http://www.nmr-relax.com/download.html.


Modified:
website/download.html

[This mail would be too long, it was shortened to contain the URLs only.]

Modified: website/download.html
URL: 
http://svn.gna.org/viewcvs/relax/website/download.html?rev=28295=28294=28295=diff


___
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
relax-commits@gna.org

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits


r28301 - /website/download.html

2016-11-16 Thread edward
Author: bugman
Date: Wed Nov 16 16:48:38 2016
New Revision: 28301

URL: http://svn.gna.org/viewcvs/relax?rev=28301=rev
Log:
The 4.0.0 and 4.0.1 download links now point to 
http://www.nmr-relax.com/download_request.html.

These releases are no longer in the download area.


Modified:
website/download.html

Modified: website/download.html
URL: 
http://svn.gna.org/viewcvs/relax/website/download.html?rev=28301=28300=28301=diff
==
--- website/download.html   (original)
+++ website/download.html   Wed Nov 16 16:48:38 2016
@@ -455,77 +455,77 @@
 
 http://wiki.nmr-relax.com/Relax_4.0.1;>Version 
4.0.1 (2015-12-14)
 
-  http://download.gna.org/relax/4.0.1/relax-4.0.1.GNU-Linux.i686.tar.bz2; 
title="relax">relax-4.0.1.GNU-Linux.i686.tar.bz2
+  relax-4.0.1.GNU-Linux.i686.tar.bz2
   463a0e914cff318bb5b25da65fcc41c5
-  http://download.gna.org/relax/4.0.1/relax-4.0.1.GNU-Linux.i686.tar.bz2.sig;
 title="relax GPG signature">signature
+  signature
   105,787,595
 
 
-  http://download.gna.org/relax/4.0.1/relax-4.0.1.GNU-Linux.x86_64.tar.bz2; 
title="relax">relax-4.0.1.GNU-Linux.x86_64.tar.bz2
+  relax-4.0.1.GNU-Linux.x86_64.tar.bz2
   9c09da031e0346a1f46c78a8aa4c2265
-  http://download.gna.org/relax/4.0.1/relax-4.0.1.GNU-Linux.x86_64.tar.bz2.sig;
 title="relax GPG signature">signature
+  signature
   106,000,392
 
 
-  http://download.gna.org/relax/4.0.1/relax-4.0.1.Win32.zip; 
title="relax">relax-4.0.1.Win32.zip
+  relax-4.0.1.Win32.zip
   1322eaa493fc8d6af79044de3e3e7789
-  http://download.gna.org/relax/4.0.1/relax-4.0.1.Win32.zip.sig; 
title="relax GPG signature">signature
+  signature
   111,856,780
 
 
-  http://download.gna.org/relax/4.0.1/relax-4.0.1.Darwin.dmg; 
title="relax">relax-4.0.1.Darwin.dmg
+  relax-4.0.1.Darwin.dmg
   ff282d948816f3bbedc650642b00b288
-  http://download.gna.org/relax/4.0.1/relax-4.0.1.Darwin.dmg.sig; 
title="relax GPG signature">signature
+  signature
   333,632,768
 
 
-  http://download.gna.org/relax/4.0.1/relax-4.0.1.src.tar.bz2; 
title="relax">relax-4.0.1.src.tar.bz2
+  relax-4.0.1.src.tar.bz2
   7c07917f22169f4afc76b5e362bb2112
-  http://download.gna.org/relax/4.0.1/relax-4.0.1.src.tar.bz2.sig; 
title="relax GPG signature">signature
+  signature
   105,985,056
 
 
-  http://download.gna.org/relax/4.0.1/relax-4.0.1.src.zip; 
title="relax">relax-4.0.1.src.zip
+  relax-4.0.1.src.zip
   8d942c8de7415f56ba35948129144f3c
-  http://download.gna.org/relax/4.0.1/relax-4.0.1.src.zip.sig; title="relax 
GPG signature">signature
+  signature
   111,977,790
 
 
 http://wiki.nmr-relax.com/Relax_4.0.0;>Version 
4.0.0 (2015-10-07)
 
-  http://download.gna.org/relax/4.0.0/relax-4.0.0.GNU-Linux.i686.tar.bz2; 
title="relax">relax-4.0.0.GNU-Linux.i686.tar.bz2
+  relax-4.0.0.GNU-Linux.i686.tar.bz2
   79de39ad88175deb13e6893d6b43d170
-  http://download.gna.org/relax/4.0.0/relax-4.0.0.GNU-Linux.i686.tar.bz2.sig;
 title="relax GPG signature">signature
+  signature
   105,515,294
 
 
-  http://download.gna.org/relax/4.0.0/relax-4.0.0.GNU-Linux.x86_64.tar.bz2; 
title="relax">relax-4.0.0.GNU-Linux.x86_64.tar.bz2
+  relax-4.0.0.GNU-Linux.x86_64.tar.bz2
   88e583699725277b280c82eefdf15c34
-  http://download.gna.org/relax/4.0.0/relax-4.0.0.GNU-Linux.x86_64.tar.bz2.sig;
 title="relax GPG signature">signature
+  signature
   105,655,707
 
 
-  http://download.gna.org/relax/4.0.0/relax-4.0.0.Win32.zip; 
title="relax">relax-4.0.0.Win32.zip
+  relax-4.0.0.Win32.zip
   0fb40b9164361ee37cc0981bc896f043
-  http://download.gna.org/relax/4.0.0/relax-4.0.0.Win32.zip.sig; 
title="relax GPG signature">signature
+  signature
   111,557,167
 
 
-  http://download.gna.org/relax/4.0.0/relax-4.0.0.Darwin.dmg; 
title="relax">relax-4.0.0.Darwin.dmg
+  relax-4.0.0.Darwin.dmg
   d894c25abc73a6ac175cb1bf191d5cea
-  http://download.gna.org/relax/4.0.0/relax-4.0.0.Darwin.dmg.sig; 
title="relax GPG signature">signature
+  signature
   334,077,536
 
 
-  http://download.gna.org/relax/4.0.0/relax-4.0.0.src.tar.bz2; 
title="relax">relax-4.0.0.src.tar.bz2
+  relax-4.0.0.src.tar.bz2
   8820a6deb987017b072e49378b5f6f92
-  http://download.gna.org/relax/4.0.0/relax-4.0.0.src.tar.bz2.sig; 
title="relax GPG signature">signature
+  signature
   105,659,752
 
 
-  http://download.gna.org/relax/4.0.0/relax-4.0.0.src.zip; 
title="relax">relax-4.0.0.src.zip
+  relax-4.0.0.src.zip
   3ce9533638cd09305bc156c843448c48
-  http://download.gna.org/relax/4.0.0/relax-4.0.0.src.zip.sig; title="relax 
GPG signature">signature
+  signature
   111,676,490
 
   



r28299 - /website/links.html

2016-11-16 Thread edward
Author: bugman
Date: Wed Nov 16 16:32:07 2016
New Revision: 28299

URL: http://svn.gna.org/viewcvs/relax?rev=28299=rev
Log:
Div box fixes for the http://www.nmr-relax.com/links.html page.


Modified:
website/links.html

Modified: website/links.html
URL: 
http://svn.gna.org/viewcvs/relax/website/links.html?rev=28299=28298=28299=diff
==
--- website/links.html  (original)
+++ website/links.html  Wed Nov 16 16:32:07 2016
@@ -109,6 +109,7 @@
 
 
 
+  
   
   Mailing list archives
 
@@ -143,6 +144,7 @@
 
 
 
+  
   
   Web resources
 
@@ -208,6 +210,7 @@
   
 
 
+
 
   Protein dynamics
 


___
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
relax-commits@gna.org

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits


r28303 - /website/links.html

2016-11-16 Thread edward
Author: bugman
Date: Wed Nov 16 18:44:50 2016
New Revision: 28303

URL: http://svn.gna.org/viewcvs/relax?rev=28303=rev
Log:
The "Protein dynamics" and "relax libraries" sections have been split into a 
"main_box" div box.


Modified:
website/links.html

Modified: website/links.html
URL: 
http://svn.gna.org/viewcvs/relax/website/links.html?rev=28303=28302=28303=diff
==
--- website/links.html  (original)
+++ website/links.html  Wed Nov 16 18:44:50 2016
@@ -210,6 +210,8 @@
 
 
 
+  
+  
 
   Protein dynamics
 


___
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
relax-commits@gna.org

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits


r28302 - /website/links.html

2016-11-16 Thread edward
Author: bugman
Date: Wed Nov 16 18:03:15 2016
New Revision: 28302

URL: http://svn.gna.org/viewcvs/relax?rev=28302=rev
Log:
More div box fixes for http://www.nmr-relax.com/links.html.


Modified:
website/links.html

Modified: website/links.html
URL: 
http://svn.gna.org/viewcvs/relax/website/links.html?rev=28302=28301=28302=diff
==
--- website/links.html  (original)
+++ website/links.html  Wed Nov 16 18:03:15 2016
@@ -109,8 +109,7 @@
 
 
 
-  
-  
+
   Mailing list archives
 
 
@@ -144,8 +143,8 @@
 
 
 
-  
-  
+
+
   Web resources
 
 


___
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
relax-commits@gna.org

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits