ソースを参照

Fixed Lua capitialization

Thomas Davis 12 年 前
コミット
89d5207904
8 ファイル変更15 行追加15 行削除
  1. 4 4
      LICENSE.md
  2. 1 1
      Makefile
  3. 1 1
      Makefile.deprecated
  4. 2 2
      RELEASE_NOTES.md
  5. 1 1
      contrib/buildroot/Config.in
  6. 2 2
      docs/Building.md
  7. 2 2
      docs/Embedding.md
  8. 2 2
      docs/Installing.md

+ 4 - 4
LICENSE.md

@@ -31,10 +31,10 @@ Civetweb License
 > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 > THE SOFTWARE.
 
-LUA License
+Lua License
 ------
 
-### Included only if built with LUA support.
+### Included only if built with Lua support.
 
 http://www.lua.org/license.html
 
@@ -49,7 +49,7 @@ http://www.lua.org/license.html
 SQLite3 License
 ------
 
-### Included only if built with LUA support.
+### Included only if built with Lua support.
 
 http://www.sqlite.org/copyright.html
 
@@ -65,7 +65,7 @@ http://www.sqlite.org/copyright.html
 lsqlite3 License
 ------
 
-### Included only if built with LUA support.
+### Included only if built with Lua support.
 
 > lsqlite3                                                              
 > Copyright (C) 2002-2007 Tiago Dionizio, Doug Currie                   

+ 1 - 1
Makefile

@@ -105,7 +105,7 @@ help:
 	@echo "make slib                build a shared library"
 	@echo ""
 	@echo " Make Options"
-	@echo "   WITH_LUA=1            build with LUA support"
+	@echo "   WITH_LUA=1            build with Lua support"
 	@echo "   WITH_DEBUG=1          build with GDB debug support"
 	@echo "   WITH_IPV6=1           with IPV6 support"
 	@echo "   WITH_WEBSOCKET=1      build with web socket support"

+ 1 - 1
Makefile.deprecated

@@ -114,7 +114,7 @@ all:
 lua.lib: $(LUA_WINOBJS)
 	$(MSVC)/bin/lib /out:$@ $(LUA_WINOBJS)
 
-# To build with lua, make sure you have Lua unpacked into src/third_party/lua-5.2.1 directory
+# To build with Lua, make sure you have Lua unpacked into src/third_party/lua-5.2.2 directory
 linux_lua: $(ALL_OBJECTS)
 	$(CC) $(ALL_OBJECTS) -o $(PROG) -ldl
 

+ 2 - 2
RELEASE_NOTES.md

@@ -44,7 +44,7 @@ Changes
 
 - Reorangized build directories to make them more intuitive
 - Added new build rules for lib and slib with option to include C++ class
-- Upgraded LUA from 5.2.1 to 5.2.2
+- Upgraded Lua from 5.2.1 to 5.2.2
 - Added fallback configuration file path for Linux systems.
     + Good for having a system wide default configuration /usr/local/etc/civetweb.conf
 - Added new C++ abstraction class CivetServer
@@ -63,7 +63,7 @@ Changes
      + Removed yaSSL from the OSX build, not needed.
 - Added new Visual Studio projects for Windows builds.
      + Removed Windows support from Makefiles
-     + Provided additional, examples with LUA, and another with yaSSL. 
+     + Provided additional, examples with Lua, and another with yaSSL. 
 - Changed Zombie Reaping policy to not ignore SIGCHLD.
      + The previous method caused trouble in applciations that spawn children.
 

+ 1 - 1
contrib/buildroot/Config.in

@@ -2,7 +2,7 @@ config BR2_PACKAGE_CIVETWEB
 	bool "civetweb"
 	depends on BR2_TOOLCHAIN_HAS_THREADS
 	help
-	  Full featured embedded web server with LUA support.
+	  Full featured embedded web server with Lua support.
 	  
 	  https://sourceforge.net/projects/civetweb
 

+ 2 - 2
docs/Building.md

@@ -63,7 +63,7 @@ make build WITH_LUA=1
 
 | Make Options              | Description                              |
 | ------------------------- | ---------------------------------------- |
-| WITH_LUA=1                | build with LUA support                   |
+| WITH_LUA=1                | build with Lua support                   |
 | WITH_DEBUG=1              | build with GDB debug support             |
 | WITH_IPV6=1               | with IPV6 support                        |
 | WITH_WEBSOCKET=1          | build with web socket support            |
@@ -93,7 +93,7 @@ make build COPT="-DNDEBUG -DNO_CGI"
 | NO_CGI                    | disable CGI support                  |
 | NO_SSL                    | disable SSL functionality            |
 | NO_SSL_DL                 | link against system libssl library   |
-| SQLITE_DISABLE_LFS        | disables large files (LUA only)      |
+| SQLITE_DISABLE_LFS        | disables large files (Lua only)      |
 
 ## Cross Compiling
 

+ 2 - 2
docs/Embedding.md

@@ -48,10 +48,10 @@ By default, the server will automatically serve up files like a normal HTTP serv
   - Use contructor options to select the port and document root among other things.
   - Use constructor callbacks to add your own hooks.
 
-LUA Support
+Lua Support
 ------
 
-LUA is a server side include functionality.  Files ending in .la will be processed with LUA.
+Lua is a server side include functionality.  Files ending in .la will be processed with Lua.
 
 ##### Add the following CFLAGS
 

+ 2 - 2
docs/Installing.md

@@ -6,7 +6,7 @@ This guide covers the distributions for CivetWeb.  The latest source code is ava
 Windows
 ---
 
-This pre-built version comes pre-built wit LUA support.  There is no SSL support included due to licensing restrictions; however, users can build Civetwab SSL themselves.
+This pre-built version comes pre-built wit Lua support.  There is no SSL support included due to licensing restrictions; however, users can build Civetwab SSL themselves.
  
 1. Install the [Visual C++ Redistributable for Visual Studio 2012](http://www.microsoft.com/en-us/download/details.aspx?id=30679)
 2. Download latest *civetweb64_setup.msi* (64 bit) or *civetweb32_setup.msi* (32 bit) from [SourceForge](https://sourceforge.net/projects/civetweb/files/)
@@ -17,7 +17,7 @@ This pre-built version comes pre-built wit LUA support.  There is no SSL support
 OS X
 ---
 
-This pre-built version comes with LUA, IPV6 and SSL support.
+This pre-built version comes with Lua, IPV6 and SSL support.
 
 1. Download the latest *Civetweb.dmg* from [SourceForge](https://sourceforge.net/projects/civetweb/files/)
 2. Click on the it and look for the attachment in the finder.