Changeset 34543 for branches/eam_branches/ipp-20120905/dvodist
- Timestamp:
- Oct 24, 2012, 9:14:56 AM (14 years ago)
- Location:
- branches/eam_branches/ipp-20120905/dvodist
- Files:
-
- 8 added
- 3 edited
-
INSTALL (added)
-
Makefile.in (added)
-
configure (added)
-
configure.tcsh (added)
-
scripts/mkdist.20120606.sh (added)
-
www-root/help.php (added)
-
www-root/help.txt (modified) (3 diffs)
-
www-root/index.php (modified) (2 diffs)
-
www-root/test.php (added)
-
www-root/test2.php (added)
-
www-util/ipp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20120905/dvodist/www-root/help.txt
r33986 r34543 1 <?php include "test2.php"; ?> 2 1 3 <h2>DVO Distribution Help</h2> 2 4 … … 4 6 download entire databases with the 'wget' command. It is necessary to 5 7 include an authorized user and the password.</p> 6 7 8 8 9 Use a wget command on the directory of interest, eg: … … 12 13 Ask your DRAVG representative if you need the password. 13 14 15 ### Header 3 16 > This is a blockquote 17 > more blockquote 18 19 The overriding design goal for Markdown's formatting syntax is to make 20 it as readable as possible. The idea is that a Markdown-formatted 21 document should be publishable as-is, as plain text, without looking 22 like it's been marked up with tags or formatting instructions. While 23 Markdown's syntax has been influenced by several existing text-to-HTML 24 filters, the single biggest source of inspiration for Markdown's 25 syntax is the format of plain text email. 26 27 The best way to get a feel for Markdown's formatting syntax is simply 28 to look at a Markdown-formatted document. For example, you can view 29 the Markdown source for the article text on this page here: 30 <http://daringfireball.net/projects/markdown/index.text> 31 32 (You can use this '.text' suffix trick to view the Markdown source for 33 the content of each of the pages in this section, e.g. the 34 [Syntax][s_src] and [License][l_src] pages.) 35 36 [s_src]: /projects/markdown/syntax.text 37 [l_src]: /projects/markdown/license.text 38 39 Markdown is free software, available under a BSD-style open source 40 license. See the [License] [pl] page for more information. 41 42 [pl]: /projects/markdown/license 43 44 45 Discussion List <a id="discussion-list" /> 46 --------------- 47 48 I've set up a public [mailing list for discussion about Markdown] [ml]. 49 Any topic related to Markdown -- both its formatting syntax and 50 its software -- is fair game for discussion. Anyone who is interested 51 is welcome to join. 52 53 It's my hope that the mailing list will lead to good ideas for future 54 improvements to Markdown. 55 56 [ml]: http://six.pairlist.net/mailman/listinfo/markdown-discuss 57 -
branches/eam_branches/ipp-20120905/dvodist/www-root/index.php
r33986 r34543 4 4 5 5 include "$utils/ipp.php"; 6 include_once "$utils/markdown.php"; 6 7 7 8 // if we come in directly, the top-level directory should be /dvodist … … 30 31 31 32 if ($script == "help.php") { 32 verbatim ("help.txt"); 33 do_markdown ("help.txt"); 34 // verbatim ("help.txt"); 33 35 } 34 36 -
branches/eam_branches/ipp-20120905/dvodist/www-util/ipp.php
r33986 r34543 165 165 // loop over the lines in the file and generate lines in the menu 166 166 while ($line = fgets ($file, 1024)) { 167 echo "line: $line<br>\n"; 167 168 if (strlen($line) < 2) { 168 169 if (!$addbreak) { … … 177 178 } 178 179 fclose ($file); 180 } 181 182 function do_markdown ($source) { 183 $file = fopen ($source, "r"); 184 185 // loop over the lines in the file and generate lines in the menu 186 $ascii = ""; 187 while ($line = fgets ($file, 1024)) { 188 $ascii .= $line; 189 } 190 fclose ($file); 191 $my_html = Markdown($ascii); 192 echo "$my_html"; 179 193 } 180 194
Note:
See TracChangeset
for help on using the changeset viewer.
