Author: bugman
Date: Tue Dec 15 12:06:54 2015
New Revision: 28152

URL: http://svn.gna.org/viewcvs/relax?rev=28152&view=rev
Log:
Ported r28149 to r28151 from the trunk to improve the HTML manual.

The command used was:
svn log -r28149:r28151 svn+ssh://bug...@svn.gna.org/svn/relax/trunk .


Modified:
    tags/4.0.1/docs/devel/Release_Checklist
    tags/4.0.1/docs/latex/find_replicate_titles.py
    tags/4.0.1/docs/latex/frame_order/theory.tex

Modified: tags/4.0.1/docs/devel/Release_Checklist
URL: 
http://svn.gna.org/viewcvs/relax/tags/4.0.1/docs/devel/Release_Checklist?rev=28152&r1=28151&r2=28152&view=diff
==============================================================================
--- tags/4.0.1/docs/devel/Release_Checklist     (original)
+++ tags/4.0.1/docs/devel/Release_Checklist     Tue Dec 15 12:06:54 2015
@@ -205,8 +205,9 @@
         - Vim register:  "v/[ 
,\r\n]^M<80>kl<80>kDi[http://www.nmr-relax.com/manual/^[pa.html ^[pa]^[/user 
function^M",
         - Vim register:  "v/[ 
,\r\n]^M<80>kl<80>kDi[http://www.nmr-relax.com/manual/^[pa.html ^[p/user 
function^M2cwuser function]^[",
         - Then search for "www.nmr-relax.com\/manual\/[a-z0-9_]*\.\|html" and 
replace all '.'.
-    - Make internal links for all relax versions (search for 
"[1-3]\.[0-9]*\.[0-9]*").
-    - Convert all symbols/parameters to use wiki formatting.
+    - Make internal links for all relax versions (vi search for 
"[1-3]\.[0-9]*\.[0-9]*").
+    - Convert all symbols to use wiki formatting.
+    - Convert all model parameters to use the {{:xyz}} parameter template 
infrastructure.
     - Convert all model names to internal wiki links (vi search 
"\<m[0-9]\>\|\<tm[0-9]\>\|No Rex\|R2eff\|LM63\|LM63 3-site\|CR72\|CR72 
full\|IT99\|TSMFK01\|B14\|B14 full\|NS CPMG\|MMQ CR72\|NS 
MMQ\|M61\|DPL94\|TP02\|TAP03\|MP05\|NS R1rho\|BK13").
     - Add as many links as possible to the API documentation (to help users 
dive into the relax code and to help with search engine indexing).  Mediawiki 
syntax highlighting is a significant aid (see 
https://en.wikipedia.org/wiki/Wikipedia:Text_editor_support#Vim).
     - To avoid dead links, perform a final proof that all the links in the 
wiki article are correct by following the links.
@@ -238,6 +239,7 @@
     - Convert internal [[xyz]] wiki links into proper 
[http://wiki.nmr-relax.com/xyz] links.
     - Item references such as bug #7641, task #3122, etc. are automatically 
converted into links.  Savane will replace the links as formatted for the wiki 
to these links, so nothing needs to be done.
     - Remove all symbol formatting ('&', ';', '<sub>', '<sup>', etc.).
+    - Remove all parameter templates.
 
 
 Cross-linking

Modified: tags/4.0.1/docs/latex/find_replicate_titles.py
URL: 
http://svn.gna.org/viewcvs/relax/tags/4.0.1/docs/latex/find_replicate_titles.py?rev=28152&r1=28151&r2=28152&view=diff
==============================================================================
--- tags/4.0.1/docs/latex/find_replicate_titles.py      (original)
+++ tags/4.0.1/docs/latex/find_replicate_titles.py      Tue Dec 15 12:06:54 2015
@@ -67,7 +67,7 @@
                 # Loop over the file contents.
                 for line in lines:
                     # Skip everything that is not a chapter or section.
-                    if not (search("\\\\chapter{", line) or 
search("\\\\section{", line) or search("\\\\subsection{", line)):
+                    if not (search("\\\\chapter", line) or 
search("\\\\section", line) or search("\\\\subsection", line)):
                         continue
 
                     # Strip off the newline character.
@@ -77,8 +77,13 @@
                     if search(' \\\\label', line):
                         line = line[:line.index(' \label')]
 
-                    # Extract the title string by finding the first '{' and 
chop off the final '}'.
-                    title = line[line.index('{')+1:-1]
+                    # Extract the short title string, if it exists.
+                    if '[' in line:
+                        title = line[line.index('[')+1:line.index(']')]
+
+                    # Extract the full title string by finding the first '{' 
and chop off the final '}'.
+                    else:
+                        title = line[line.index('{')+1:-1]
 
                     # Is the title new?
                     if not title in self.titles:

Modified: tags/4.0.1/docs/latex/frame_order/theory.tex
URL: 
http://svn.gna.org/viewcvs/relax/tags/4.0.1/docs/latex/frame_order/theory.tex?rev=28152&r1=28151&r2=28152&view=diff
==============================================================================
--- tags/4.0.1/docs/latex/frame_order/theory.tex        (original)
+++ tags/4.0.1/docs/latex/frame_order/theory.tex        Tue Dec 15 12:06:54 2015
@@ -6,10 +6,10 @@
 
 
 
-% Frame order.
-%~~~~~~~~~~~~~
-
-\subsection{Frame order}
+% Frame order introduction.
+%~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+\subsection{Frame order introduction}
 
 
 


_______________________________________________
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

Reply via email to