Skip to content

Commit

Permalink
Final changes before release
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgammon committed Apr 20, 2014
1 parent 898f489 commit 3c165dc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions generate_documentation.lua
Expand Up @@ -43,7 +43,7 @@ function FixupEscapeSequences (s)
return s
end -- function FixupEscapeSequences

fi = assert (io.open ("\\\\10.0.0.222\\general\\documentation.sql", "r"))
fi = assert (io.open ("\\\\10.0.0.2\\general\\documentation.sql", "r"))

fo = assert (io.open ("documentation_fixed.sql", "w"))

Expand All @@ -65,8 +65,8 @@ while line do
--line = string.gsub (line, "\\'", "''")

-- get rid of enum
line = string.gsub (line, " `type_of_object` enum%('Method','Property'%) NOT NULL default 'Method',",
" `type_of_object` varchar(10) NOT NULL default 'Method',")
line = string.gsub (line, " `type_of_object` enum%('Method','Property'%) NOT NULL DEFAULT 'Method',",
" `type_of_object` varchar(10) NOT NULL DEFAULT 'Method',")

-- get rid of comma here
line = string.gsub (line, " UNIQUE %(`doc_name`,`xref_name`%),",
Expand Down
7 changes: 3 additions & 4 deletions how_to_release.txt
Expand Up @@ -26,15 +26,14 @@ HELP GENERATION

GENERATE DOCUMENTATION SQL FROM DATABASE

1. On Ubuntu server, run this:
1. On Linux server, run this:
cd ~/from_fs
. dumpdoc.sh

(Must be done on Ubuntu server, to make documentation.sql available for install step below)


UPLOAD AND INSTALL DOCUMENTATION

1. On Ubuntu server, upload:
1. On Linux server, upload:

sftp username@gammon.com.au
cd sql
Expand Down
3 changes: 2 additions & 1 deletion install/readme.txt
@@ -1,7 +1,8 @@
MUSHclient version 4.92
=======================

Thursday, 17th October 2013
Sunday, 20th April 2014


Author: Nick Gammon
Web support: http://www.gammon.com.au/forum/
Expand Down

0 comments on commit 3c165dc

Please sign in to comment.