doc: rename node.1 -> iojs.1
authorBen Noordhuis <info@bnoordhuis.nl>
Fri, 2 Jan 2015 16:07:43 +0000 (17:07 +0100)
committerBen Noordhuis <info@bnoordhuis.nl>
Thu, 8 Jan 2015 22:21:12 +0000 (23:21 +0100)
PR-URL: https://github.com/iojs/io.js/pull/262
Reviewed-By: Bert Belder <bertbelder@gmail.com>
Makefile
doc/iojs.1 [moved from doc/node.1 with 99% similarity]
tools/install.py

index d8d2407..27ffb11 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -314,7 +314,7 @@ $(PKG): release-only
 $(TARBALL): release-only $(NODE_EXE) doc
        git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -
        mkdir -p $(TARNAME)/doc/api
-       cp doc/node.1 $(TARNAME)/doc/node.1
+       cp doc/iojs.1 $(TARNAME)/doc/iojs.1
        cp -r out/doc/api/* $(TARNAME)/doc/api/
        rm -rf $(TARNAME)/deps/v8/test # too big
        rm -rf $(TARNAME)/doc/images # too big
similarity index 99%
rename from doc/node.1
rename to doc/iojs.1
index a381dcf..3388c56 100644 (file)
@@ -107,7 +107,7 @@ If set to 1 then colors will not be used in the REPL.
   --crankshaft (use crankshaft)
         type: bool  default: true
   --hydrogen_filter (optimization filter)
-        type: string  default: 
+        type: string  default:
   --use_range (use hydrogen range analysis)
         type: bool  default: true
   --eliminate_dead_phis (eliminate dead phis)
@@ -385,9 +385,9 @@ If set to 1 then colors will not be used in the REPL.
   --debugger_port (Port to use for remote debugging)
         type: int  default: 5858
   --map_counters (Map counters to a file)
-        type: string  default: 
+        type: string  default:
   --js_arguments (Pass all remaining arguments to the script. Alias for "--".)
-        type: arguments  default: 
+        type: arguments  default:
   --debug_compile_events (Enable debugger compile events)
         type: bool  default: true
   --debug_script_collected_events (Enable debugger script collected events)
@@ -399,7 +399,7 @@ If set to 1 then colors will not be used in the REPL.
   --gdbjit_dump (dump elf objects with debug info to disk)
         type: bool  default: false
   --gdbjit_dump_filter (dump only objects containing this substring)
-        type: string  default: 
+        type: string  default:
   --force_marking_deque_overflows (force overflows of marking deque by reducing its size to 64 words)
         type: bool  default: false
   --stress_compaction (stress the GC compactor to flush out bugs (implies --force_marking_deque_overflows))
index c99dc15..77e6d0c 100755 (executable)
@@ -137,9 +137,9 @@ def files(action):
   action(['src/node.stp'], 'share/systemtap/tapset/')
 
   if 'freebsd' in sys.platform or 'openbsd' in sys.platform:
-    action(['doc/node.1'], 'man/man1/')
+    action(['doc/iojs.1'], 'man/man1/')
   else:
-    action(['doc/node.1'], 'share/man/man1/')
+    action(['doc/iojs.1'], 'share/man/man1/')
 
   if 'true' == variables.get('node_install_npm'): npm_files(action)