瀏覽代碼

HUE-288: There are some typos in text files.

Bruce Mitchener 15 年之前
父節點
當前提交
f37abd2f51

+ 1 - 1
README.rst

@@ -115,7 +115,7 @@ Now Hue should be running on http://localhost:8000.
 
 Setting up Hadoop
 =================
-In order to start up a pseudodistributed cluster with the plugins enabled,
+In order to start up a pseudo-distributed cluster with the plugins enabled,
 run::
 
     $ ./tools/scripts/configure-hadoop.sh all

+ 1 - 1
README.testing

@@ -35,7 +35,7 @@ See apps/hello/src/hello/hello_test.py for an example.
 Helpful command-line tricks
 ===========================
 
-To run tests that do no depend on Hadoop, use:
+To run tests that do not depend on Hadoop, use:
   build/env/bin/hue test fast
 
 To run all tests, use:

+ 1 - 1
docs/manual.txt

@@ -80,7 +80,7 @@ $ HADOOP_HOME=/path/to/hadoop-0.20 PREFIX=/path/to/install/into make install
 ----
 
 You can install Hue anywhere on your system - it does not need root permission
-although additional thirdparty SDK applications may.
+although additional third-party SDK applications may.
 It is a good practice to create a new user for Hue and either install Hue in
 that user's home directory, or in a directory within `/usr/local`.
 

+ 2 - 2
docs/release-notes/release-notes-0.4.0.txt

@@ -78,7 +78,7 @@ IMPROVEMENTS
 
 - Usage without Hadoop
 
-  Cloudera Desktop will run if Hadoop is unavaible, though
+  Cloudera Desktop will run if Hadoop is unavailable, though
   some applications will be limited in functionality.
 
 - Frontend Javascript Performance and Compatibility
@@ -101,7 +101,7 @@ KEY BUG FIXES
 
 KNOWN BUGS
 
-- After a succesful upload with Linux's flash player (which may warn you about
+- After a successful upload with Linux's flash player (which may warn you about
   hanging your computer), the upload screen does not clear.  Click the red
   (x) button to clear it.
 

+ 2 - 2
docs/release-notes/release-notes-0.4.1.txt

@@ -9,7 +9,7 @@ KEY BUG FIXES
 - The tarball build now succeeds if a previous version's 
   Cloudera Desktop plugins are installed.
 
-- Error messages are propogated correctly in Python 2.4.
+- Error messages are propagated correctly in Python 2.4.
 
 - Desktop can now run on port 80.
 
@@ -17,6 +17,6 @@ KEY BUG FIXES
 
 KNOWN BUGS
 
-- After a succesful upload with Linux's flash player (which may warn you about
+- After a successful upload with Linux's flash player (which may warn you about
   hanging your computer), the upload screen does not clear.  Click the red
   (x) button to clear it.

+ 1 - 1
docs/release-notes/release-notes-1.0.txt

@@ -24,7 +24,7 @@ browsers. To highlight some other key areas:
 * Improved documentation.
 
 
-Application Compatability
+Application Compatibility
 -------------------------
 
 The Hadoop file system library (+hadoop.fs.hadoopfs+) now takes and returns

+ 1 - 1
docs/release-notes/release-notes-1.1.0.txt

@@ -35,7 +35,7 @@ will not work.
 * The default port for the namenode plugins has changed from 9090 to 10090.
 
 
-Application Compatability
+Application Compatibility
 -------------------------
 The core Hadoop communication layer (to HDFS and JobTracker) now has support
 for passing security credentials. A few low level APIs have changed, but most

+ 3 - 3
docs/sdk/sdk.md

@@ -722,7 +722,7 @@ You can see we register our application with HUE. This does several things, but
 		Calculator : {
 			name : 'calculator',
 
-The name is declared twice. The first time you declare it it's a property of the object we pass to the register method. The name here has to be a string with no spaces or punctuation (other than underscores). Typically it's a mixed case value, but it doesn't really matter as the user never sees it. It is a key that you'll use if you do a lot of customizing and debugging though, and it also is used as the CCS class your app is given (like ".calculator").
+The name is declared twice. The first time you declare it it's a property of the object we pass to the register method. The name here has to be a string with no spaces or punctuation (other than underscores). Typically it's a mixed case value, but it doesn't really matter as the user never sees it. It is a key that you'll use if you do a lot of customizing and debugging though, and it also is used as the CSS class your app is given (like ".calculator").
 
 The second line though, "name: 'app_name'" defines the value that users see. You'll probably want to customize this. For example, the app key for the file browser is "FileBrowser" but the name defined for the users is "File Browser". This name shows up, for example, when the user mouses over the icon in the dock.
 
@@ -772,7 +772,7 @@ We'll talk a bit more about JavaScript in a bit, but one of the things the HUE S
 * Tool tips
 * etc
 
-Adding these kinds of things to your application require only that you use prescribed DOM structures with specific attributes. For example, let's say you wanted to have a sortable table in your response. All that you would need to do is write your template to output your table with the following HTML structure:
+Adding these kinds of things to your application requires only that you use prescribed DOM structures with specific attributes. For example, let's say you wanted to have a sortable table in your response. All that you would need to do is write your template to output your table with the following HTML structure:
 
 	<table class="ccs-data_table selectable sortable" cellpadding="0" cellspacing="0">
 		<thead>
@@ -965,7 +965,7 @@ If you're going to dive into JavaScript, you'll want to familiarize yourself wit
 
 #### Extending CCS.JBrowser
 
-The default boostrap for your application invokes your app like this:
+The default bootstrap for your application invokes your app like this:
 
 	return new Calculator(path || '/calculator/', options);