File: 0001-doc-remove-SourceForge-logo.patch

package info (click to toggle)
simpleparse 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,336 kB
  • ctags: 1,349
  • sloc: python: 6,420; ansic: 5,855; makefile: 2
file content (88 lines) | stat: -rw-r--r-- 6,136 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
From e9bf55f2d14d538775432c276b565d43b14b671c Mon Sep 17 00:00:00 2001
From: Vincent Bernat <vincent@bernat.im>
Date: Sun, 25 Dec 2016 11:01:51 +0100
Subject: doc: remove SourceForge logo

---
 doc/common_problems.html           | 6 ------
 doc/index.html                     | 3 ---
 doc/processing_result_trees.html   | 6 ------
 doc/scanning_with_simpleparse.html | 5 -----
 doc/simpleparse_grammars.html      | 5 +----
 5 files changed, 1 insertion(+), 24 deletions(-)

diff --git a/doc/common_problems.html b/doc/common_problems.html
index 97176bc3f2b0..e67885b959da 100644
--- a/doc/common_problems.html
+++ b/doc/common_problems.html
@@ -133,12 +133,6 @@ tag-lists
 </ul>
  <a href="index.html">Up to index...</a><br>
          
-<p align="center">A <a href="http://sourceforge.net"> <img
- src="http://sourceforge.net/sflogo.php?group_id=55673&amp;type=5"
- width="210" height="62" border="0" alt="SourceForge Logo">
-   </a><br>
-   Open Source <a href="http://simpleparse.sourceforge.net/">project</a><br>
- </p>
  <br>
 </body>
 </html>
diff --git a/doc/index.html b/doc/index.html
index 617253bde90e..205e3b9ad0da 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -339,7 +339,4 @@ OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
 TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 PERFORMANCE OF THIS SOFTWARE!</p>
-<p align="center">A <a href="http://sourceforge.net"> <img alt="SourceForge Logo" src="http://sourceforge.net/sflogo.php?group_id=55673&amp;type=5" border="0" height="62" width="210"></a><br>
-Open Source <a href="http://simpleparse.sourceforge.net/">project</a><br>
-</p>
 </body></html>
diff --git a/doc/processing_result_trees.html b/doc/processing_result_trees.html
index 9666febd7f8e..96c05054d49f 100644
--- a/doc/processing_result_trees.html
+++ b/doc/processing_result_trees.html
@@ -227,12 +227,6 @@ results    tree has a non-standard format that you need to explicitly watch
 out for   while processing the results.</p>
              <a href="index.html">Up to index...</a><br>
              
-<p align="center">A <a href="http://sourceforge.net"> <img
- src="http://sourceforge.net/sflogo.php?group_id=55673&amp;type=5"
- width="210" height="62" border="0" alt="SourceForge Logo">
-         </a><br>
-          Open Source <a href="http://simpleparse.sourceforge.net/">project</a><br>
-    </p>
     <br>
    <br>
   <br>
diff --git a/doc/scanning_with_simpleparse.html b/doc/scanning_with_simpleparse.html
index 014b943fc179..9a3fa3771cca 100644
--- a/doc/scanning_with_simpleparse.html
+++ b/doc/scanning_with_simpleparse.html
@@ -142,10 +142,5 @@ results
 tree in <a href="./processing_result_trees.html">Processing Result
 Trees</a>.</p>
 <a href="index.html">Up to index...</a><br>
-<p align="center">A <a href="http://sourceforge.net"> <img
- src="http://sourceforge.net/sflogo.php?group_id=55673&amp;type=5"
- width="210" height="62" border="0" alt="SourceForge Logo"></a><br>
-Open Source <a href="http://simpleparse.sourceforge.net/">project</a><br>
-</p>
 </body>
 </html>
diff --git a/doc/simpleparse_grammars.html b/doc/simpleparse_grammars.html
index 72c04add4b23..4b47b3b25b90 100644
--- a/doc/simpleparse_grammars.html
+++ b/doc/simpleparse_grammars.html
@@ -502,7 +502,4 @@ the grammar used during parser generation is a manually generated
 version found in the simpleparse.simpleparsegrammar module.</p>
 <pre>declaration = r"""declarationset      :=  declaration+<br>declaration         :=  ts, (unreportedname/expandedname/name) ,ts,':',':'?,'=',seq_group<br><br>element_token       :=  lookahead_indicator?, ts, negpos_indicator?,ts, (literal/range/group/name),ts, occurence_indicator?, ts, error_on_fail?<br><br>negpos_indicator    :=  [-+]<br>lookahead_indicator :=  "?"<br>occurence_indicator :=  [+*?]<br>error_on_fail       :=  "!", (ts,literal)?<br><br>&gt;group&lt;             :=  '(',seq_group, ')'<br>seq_group           :=  ts,(error_on_fail/fo_group/element_token),<br>                          (ts, seq_indicator, ts,<br>                              (error_on_fail/fo_group/element_token)<br>                          )*, ts<br><br>fo_group            :=  element_token, (ts, fo_indicator, ts, element_token)+<br><br><br># following two are likely something peoples might want to<br># replace in many instances...<br>&lt;fo_indicator&gt;      :=  "/"<br>&lt;seq_indicator&gt;     :=  ','<br><br>unreportedname      :=  '&lt;', name, '&gt;'<br>expandedname        :=  '&gt;', name, '&lt;'<br>name                :=  [a-zA-Z_],[a-zA-Z0-9_]*<br>&lt;ts&gt;                :=  ( [ \011-\015]+ / comment )*<br>comment             :=  '#',-'\n'*,'\n'<br>literal             :=  literalDecorator?,("'",(CHARNOSNGLQUOTE/ESCAPEDCHAR)*,"'")  /  ('"',(CHARNODBLQUOTE/ESCAPEDCHAR)*,'"')<br>literalDecorator    :=  [c]<br><br><br><br>range               :=  '[',CHARBRACE?,CHARDASH?, (CHARRANGE/CHARNOBRACE)*, CHARDASH?,']'<br>CHARBRACE           :=  ']'<br>CHARDASH            :=  '-'<br>CHARRANGE           :=  CHARNOBRACE, '-', CHARNOBRACE<br>CHARNOBRACE         :=  ESCAPEDCHAR/CHAR<br>CHAR                :=  -[]]<br>ESCAPEDCHAR         :=  '\\',( SPECIALESCAPEDCHAR / ('x',HEXESCAPEDCHAR) / ("u",UNICODEESCAPEDCHAR_16) /("U",UNICODEESCAPEDCHAR_32)/OCTALESCAPEDCHAR  )<br>SPECIALESCAPEDCHAR  :=  [\\abfnrtv"']<br>OCTALESCAPEDCHAR    :=  [0-7],[0-7]?,[0-7]?<br>HEXESCAPEDCHAR      :=  [0-9a-fA-F],[0-9a-fA-F]<br>CHARNODBLQUOTE      :=  -[\\"]+<br>CHARNOSNGLQUOTE     :=  -[\\']+<br>UNICODEESCAPEDCHAR_16 := [0-9a-fA-F],[0-9a-fA-F],[0-9a-fA-F],[0-9a-fA-F]<br>UNICODEESCAPEDCHAR_32 := [0-9a-fA-F],[0-9a-fA-F],[0-9a-fA-F],[0-9a-fA-F],[0-9a-fA-F],[0-9a-fA-F],[0-9a-fA-F],[0-9a-fA-F]<br>"""<br></pre>
 <a href="index.html">Up to index...</a><br>
-<p align="center">A <a href="http://sourceforge.net"> <img alt="SourceForge Logo" src="http://sourceforge.net/sflogo.php?group_id=55673&amp;type=5" border="0" height="62" width="210"> </a><br>
-Open Source <a href="http://simpleparse.sourceforge.net/">project</a><br>
-</p>
-</body></html>
\ No newline at end of file
+</body></html>