[jira] [Updated] (CASSANDRA-14955) Website can be built without nodetool documentation by accident

2019-01-06 Thread mck (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-14955?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

mck updated CASSANDRA-14955:

Resolution: Fixed
Status: Resolved  (was: Patch Available)

Committed as 1850613 and 
[c68b0fe|https://github.com/apache/cassandra/commit/c68b0fec6f7034aa74e64abd9859ee1d481b4f62].

Thanks [~jolynch]!

> Website can be built without nodetool documentation by accident
> ---
>
> Key: CASSANDRA-14955
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14955
> Project: Cassandra
>  Issue Type: Bug
>  Components: Documentation/Website
>Reporter: Joseph Lynch
>Assignee: Joseph Lynch
>Priority: Minor
> Fix For: 4.0
>
> Attachments: 14955-cassandra-site-svn.patch, 14955-trunk.txt
>
>
> While [~m...@thelastpickle.com] was generating docs today we accidentally 
> pushed empty nodetool docs because the {{make website}} target doesn't fail 
> if nodetool fails to run. We believe that this is due to the line in 
> [gen-nodetool-docs.py|https://github.com/apache/cassandra/blob/trunk/doc/gen-nodetool-docs.py#L39]
>  which uses subprocess.call instead of check_call.
> Let's make it so that if you try to build docs without nodetool being 
> available the build should fail so that we cant make the same mistake again.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



svn commit: r1850613 - /cassandra/site/src/Makefile

2019-01-06 Thread mck
Author: mck
Date: Mon Jan  7 07:06:38 2019
New Revision: 1850613

URL: http://svn.apache.org/viewvc?rev=1850613=rev
Log:
Build nodetool jarfile in $CASSANDRA_DIR before running `python 
gen-nodetool-docs.py`

 Patch by Joey Lynch; reviewed by Mick Semb Wever for CASSANDRA-14955

Modified:
cassandra/site/src/Makefile

Modified: cassandra/site/src/Makefile
URL: 
http://svn.apache.org/viewvc/cassandra/site/src/Makefile?rev=1850613=1850612=1850613=diff
==
--- cassandra/site/src/Makefile (original)
+++ cassandra/site/src/Makefile Mon Jan  7 07:06:38 2019
@@ -21,6 +21,8 @@ endif
 # Not declaring DOC_VERSION at top-level cause it calls ant and that's 
stupidly slow
$(eval DOC_VERSION=$(shell echo `cd $(CASSANDRA_DOC_DIR)/..; ant 
echo-base-version | grep '\[echo\]' | awk '{print $$2}'`))
$(eval DOC_DIR="doc/$(DOC_VERSION)")
+   # Nodetool docs are autogenerated, but that needs nodetool to be built
+   @cd $(CASSANDRA_DIR); ant jar
@cd $(CASSANDRA_DOC_DIR); make website
@if [ -d $(DOC_DIR) ]; then rm -rf $(DOC_DIR); fi
@cp -r $(CASSANDRA_DOC_DIR)/build/html $(DOC_DIR)



-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



cassandra git commit: Prevent building website without nodetool docs

2019-01-06 Thread mck
Repository: cassandra
Updated Branches:
  refs/heads/trunk 77125b76c -> c68b0fec6


Prevent building website without nodetool docs

 Patch by Joey Lynch; reviewed by Mick Semb Wever for CASSANDRA-14955


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/c68b0fec
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/c68b0fec
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/c68b0fec

Branch: refs/heads/trunk
Commit: c68b0fec6f7034aa74e64abd9859ee1d481b4f62
Parents: 77125b7
Author: Mick Semb Wever 
Authored: Mon Jan 7 17:49:32 2019 +1100
Committer: Mick Semb Wever 
Committed: Mon Jan 7 17:49:32 2019 +1100

--
 doc/gen-nodetool-docs.py | 31 ---
 1 file changed, 20 insertions(+), 11 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cassandra/blob/c68b0fec/doc/gen-nodetool-docs.py
--
diff --git a/doc/gen-nodetool-docs.py b/doc/gen-nodetool-docs.py
index e3862f7..2ea125a 100644
--- a/doc/gen-nodetool-docs.py
+++ b/doc/gen-nodetool-docs.py
@@ -13,33 +13,42 @@
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
-
 """
 A script to use nodetool to generate documentation for nodetool
 """
+from __future__ import print_function
 
 import os
 import re
 import subprocess
-from subprocess import PIPE, Popen
+from subprocess import PIPE
+from subprocess import Popen
+
 
 nodetool = "../bin/nodetool"
 outdir = "source/tools/nodetool"
 helpfilename = outdir + "/nodetool.txt"
 command_re = re.compile("()([_a-z]+)")
-commandRSTContent = ".. 
_nodetool_{0}:\n\n{0}\n---\n\nUsage\n-\n\n.. include:: {0}.txt\n  
:literal:\n\n"
+commandRSTContent = ".. _nodetool_{0}:\n\n{0}\n{1}\n\nUsage\n-\n\n.. 
include:: {0}.txt\n  :literal:\n\n"
 
 # create the documentation directory
 if not os.path.exists(outdir):
 os.makedirs(outdir)
 
 # create the base help file to use for discovering the commands
-def createHelpfile():
-with open(helpfilename, "w+") as file:
-subprocess.call([nodetool, "help"], stdout=file)
+def create_help_file():
+with open(helpfilename, "w+") as output_file:
+try:
+subprocess.check_call([nodetool, "help"], stdout=output_file)
+except subprocess.CalledProcessError as cpe:
+print(
+'ERROR: Nodetool failed to run, you likely need to build '
+'cassandra using ant jar from the top level directory'
+)
+raise cpe
 
 # for a given command, create the help file and an RST file to contain it
-def createRST(command):
+def create_rst(command):
 if command:
 cmdName = command.group(0).strip()
 cmdFilename = outdir + "/" + cmdName + ".txt"
@@ -49,15 +58,15 @@ def createRST(command):
 (out, err) = proc.communicate()
 cmdFile.write(out)
 with open(rstFilename, "w+") as rstFile:
-rstFile.write(commandRSTContent.format(cmdName))
+rstFile.write(commandRSTContent.format(cmdName, '-' * 
len(cmdName)))
 
 # create base file
-createHelpfile()
+create_help_file()
 
 # create the main usage page
 with open(outdir + "/nodetool.rst", "w+") as output:
 with open(helpfilename, "r+") as helpfile:
-output.write(".. 
_nodetool\n\nNodetool\n---\n\nUsage\n-\n\n")
+output.write(".. 
_nodetool\n\nNodetool\n\n\nUsage\n-\n\n")
 for commandLine in helpfile:
 command = command_re.sub(r'\n\1:doc:`\2` - ',commandLine)
 output.write(command)
@@ -66,4 +75,4 @@ with open(outdir + "/nodetool.rst", "w+") as output:
 with open(helpfilename, "rw+") as helpfile:
 for commandLine in helpfile:
 command = command_re.match(commandLine)
-createRST(command)
+create_rst(command)


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-14955) Website can be built without nodetool documentation by accident

2019-01-06 Thread Joseph Lynch (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-14955?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Lynch updated CASSANDRA-14955:
-
Fix Version/s: 4.0
   Status: Patch Available  (was: Open)

> Website can be built without nodetool documentation by accident
> ---
>
> Key: CASSANDRA-14955
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14955
> Project: Cassandra
>  Issue Type: Bug
>  Components: Documentation/Website
>Reporter: Joseph Lynch
>Assignee: Joseph Lynch
>Priority: Minor
> Fix For: 4.0
>
> Attachments: 14955-cassandra-site-svn.patch, 14955-trunk.txt
>
>
> While [~m...@thelastpickle.com] was generating docs today we accidentally 
> pushed empty nodetool docs because the {{make website}} target doesn't fail 
> if nodetool fails to run. We believe that this is due to the line in 
> [gen-nodetool-docs.py|https://github.com/apache/cassandra/blob/trunk/doc/gen-nodetool-docs.py#L39]
>  which uses subprocess.call instead of check_call.
> Let's make it so that if you try to build docs without nodetool being 
> available the build should fail so that we cant make the same mistake again.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Resolved] (CASSANDRA-13907) Versioned documentation on cassandra.apache.org

2019-01-06 Thread mck (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-13907?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

mck resolved CASSANDRA-13907.
-
   Resolution: Fixed
Fix Version/s: 4.0
   3.11.4

Closing off this ticket, as versioned docs now exist on the website.

Only 3.11.3 (3.11) and 4.0 (trunk) are published as they're the only two 
versions that build and have any real difference. That is any version older 
than 3.11 you still end up using 3.11.

And no where links to the 3.11 versioned docs. First step is in CASSANDRA-14954 
that removes the redirect and enables directory listing under 
https://cassandra.apache.org/doc/

Thanks for raising the relationship between the tickets [~muru]!

> Versioned documentation on cassandra.apache.org
> ---
>
> Key: CASSANDRA-13907
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13907
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Legacy/Documentation and Website
>Reporter: Murukesh Mohanan
>Assignee: mck
>Priority: Minor
> Fix For: 3.11.4, 4.0
>
>
> Services like https://readthedocs.org and http://www.javadoc.io/ make it easy 
> to browse the documentation for a particular version or commit of various 
> open source projects. It would be nice to be able to browse the docs for a 
> particular release on http://cassandra.apache.org/doc/.
> Currently it seems only CQL has this at http://cassandra.apache.org/doc/old/.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Assigned] (CASSANDRA-13907) Versioned documentation on cassandra.apache.org

2019-01-06 Thread mck (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-13907?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

mck reassigned CASSANDRA-13907:
---

Assignee: mck

> Versioned documentation on cassandra.apache.org
> ---
>
> Key: CASSANDRA-13907
> URL: https://issues.apache.org/jira/browse/CASSANDRA-13907
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Legacy/Documentation and Website
>Reporter: Murukesh Mohanan
>Assignee: mck
>Priority: Minor
>
> Services like https://readthedocs.org and http://www.javadoc.io/ make it easy 
> to browse the documentation for a particular version or commit of various 
> open source projects. It would be nice to be able to browse the docs for a 
> particular release on http://cassandra.apache.org/doc/.
> Currently it seems only CQL has this at http://cassandra.apache.org/doc/old/.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Comment Edited] (CASSANDRA-14955) Website can be built without nodetool documentation by accident

2019-01-06 Thread Joseph Lynch (JIRA)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-14955?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16735461#comment-16735461
 ] 

Joseph Lynch edited comment on CASSANDRA-14955 at 1/7/19 5:03 AM:
--

I attached a patch to trunk ([^14955-trunk.txt] ) which will fail the 
{{gen-nodetool-docs}} script if the nodetool command fails, tested by running 
{{ant realclean}} and then:
{noformat}
cassandra-site/src » make add-doc   
   2 ↵
make[1]: Entering directory '/home/josephl/pg/cassandra_trunk/doc'
rm -rf build/*
rm -f source/configuration/cassandra_config_file.rst
python convert_yaml_to_rst.py ../conf/cassandra.yaml 
source/configuration/cassandra_config_file.rst
python gen-nodetool-docs.py
Error: Could not find or load main class org.apache.cassandra.tools.NodeTool
ERROR: Nodetool failed to run, you likely need to build cassandra using ant jar 
from the top level directory
Traceback (most recent call last):
  File "gen-nodetool-docs.py", line 64, in 
create_help_file()
  File "gen-nodetool-docs.py", line 48, in create_help_file
raise cpe
subprocess.CalledProcessError: Command '['../bin/nodetool', 'help']' returned 
non-zero exit status 1
Makefile:72: recipe for target 'website' failed
make[1]: *** [website] Error 1
make[1]: Leaving directory '/home/josephl/pg/cassandra_trunk/doc'
Makefile:22: recipe for target '.build-doc' failed
make: *** [.build-doc] Error 2
{noformat}
The other changes are fixing the warning that {{make add-doc}} was emitting 
about the nodetool docs title lengths being wrong, now there are only the TOC 
errors left.

I've also attached a patch to the svn cassandra-site repo ( 
[^14955-cassandra-site-svn.patch]) which will run {{ant jar}} for you 
automatically before building the docs so that the user doesn't have to know 
they need the main repo built first.


was (Author: jolynch):
I attached a patch to trunk ([^14955-trunk.txt] ) which will fail the 
{{gen-nodetool-docs}} script if the nodetool command fails, tested by running 
{{ant realclean}} and then:
{noformat}
cassandra-site/src » make add-doc   
   2 ↵
make[1]: Entering directory '/home/josephl/pg/cassandra_trunk/doc'
rm -rf build/*
rm -f source/configuration/cassandra_config_file.rst
python convert_yaml_to_rst.py ../conf/cassandra.yaml 
source/configuration/cassandra_config_file.rst
python gen-nodetool-docs.py
Error: Could not find or load main class org.apache.cassandra.tools.NodeTool
ERROR: Nodetool failed to run, you likely need to build cassandra using ant jar 
from the top level directory
Traceback (most recent call last):
  File "gen-nodetool-docs.py", line 64, in 
create_help_file()
  File "gen-nodetool-docs.py", line 48, in create_help_file
raise cpe
subprocess.CalledProcessError: Command '['../bin/nodetool', 'help']' returned 
non-zero exit status 1
Makefile:72: recipe for target 'website' failed
make[1]: *** [website] Error 1
make[1]: Leaving directory '/home/josephl/pg/cassandra_trunk/doc'
Makefile:22: recipe for target '.build-doc' failed
make: *** [.build-doc] Error 2
{noformat}
The other changes are fixing the warning that {{make add-doc}} was emitting 
about the nodetool docs, now there are only the TOC errors left.

I've also attached a patch to the svn cassandra-site repo ( 
[^14955-cassandra-site-svn.patch]) which will run {{ant jar}} for you 
automatically before building the docs so that the user doesn't have to know 
they need the main repo built first.

> Website can be built without nodetool documentation by accident
> ---
>
> Key: CASSANDRA-14955
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14955
> Project: Cassandra
>  Issue Type: Bug
>  Components: Documentation/Website
>Reporter: Joseph Lynch
>Assignee: Joseph Lynch
>Priority: Minor
> Attachments: 14955-cassandra-site-svn.patch, 14955-trunk.txt
>
>
> While [~m...@thelastpickle.com] was generating docs today we accidentally 
> pushed empty nodetool docs because the {{make website}} target doesn't fail 
> if nodetool fails to run. We believe that this is due to the line in 
> [gen-nodetool-docs.py|https://github.com/apache/cassandra/blob/trunk/doc/gen-nodetool-docs.py#L39]
>  which uses subprocess.call instead of check_call.
> Let's make it so that if you try to build docs without nodetool being 
> available the build should fail so that we cant make the same mistake again.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: 

[jira] [Comment Edited] (CASSANDRA-14955) Website can be built without nodetool documentation by accident

2019-01-06 Thread Joseph Lynch (JIRA)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-14955?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16735461#comment-16735461
 ] 

Joseph Lynch edited comment on CASSANDRA-14955 at 1/7/19 5:02 AM:
--

I attached a patch to trunk ([^14955-trunk.txt] ) which will fail the 
{{gen-nodetool-docs}} script if the nodetool command fails, tested by running 
{{ant realclean}} and then:
{noformat}
cassandra-site/src » make add-doc   
   2 ↵
make[1]: Entering directory '/home/josephl/pg/cassandra_trunk/doc'
rm -rf build/*
rm -f source/configuration/cassandra_config_file.rst
python convert_yaml_to_rst.py ../conf/cassandra.yaml 
source/configuration/cassandra_config_file.rst
python gen-nodetool-docs.py
Error: Could not find or load main class org.apache.cassandra.tools.NodeTool
ERROR: Nodetool failed to run, you likely need to build cassandra using ant jar 
from the top level directory
Traceback (most recent call last):
  File "gen-nodetool-docs.py", line 64, in 
create_help_file()
  File "gen-nodetool-docs.py", line 48, in create_help_file
raise cpe
subprocess.CalledProcessError: Command '['../bin/nodetool', 'help']' returned 
non-zero exit status 1
Makefile:72: recipe for target 'website' failed
make[1]: *** [website] Error 1
make[1]: Leaving directory '/home/josephl/pg/cassandra_trunk/doc'
Makefile:22: recipe for target '.build-doc' failed
make: *** [.build-doc] Error 2
{noformat}
The other changes are fixing the warning that {{make add-doc}} was emitting 
about the nodetool docs, now there are only the TOC errors left.

I've also attached a patch to the svn cassandra-site repo ( 
[^14955-cassandra-site-svn.patch]) which will run {{ant jar}} for you 
automatically before building the docs so that the user doesn't have to know 
they need the main repo built first.


was (Author: jolynch):
I attached a patch to trunk ([^14955-trunk.txt] ) which will fail the 
{{gen-nodetool-docs}} script if the nodetool command fails, tested by running 
{{ant realclean}} and then:
{noformat}
cassandra-site/src » make add-doc   
   2 ↵
make[1]: Entering directory '/home/josephl/pg/cassandra_trunk/doc'
rm -rf build/*
rm -f source/configuration/cassandra_config_file.rst
python convert_yaml_to_rst.py ../conf/cassandra.yaml 
source/configuration/cassandra_config_file.rst
python gen-nodetool-docs.py
Error: Could not find or load main class org.apache.cassandra.tools.NodeTool
ERROR: Nodetool failed to run, you likely need to build cassandra using ant jar 
from the top level directory
Traceback (most recent call last):
  File "gen-nodetool-docs.py", line 64, in 
create_help_file()
  File "gen-nodetool-docs.py", line 48, in create_help_file
raise cpe
subprocess.CalledProcessError: Command '['../bin/nodetool', 'help']' returned 
non-zero exit status 1
Makefile:72: recipe for target 'website' failed
make[1]: *** [website] Error 1
make[1]: Leaving directory '/home/josephl/pg/cassandra_trunk/doc'
Makefile:22: recipe for target '.build-doc' failed
make: *** [.build-doc] Error 2
{noformat}
The other changes are fixing the warning that {{make add-doc}} was emitting 
about the nodetool docs, now there are only the TOC errors left.

I've also attached a patch to the svn cassandra-site repo ( 
[^14955-cassandra-site-svn.patch] which will run {{ant jar}} for you 
automatically before building the docs so that the user doesn't have to know 
they need the main repo built first.

> Website can be built without nodetool documentation by accident
> ---
>
> Key: CASSANDRA-14955
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14955
> Project: Cassandra
>  Issue Type: Bug
>  Components: Documentation/Website
>Reporter: Joseph Lynch
>Assignee: Joseph Lynch
>Priority: Minor
> Attachments: 14955-cassandra-site-svn.patch, 14955-trunk.txt
>
>
> While [~m...@thelastpickle.com] was generating docs today we accidentally 
> pushed empty nodetool docs because the {{make website}} target doesn't fail 
> if nodetool fails to run. We believe that this is due to the line in 
> [gen-nodetool-docs.py|https://github.com/apache/cassandra/blob/trunk/doc/gen-nodetool-docs.py#L39]
>  which uses subprocess.call instead of check_call.
> Let's make it so that if you try to build docs without nodetool being 
> available the build should fail so that we cant make the same mistake again.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional 

[jira] [Commented] (CASSANDRA-14955) Website can be built without nodetool documentation by accident

2019-01-06 Thread Joseph Lynch (JIRA)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-14955?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16735461#comment-16735461
 ] 

Joseph Lynch commented on CASSANDRA-14955:
--

I attached a patch to trunk ([^14955-trunk.txt] ) which will fail the 
{{gen-nodetool-docs}} script if the nodetool command fails, tested by running 
{{ant realclean}} and then:
{noformat}
cassandra-site/src » make add-doc   
   2 ↵
make[1]: Entering directory '/home/josephl/pg/cassandra_trunk/doc'
rm -rf build/*
rm -f source/configuration/cassandra_config_file.rst
python convert_yaml_to_rst.py ../conf/cassandra.yaml 
source/configuration/cassandra_config_file.rst
python gen-nodetool-docs.py
Error: Could not find or load main class org.apache.cassandra.tools.NodeTool
ERROR: Nodetool failed to run, you likely need to build cassandra using ant jar 
from the top level directory
Traceback (most recent call last):
  File "gen-nodetool-docs.py", line 64, in 
create_help_file()
  File "gen-nodetool-docs.py", line 48, in create_help_file
raise cpe
subprocess.CalledProcessError: Command '['../bin/nodetool', 'help']' returned 
non-zero exit status 1
Makefile:72: recipe for target 'website' failed
make[1]: *** [website] Error 1
make[1]: Leaving directory '/home/josephl/pg/cassandra_trunk/doc'
Makefile:22: recipe for target '.build-doc' failed
make: *** [.build-doc] Error 2
{noformat}
The other changes are fixing the warning that {{make add-doc}} was emitting 
about the nodetool docs, now there are only the TOC errors left.

I've also attached a patch to the svn cassandra-site repo ( 
[^14955-cassandra-site-svn.patch] which will run {{ant jar}} for you 
automatically before building the docs so that the user doesn't have to know 
they need the main repo built first.

> Website can be built without nodetool documentation by accident
> ---
>
> Key: CASSANDRA-14955
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14955
> Project: Cassandra
>  Issue Type: Bug
>  Components: Documentation/Website
>Reporter: Joseph Lynch
>Assignee: Joseph Lynch
>Priority: Minor
> Attachments: 14955-cassandra-site-svn.patch, 14955-trunk.txt
>
>
> While [~m...@thelastpickle.com] was generating docs today we accidentally 
> pushed empty nodetool docs because the {{make website}} target doesn't fail 
> if nodetool fails to run. We believe that this is due to the line in 
> [gen-nodetool-docs.py|https://github.com/apache/cassandra/blob/trunk/doc/gen-nodetool-docs.py#L39]
>  which uses subprocess.call instead of check_call.
> Let's make it so that if you try to build docs without nodetool being 
> available the build should fail so that we cant make the same mistake again.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-14955) Website can be built without nodetool documentation by accident

2019-01-06 Thread Joseph Lynch (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-14955?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Lynch updated CASSANDRA-14955:
-
Attachment: 14955-cassandra-site-svn.patch

> Website can be built without nodetool documentation by accident
> ---
>
> Key: CASSANDRA-14955
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14955
> Project: Cassandra
>  Issue Type: Bug
>  Components: Documentation/Website
>Reporter: Joseph Lynch
>Assignee: Joseph Lynch
>Priority: Minor
> Attachments: 14955-cassandra-site-svn.patch, 14955-trunk.txt
>
>
> While [~m...@thelastpickle.com] was generating docs today we accidentally 
> pushed empty nodetool docs because the {{make website}} target doesn't fail 
> if nodetool fails to run. We believe that this is due to the line in 
> [gen-nodetool-docs.py|https://github.com/apache/cassandra/blob/trunk/doc/gen-nodetool-docs.py#L39]
>  which uses subprocess.call instead of check_call.
> Let's make it so that if you try to build docs without nodetool being 
> available the build should fail so that we cant make the same mistake again.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-14955) Website can be built without nodetool documentation by accident

2019-01-06 Thread Joseph Lynch (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-14955?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Lynch updated CASSANDRA-14955:
-
Attachment: 14955-trunk.txt

> Website can be built without nodetool documentation by accident
> ---
>
> Key: CASSANDRA-14955
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14955
> Project: Cassandra
>  Issue Type: Bug
>  Components: Documentation/Website
>Reporter: Joseph Lynch
>Assignee: Joseph Lynch
>Priority: Minor
> Attachments: 14955-trunk.txt
>
>
> While [~m...@thelastpickle.com] was generating docs today we accidentally 
> pushed empty nodetool docs because the {{make website}} target doesn't fail 
> if nodetool fails to run. We believe that this is due to the line in 
> [gen-nodetool-docs.py|https://github.com/apache/cassandra/blob/trunk/doc/gen-nodetool-docs.py#L39]
>  which uses subprocess.call instead of check_call.
> Let's make it so that if you try to build docs without nodetool being 
> available the build should fail so that we cant make the same mistake again.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Commented] (CASSANDRA-14954) Website documentation for stable and latest, with stable as default linked

2019-01-06 Thread Murukesh Mohanan (JIRA)


[ 
https://issues.apache.org/jira/browse/CASSANDRA-14954?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16735436#comment-16735436
 ] 

Murukesh Mohanan commented on CASSANDRA-14954:
--

Should CASSANDRA-13907 be duped to this, since work is being done here?

> Website documentation for stable and latest, with stable as default linked
> --
>
> Key: CASSANDRA-14954
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14954
> Project: Cassandra
>  Issue Type: Task
>  Components: Documentation/Website
>Reporter: mck
>Assignee: mck
>Priority: Trivial
> Fix For: 3.11.x, 4.x
>
> Attachments: make-add-stable-doc.patch
>
>
> The website should link Documentation to the docs generated for our most 
> recent stable release.
> By providing directory listing (using {{`htaccess Indexes`}}) under /doc/, 
> and having two symlinks {{latest}} and {{stable}}, we can by default link to 
> {{stable}}.
> The following patch
>  - adds to the website Makefile the task {{add-stable-doc}}
>  - changes the default documentation link to {{/doc/stable/}}
>  - removes the html redirecting from {{doc/ --> doc/latest/}}
>  - adds directory listing to {{/doc/}} for a simple view of versioned docs 
> available



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-14955) Website can be built without nodetool documentation by accident

2019-01-06 Thread mck (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-14955?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

mck updated CASSANDRA-14955:

Reviewer: mck

> Website can be built without nodetool documentation by accident
> ---
>
> Key: CASSANDRA-14955
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14955
> Project: Cassandra
>  Issue Type: Bug
>  Components: Documentation/Website
>Reporter: Joseph Lynch
>Priority: Minor
>
> While [~m...@thelastpickle.com] was generating docs today we accidentally 
> pushed empty nodetool docs because the {{make website}} target doesn't fail 
> if nodetool fails to run. We believe that this is due to the line in 
> [gen-nodetool-docs.py|https://github.com/apache/cassandra/blob/trunk/doc/gen-nodetool-docs.py#L39]
>  which uses subprocess.call instead of check_call.
> Let's make it so that if you try to build docs without nodetool being 
> available the build should fail so that we cant make the same mistake again.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Assigned] (CASSANDRA-14955) Website can be built without nodetool documentation by accident

2019-01-06 Thread mck (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-14955?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

mck reassigned CASSANDRA-14955:
---

Assignee: Joseph Lynch

> Website can be built without nodetool documentation by accident
> ---
>
> Key: CASSANDRA-14955
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14955
> Project: Cassandra
>  Issue Type: Bug
>  Components: Documentation/Website
>Reporter: Joseph Lynch
>Assignee: Joseph Lynch
>Priority: Minor
>
> While [~m...@thelastpickle.com] was generating docs today we accidentally 
> pushed empty nodetool docs because the {{make website}} target doesn't fail 
> if nodetool fails to run. We believe that this is due to the line in 
> [gen-nodetool-docs.py|https://github.com/apache/cassandra/blob/trunk/doc/gen-nodetool-docs.py#L39]
>  which uses subprocess.call instead of check_call.
> Let's make it so that if you try to build docs without nodetool being 
> available the build should fail so that we cant make the same mistake again.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-14955) Website can be built without nodetool documentation by accident

2019-01-06 Thread Joseph Lynch (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-14955?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Lynch updated CASSANDRA-14955:
-
Summary: Website can be built without nodetool documentation by accident  
(was: Documentation can be built without nodetool by accident)

> Website can be built without nodetool documentation by accident
> ---
>
> Key: CASSANDRA-14955
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14955
> Project: Cassandra
>  Issue Type: Bug
>  Components: Documentation/Website
>Reporter: Joseph Lynch
>Priority: Minor
>
> While [~m...@thelastpickle.com] was generating docs today we accidentally 
> pushed empty nodetool docs because the {{make website}} target doesn't fail 
> if nodetool fails to run. We believe that this is due to the line in 
> [gen-nodetool-docs.py|https://github.com/apache/cassandra/blob/trunk/doc/gen-nodetool-docs.py#L39]
>  which uses subprocess.call instead of check_call.
> Let's make it so that if you try to build docs without nodetool being 
> available the build should fail so that we cant make the same mistake again.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



svn commit: r1850608 [3/5] - in /cassandra/site: publish/ publish/doc/3.11.3/ publish/doc/3.11.3/tools/nodetool/ publish/doc/3.11/ publish/doc/3.11/tools/nodetool/ publish/doc/4.0/ src/doc/3.11.3/ src

2019-01-06 Thread mck
Modified: cassandra/site/publish/doc/3.11/tools/nodetool/enablefullquerylog.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/publish/doc/3.11/tools/nodetool/enablefullquerylog.html?rev=1850608=1850607=1850608=diff
==
--- cassandra/site/publish/doc/3.11/tools/nodetool/enablefullquerylog.html 
(original)
+++ cassandra/site/publish/doc/3.11/tools/nodetool/enablefullquerylog.html Mon 
Jan  7 03:16:30 2019
@@ -152,41 +152,48 @@
 
 Usage¶
 NAME
-nodetool enablefullquerylog - Enable full query logging
+nodetool enablefullquerylog - Enable full query logging, 
defaults for
+the options are configured in cassandra.yaml
 
 SYNOPSIS
 nodetool [(-h host | --host host)] [(-p port 
| --port 
port)]
 [(-pp | --print-port)] [(-pw password | 
--password password)]
 [(-pwf passwordFilePath | --password-file 
passwordFilePath)]
 [(-u username | 
--username username)] enablefullquerylog
-[--blocking] [--max-log-size max_log_size]
-[--max-queue-weight max_queue_weight] [--path path]
-[--roll-cycle roll_cycle]
+[--archive-command 
archive_command] [--blocking]
+[--max-archive-retries 
archive_retries]
+[--max-log-size max_log_size] [--max-queue-weight max_queue_weight]
+[--path path] [--roll-cycle roll_cycle]
 
 OPTIONS
+--archive-command archive_command
+Command that will handle archiving rolled full query log 
files.
+Format is /path/to/script.sh %path where %path 
will be replaced
+with the file to archive
+
 --blocking
 If the queue is full 
whether to block producers or drop samples.
-Default true.
 
 -h host, --host host
 Node hostname or ip address
 
+--max-archive-retries archive_retries
+Max number of archive retries.
+
 --max-log-size max_log_size
 How many bytes of log 
data to store before dropping segments. Might
 not be respected if a 
log file hasnt rolled so it can be deleted.
-Default 16 gigabytes.
 
 --max-queue-weight max_queue_weight
 Maximum number of bytes of 
query data to queue to 
disk before
-blocking or dropping samples. Default 256 
megabytes.
+blocking or dropping samples.
 
 -p port, --port port
 Remote jmx agent port number
 
 --path path
 Path to store the full 
query log at. Will have its 
contents
-recursively deleted. If 
not set the value from 
cassandra.yaml will
-be used.
+recursively deleted.
 
 -pp, --print-port
 Operate in 4.0 mode with 
hosts disambiguated by port number
@@ -198,8 +205,7 @@
 Path to the JMX password 
file
 
 --roll-cycle roll_cycle
-How often to roll the 
log file (MINUTELY, HOURLY, DAILY). Default
-HOURLY.
+How often to roll the 
log file (MINUTELY, HOURLY, DAILY).
 
 -u username, --username username
 Remote jmx agent username

Added: 
cassandra/site/publish/doc/3.11/tools/nodetool/enableoldprotocolversions.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/publish/doc/3.11/tools/nodetool/enableoldprotocolversions.html?rev=1850608=auto
==
--- 
cassandra/site/publish/doc/3.11/tools/nodetool/enableoldprotocolversions.html 
(added)
+++ 
cassandra/site/publish/doc/3.11/tools/nodetool/enableoldprotocolversions.html 
Mon Jan  7 03:16:30 2019
@@ -0,0 +1,251 @@
+
+
+  
+
+
+
+
+  
+  
+  
+  
+  
+  
+
+
+  Documentation
+
+  http://cassandra.apache.org/doc/3.11/tools/nodetool/enableoldprotocolversions.html;>
+
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css; 
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
 crossorigin="anonymous">
+  
+  
+  
+  
+
+
+  https://use.fontawesome.com/releases/v5.2.0/css/all.css; 
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
 crossorigin="anonymous">
+  
+  http://cassandra.apache.org/feed.xml; title="Apache Cassandra Website" />
+
+
+  
+
+
+  
+
+  
+
+  
+  Apache Software Foundation 
+  
+http://www.apache.org;>Apache Homepage
+http://www.apache.org/licenses/;>License
+http://www.apache.org/foundation/sponsorship.html;>Sponsorship
+http://www.apache.org/foundation/thanks.html;>Thanks
+http://www.apache.org/security/;>Security
+  
+
+  
+
+  
+  Apache Cassandra
+  
+
+  
+
+Documentation
+
+  
+
+  
+
+  
+  enableoldprotocolversions
+  

svn commit: r1850608 [2/5] - in /cassandra/site: publish/ publish/doc/3.11.3/ publish/doc/3.11.3/tools/nodetool/ publish/doc/3.11/ publish/doc/3.11/tools/nodetool/ publish/doc/4.0/ src/doc/3.11.3/ src

2019-01-06 Thread mck
Modified: cassandra/site/publish/doc/3.11.3/tools/nodetool/nodetool.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/publish/doc/3.11.3/tools/nodetool/nodetool.html?rev=1850608=1850607=1850608=diff
==
--- cassandra/site/publish/doc/3.11.3/tools/nodetool/nodetool.html (original)
+++ cassandra/site/publish/doc/3.11.3/tools/nodetool/nodetool.html Mon Jan  7 
03:16:30 2019
@@ -151,6 +151,134 @@
 
 
 Usage¶
+
+usage: nodetool [(-pp | print-port)]
+[(-pwf passwordFilePath | password-file 
passwordFilePath)]
+[(-p port | port port)] [(-u username | 
username username)]
+[(-h host | host host)] [(-pw password | 
password password)]
+command [args]
+
+The most commonly used nodetool commands are:
+
+assassinate -   Forcefully remove a dead 
node without re-replicating any data.  Use as a last resort if you cannot 
removenode
+bootstrap - Monitor/manage 
nodes bootstrap process
+cleanup -   Triggers the immediate 
cleanup of keys no longer belonging to a node. By default, clean all 
keyspaces
+clearsnapshot - Remove the snapshot with 
the given name from the given keyspaces. If no snapshotName is specified we 
will remove all snapshots
+clientstats -   Print information about 
connected clients
+compact -   Force a (major) 
compaction on one or more tables or user-defined compaction on given 
SSTables
+compactionhistory - Print history of 
compaction
+compactionstats -   Print statistics on 
compactions
+decommission -  Decommission the 
node I am connecting to
+describecluster -   Print the name, snitch, 
partitioner and schema version of a cluster
+describering -  Shows the token ranges 
info of a given keyspace
+disableauditlog -   Disable the audit log
+disableautocompaction - Disable autocompaction 
for the given keyspace and table
+disablebackup - Disable incremental 
backup
+disablebinary - Disable native transport 
(binary protocol)
+disablefullquerylog -   Disable the full query 
log
+disablegossip - Disable gossip 
(effectively marking the node down)
+disablehandoff -Disable storing hinted 
handoffs
+disablehintsfordc - Disable hints for a data 
center
+disableoldprotocolversions -Disable old protocol 
versions
+drain - Drain the node (stop 
accepting writes and flush all tables)
+enableauditlog -Enable the audit log
+enableautocompaction -  Enable autocompaction 
for the given keyspace and table
+enablebackup -  Enable incremental 
backup
+enablebinary -  Reenable native 
transport (binary protocol)
+enablefullquerylog -Enable full query 
logging, defaults for the options are configured in cassandra.yaml
+enablegossip -  Reenable gossip
+enablehandoff - Reenable future hints 
storing on the current node
+enablehintsfordc -  Enable hints for a data 
center that was previsouly disabled
+enableoldprotocolversions - Enable old protocol 
versions
+failuredetector -   Shows the failure 
detector information for the cluster
+flush - Flush one or more 
tables
+garbagecollect -Remove deleted data from 
one or more tables
+gcstats -   Print GC Statistics
+getbatchlogreplaythrottle - Print batchlog replay 
throttle in KB/s. This is reduced proportionally to the number of nodes in the 
cluster.
+getcompactionthreshold -Print min and max 
compaction thresholds for a given table
+getcompactionthroughput -   Print the MB/s 
throughput cap for compaction in the system
+getconcurrentcompactors -   Get the number of 
concurrent compactors in the system.
+getconcurrentviewbuilders - Get the number of 
concurrent view builders in the system
+getendpoints -  Print the end points 
that owns the key
+getinterdcstreamthroughput -Print the Mb/s 
throughput cap for inter-datacenter streaming in the system
+getlogginglevels -  Get the runtime logging 
levels
+getmaxhintwindow -  Print the max hint 
window in ms
+getreplicas -   Print replicas for a 
given key
+getseeds -  Get the currently in use 
seed node IP list excluding the node IP
+getsstables -   Print the sstable 
filenames that own the key
+getstreamthroughput -   Print the Mb/s 
throughput cap for streaming in the system
+gettimeout -Print the timeout of the 
given type in ms
+gettraceprobability -   Print the current trace 
probability value
+gossipinfo -Shows the gossip 
information for the cluster
+handoffwindow -   

svn commit: r1850608 [5/5] - in /cassandra/site: publish/ publish/doc/3.11.3/ publish/doc/3.11.3/tools/nodetool/ publish/doc/3.11/ publish/doc/3.11/tools/nodetool/ publish/doc/4.0/ src/doc/3.11.3/ src

2019-01-06 Thread mck
Added: 
cassandra/site/src/doc/3.11.3/tools/nodetool/enableoldprotocolversions.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/src/doc/3.11.3/tools/nodetool/enableoldprotocolversions.html?rev=1850608=auto
==
--- cassandra/site/src/doc/3.11.3/tools/nodetool/enableoldprotocolversions.html 
(added)
+++ cassandra/site/src/doc/3.11.3/tools/nodetool/enableoldprotocolversions.html 
Mon Jan  7 03:16:30 2019
@@ -0,0 +1,123 @@
+---
+layout: docpage
+
+title: "Documentation"
+
+is_homepage: false
+is_sphinx_doc: true
+
+doc-title: "enableoldprotocolversions"
+doc-header-links: '
+  
+'
+doc-search-path: "../../search.html"
+
+extra-footer: '
+
+var DOCUMENTATION_OPTIONS = {
+  URL_ROOT:"",
+  VERSION: "",
+  COLLAPSE_INDEX: false,
+  FILE_SUFFIX: ".html",
+  HAS_SOURCE:  false,
+  SOURCELINK_SUFFIX: ".txt"
+};
+
+'
+
+---
+
+  
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+  
+  
+
+  
+
+
+
+  
+
+
+
+
+
+Getting Started
+Architecture
+Data Modeling
+The Cassandra Query Language (CQL)
+Configuring Cassandra
+Operating Cassandra
+Cassandra Tools
+Troubleshooting
+Cassandra Development
+Frequently Asked Questions
+Reporting Bugs and Contributing
+Contact us
+
+
+
+
+  
+
+  
+
+
+  
+
+  
+  
+enableoldprotocolversions¶
+
+
+Usage¶
+NAME
+nodetool enableoldprotocolversions - Enable old protocol versions
+
+SYNOPSIS
+nodetool [(-h host | --host host)] [(-p port 
| --port 
port)]
+[(-pp | --print-port)] [(-pw password | 
--password password)]
+[(-pwf passwordFilePath | --password-file 
passwordFilePath)]
+[(-u username | 
--username username)] enableoldprotocolversions
+
+OPTIONS
+-h host, --host host
+Node hostname or ip address
+
+-p port, --port port
+Remote jmx agent port number
+
+-pp, --print-port
+Operate in 4.0 mode with 
hosts disambiguated by port number
+
+-pw password, --password password
+Remote jmx agent password
+
+-pwf passwordFilePath, --password-file 
passwordFilePath
+Path to the JMX password 
file
+
+-u username, --username username
+Remote jmx agent username
+
+
+
+
+
+
+
+
+  
+
+  
+
+  
+
\ No newline at end of file

Modified: cassandra/site/src/doc/3.11.3/tools/nodetool/garbagecollect.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/src/doc/3.11.3/tools/nodetool/garbagecollect.html?rev=1850608=1850607=1850608=diff
==
--- cassandra/site/src/doc/3.11.3/tools/nodetool/garbagecollect.html (original)
+++ cassandra/site/src/doc/3.11.3/tools/nodetool/garbagecollect.html Mon Jan  7 
03:16:30 2019
@@ -101,7 +101,8 @@ extra-footer: '
 
 -j jobs, --jobs jobs
 Number of sstables to cleanup simultanously, set to 0 to use all
-available compaction 
threads
+available compaction 
threads. Defaults to 1 
so that collections of
+newer tables can see the 
data is deleted and also remove tombstones.
 
 -p port, --port port
 Remote jmx agent port number

Added: cassandra/site/src/doc/3.11.3/tools/nodetool/getreplicas.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/src/doc/3.11.3/tools/nodetool/getreplicas.html?rev=1850608=auto
==
--- cassandra/site/src/doc/3.11.3/tools/nodetool/getreplicas.html (added)
+++ cassandra/site/src/doc/3.11.3/tools/nodetool/getreplicas.html Mon Jan  7 
03:16:30 2019
@@ -0,0 +1,133 @@
+---
+layout: docpage
+
+title: "Documentation"
+
+is_homepage: false
+is_sphinx_doc: true
+
+doc-title: "getreplicas"
+doc-header-links: '
+  
+'
+doc-search-path: "../../search.html"
+
+extra-footer: '
+
+var DOCUMENTATION_OPTIONS = {
+  URL_ROOT:"",
+  VERSION: "",
+  COLLAPSE_INDEX: false,
+  FILE_SUFFIX: ".html",
+  HAS_SOURCE:  false,
+  SOURCELINK_SUFFIX: ".txt"
+};
+
+'
+
+---
+
+  
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+  
+  
+
+  
+
+
+
+  
+
+
+
+
+
+Getting Started
+Architecture
+Data Modeling
+The Cassandra Query Language (CQL)
+Configuring Cassandra
+Operating Cassandra
+Cassandra Tools
+Troubleshooting

svn commit: r1850608 [1/5] - in /cassandra/site: publish/ publish/doc/3.11.3/ publish/doc/3.11.3/tools/nodetool/ publish/doc/3.11/ publish/doc/3.11/tools/nodetool/ publish/doc/4.0/ src/doc/3.11.3/ src

2019-01-06 Thread mck
Author: mck
Date: Mon Jan  7 03:16:30 2019
New Revision: 1850608

URL: http://svn.apache.org/viewvc?rev=1850608=rev
Log:
ninja-fix: publish correctly generated nodetool pages [cassandra-3.11] (see 
CASSANDRA-14955)

Added:

cassandra/site/publish/doc/3.11.3/tools/nodetool/disableoldprotocolversions.html

cassandra/site/publish/doc/3.11.3/tools/nodetool/enableoldprotocolversions.html
cassandra/site/publish/doc/3.11.3/tools/nodetool/getreplicas.html
cassandra/site/publish/doc/3.11.3/tools/nodetool/profileload.html

cassandra/site/publish/doc/3.11/tools/nodetool/disableoldprotocolversions.html

cassandra/site/publish/doc/3.11/tools/nodetool/enableoldprotocolversions.html
cassandra/site/publish/doc/3.11/tools/nodetool/getreplicas.html
cassandra/site/publish/doc/3.11/tools/nodetool/profileload.html

cassandra/site/src/doc/3.11.3/_sources/tools/nodetool/disableoldprotocolversions.rst.txt

cassandra/site/src/doc/3.11.3/_sources/tools/nodetool/enableoldprotocolversions.rst.txt
cassandra/site/src/doc/3.11.3/_sources/tools/nodetool/getreplicas.rst.txt
cassandra/site/src/doc/3.11.3/_sources/tools/nodetool/profileload.rst.txt
cassandra/site/src/doc/3.11.3/tools/nodetool/disableoldprotocolversions.html
cassandra/site/src/doc/3.11.3/tools/nodetool/enableoldprotocolversions.html
cassandra/site/src/doc/3.11.3/tools/nodetool/getreplicas.html
cassandra/site/src/doc/3.11.3/tools/nodetool/profileload.html
Modified:
cassandra/site/publish/doc/3.11.3/index.html
cassandra/site/publish/doc/3.11.3/objects.inv
cassandra/site/publish/doc/3.11.3/searchindex.js
cassandra/site/publish/doc/3.11.3/tools/nodetool/bootstrap.html
cassandra/site/publish/doc/3.11.3/tools/nodetool/enablefullquerylog.html
cassandra/site/publish/doc/3.11.3/tools/nodetool/garbagecollect.html
cassandra/site/publish/doc/3.11.3/tools/nodetool/gettimeout.html
cassandra/site/publish/doc/3.11.3/tools/nodetool/nodetool.html
cassandra/site/publish/doc/3.11.3/tools/nodetool/settimeout.html
cassandra/site/publish/doc/3.11.3/tools/nodetool/toppartitions.html
cassandra/site/publish/doc/3.11/index.html
cassandra/site/publish/doc/3.11/objects.inv
cassandra/site/publish/doc/3.11/searchindex.js
cassandra/site/publish/doc/3.11/tools/nodetool/bootstrap.html
cassandra/site/publish/doc/3.11/tools/nodetool/enablefullquerylog.html
cassandra/site/publish/doc/3.11/tools/nodetool/garbagecollect.html
cassandra/site/publish/doc/3.11/tools/nodetool/gettimeout.html
cassandra/site/publish/doc/3.11/tools/nodetool/nodetool.html
cassandra/site/publish/doc/3.11/tools/nodetool/settimeout.html
cassandra/site/publish/doc/3.11/tools/nodetool/toppartitions.html
cassandra/site/publish/doc/4.0/index.html
cassandra/site/publish/feed.xml
cassandra/site/src/doc/3.11.3/_sources/tools/nodetool/nodetool.rst.txt
cassandra/site/src/doc/3.11.3/objects.inv
cassandra/site/src/doc/3.11.3/searchindex.js
cassandra/site/src/doc/3.11.3/tools/nodetool/bootstrap.html
cassandra/site/src/doc/3.11.3/tools/nodetool/enablefullquerylog.html
cassandra/site/src/doc/3.11.3/tools/nodetool/garbagecollect.html
cassandra/site/src/doc/3.11.3/tools/nodetool/gettimeout.html
cassandra/site/src/doc/3.11.3/tools/nodetool/nodetool.html
cassandra/site/src/doc/3.11.3/tools/nodetool/settimeout.html
cassandra/site/src/doc/3.11.3/tools/nodetool/toppartitions.html

Modified: cassandra/site/publish/doc/3.11.3/index.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/publish/doc/3.11.3/index.html?rev=1850608=1850607=1850608=diff
==
--- cassandra/site/publish/doc/3.11.3/index.html (original)
+++ cassandra/site/publish/doc/3.11.3/index.html Mon Jan  7 03:16:30 2019
@@ -19,7 +19,7 @@
   http://cassandra.apache.org/doc/3.11.3/;>
 
   https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css; 
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
 crossorigin="anonymous">
-  
+  
   
 
   
@@ -35,7 +35,7 @@
 
   
 
-  
+  
   Apache Software Foundation 
   
 http://www.apache.org;>Apache Homepage
@@ -48,7 +48,7 @@
   
 
   
-  Apache Cassandra
+  Apache Cassandra
   
 
   
@@ -73,17 +73,17 @@
   
   
 
-
+
   
 
   
 
-  Home
-  Download
-  Documentation
-  Community
+  Home
+  Download
+  Documentation
+  Community
   
-Blog
+Blog
 
 
   
@@ -211,7 +211,7 @@
 
 
 https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js";>
-
+
 https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"; 

svn commit: r1850608 [4/5] - in /cassandra/site: publish/ publish/doc/3.11.3/ publish/doc/3.11.3/tools/nodetool/ publish/doc/3.11/ publish/doc/3.11/tools/nodetool/ publish/doc/4.0/ src/doc/3.11.3/ src

2019-01-06 Thread mck
Added: cassandra/site/publish/doc/3.11/tools/nodetool/profileload.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/publish/doc/3.11/tools/nodetool/profileload.html?rev=1850608=auto
==
--- cassandra/site/publish/doc/3.11/tools/nodetool/profileload.html (added)
+++ cassandra/site/publish/doc/3.11/tools/nodetool/profileload.html Mon Jan  7 
03:16:30 2019
@@ -0,0 +1,270 @@
+
+
+  
+
+
+
+
+  
+  
+  
+  
+  
+  
+
+
+  Documentation
+
+  http://cassandra.apache.org/doc/3.11/tools/nodetool/profileload.html;>
+
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css; 
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
 crossorigin="anonymous">
+  
+  
+  
+  
+
+
+  https://use.fontawesome.com/releases/v5.2.0/css/all.css; 
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
 crossorigin="anonymous">
+  
+  http://cassandra.apache.org/feed.xml; title="Apache Cassandra Website" />
+
+
+  
+
+
+  
+
+  
+
+  
+  Apache Software Foundation 
+  
+http://www.apache.org;>Apache Homepage
+http://www.apache.org/licenses/;>License
+http://www.apache.org/foundation/sponsorship.html;>Sponsorship
+http://www.apache.org/foundation/thanks.html;>Thanks
+http://www.apache.org/security/;>Security
+  
+
+  
+
+  
+  Apache Cassandra
+  
+
+  
+
+Documentation
+
+  
+
+  
+
+  
+  profileload
+  
+
+  
+
+  
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+
+  
+
+  
+
+  Home
+  Download
+  Documentation
+  Community
+  
+Blog
+
+
+  
+
+  
+
+  
+
+
+
+  
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+  
+  
+
+  
+
+
+
+  
+
+
+
+
+
+Getting Started
+Architecture
+Data Modeling
+The Cassandra Query Language (CQL)
+Configuring Cassandra
+Operating Cassandra
+Cassandra Tools
+Troubleshooting
+Cassandra Development
+Frequently Asked Questions
+Reporting Bugs and Contributing
+Contact us
+
+
+
+
+  
+
+  
+
+
+  
+
+  
+  
+profileload¶
+
+
+Usage¶
+NAME
+nodetool profileload 
- Low footprint profiling of activity for 
a period
+of time
+
+SYNOPSIS
+nodetool [(-h host | --host host)] [(-p port 
| --port 
port)]
+[(-pp | --print-port)] [(-pw password | 
--password password)]
+[(-pwf passwordFilePath | --password-file 
passwordFilePath)]
+[(-u username | 
--username username)] profileload [-a samplers]
+[-k topCount] 
[-s capacity] [--] keyspace cfname 
duration
+
+OPTIONS
+-a samplers
+Comma separated 
list of samplers to use 
(Default: 
all)
+
+-h host, --host host
+Node hostname or ip address
+
+-k topCount
+Number of the top samples 
to list (Default: 10)
+
+-p port, --port port
+Remote jmx agent port number
+
+-pp, --print-port
+Operate in 4.0 mode with 
hosts disambiguated by port number
+
+-pw password, --password password
+Remote jmx agent password
+
+-pwf passwordFilePath, --password-file 
passwordFilePath
+Path to the JMX password 
file
+
+-s capacity
+Capacity of the sampler, 
higher for more accuracy (Default: 256)
+
+-u username, --username username
+Remote jmx agent username
+
+--
+This option can be used 
to separate command-line 
options from the
+list of argument, (useful when arguments might be mistaken for
+command-line options
+
+keyspace cfname duration
+The keyspace, column family 
name, and 
duration in milliseconds
+
+
+
+
+
+
+
+
+  
+
+  
+
+  
+
+
+
+
+
+  
+
+  
+https://twitter.com/cassandra;
+   class="twitter-follow-button"
+   data-show-count="false" data-size="large">Follow @cassandra
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document,
 'script', 'twitter-wjs');
+https://twitter.com/intent/tweet?button_hashtag=cassandra;
+   

[jira] [Updated] (CASSANDRA-14955) Documentation can be built without nodetool by accident

2019-01-06 Thread Joseph Lynch (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-14955?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Lynch updated CASSANDRA-14955:
-
Component/s: Documentation/Website

> Documentation can be built without nodetool by accident
> ---
>
> Key: CASSANDRA-14955
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14955
> Project: Cassandra
>  Issue Type: Bug
>  Components: Documentation/Website
>Reporter: Joseph Lynch
>Priority: Minor
>
> While [~m...@thelastpickle.com] was generating docs today we accidentally 
> pushed empty nodetool docs because the {{make website}} target doesn't fail 
> if nodetool fails to run. We believe that this is due to the line in 
> [gen-nodetool-docs.py|https://github.com/apache/cassandra/blob/trunk/doc/gen-nodetool-docs.py#L39]
>  which uses subprocess.call instead of check_call.
> Let's make it so that if you try to build docs without nodetool being 
> available the build should fail so that we cant make the same mistake again.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-14955) Documentation can be built without nodetool by accident

2019-01-06 Thread Joseph Lynch (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-14955?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Lynch updated CASSANDRA-14955:
-
Description: 
While [~m...@thelastpickle.com] was generating docs today we accidentally 
pushed empty nodetool docs because the {{make website}} target doesn't fail if 
nodetool fails to run. We believe that this is due to the line in 
[gen-nodetool-docs.py|https://github.com/apache/cassandra/blob/trunk/doc/gen-nodetool-docs.py#L39]
 which uses subprocess.call instead of check_call.

Let's make it so that if you try to build docs without nodetool being available 
the build should fail so that we cant make the same mistake again.

  was:


> Documentation can be built without nodetool by accident
> ---
>
> Key: CASSANDRA-14955
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14955
> Project: Cassandra
>  Issue Type: Bug
>Reporter: Joseph Lynch
>Priority: Minor
>
> While [~m...@thelastpickle.com] was generating docs today we accidentally 
> pushed empty nodetool docs because the {{make website}} target doesn't fail 
> if nodetool fails to run. We believe that this is due to the line in 
> [gen-nodetool-docs.py|https://github.com/apache/cassandra/blob/trunk/doc/gen-nodetool-docs.py#L39]
>  which uses subprocess.call instead of check_call.
> Let's make it so that if you try to build docs without nodetool being 
> available the build should fail so that we cant make the same mistake again.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



svn commit: r1850607 [4/5] - in /cassandra/site: publish/ publish/doc/3.11.3/ publish/doc/3.11/ publish/doc/4.0/ publish/doc/4.0/tools/nodetool/ publish/doc/latest/ publish/doc/latest/tools/nodetool/

2019-01-06 Thread mck
Added: cassandra/site/publish/doc/latest/tools/nodetool/profileload.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/publish/doc/latest/tools/nodetool/profileload.html?rev=1850607=auto
==
--- cassandra/site/publish/doc/latest/tools/nodetool/profileload.html (added)
+++ cassandra/site/publish/doc/latest/tools/nodetool/profileload.html Mon Jan  
7 03:10:30 2019
@@ -0,0 +1,271 @@
+
+
+  
+
+
+
+
+  
+  
+  
+  
+  
+  
+
+
+  Documentation
+
+  http://cassandra.apache.org/doc/latest/tools/nodetool/profileload.html;>
+
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css; 
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
 crossorigin="anonymous">
+  
+  
+  
+  
+
+
+  https://use.fontawesome.com/releases/v5.2.0/css/all.css; 
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
 crossorigin="anonymous">
+  
+  http://cassandra.apache.org/feed.xml; title="Apache Cassandra Website" />
+
+
+  
+
+
+  
+
+  
+
+  
+  Apache Software Foundation 
+  
+http://www.apache.org;>Apache Homepage
+http://www.apache.org/licenses/;>License
+http://www.apache.org/foundation/sponsorship.html;>Sponsorship
+http://www.apache.org/foundation/thanks.html;>Thanks
+http://www.apache.org/security/;>Security
+  
+
+  
+
+  
+  Apache Cassandra
+  
+
+  
+
+Documentation
+
+  
+
+  
+
+  
+  profileload
+  
+
+  
+
+  
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+
+  
+
+  
+
+  Home
+  Download
+  Documentation
+  Community
+  
+Blog
+
+
+  
+
+  
+
+  
+
+
+
+  
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+  
+  
+
+  
+
+
+
+  
+
+
+
+
+
+Getting Started
+Architecture
+Data Modeling
+The Cassandra Query Language (CQL)
+Configuring Cassandra
+Operating Cassandra
+Cassandra Tools
+Troubleshooting
+Contributing to Cassandra
+Frequently Asked Questions
+Third-Party Plugins
+Reporting Bugs
+Contact us
+
+
+
+
+  
+
+  
+
+
+  
+
+  
+  
+profileload¶
+
+
+Usage¶
+NAME
+nodetool profileload 
- Low footprint profiling of activity for 
a period
+of time
+
+SYNOPSIS
+nodetool [(-h host | --host host)] [(-p port 
| --port 
port)]
+[(-pp | --print-port)] [(-pw password | 
--password password)]
+[(-pwf passwordFilePath | --password-file 
passwordFilePath)]
+[(-u username | 
--username username)] profileload [-a samplers]
+[-k topCount] 
[-s capacity] [--] keyspace cfname 
duration
+
+OPTIONS
+-a samplers
+Comma separated 
list of samplers to use 
(Default: 
all)
+
+-h host, --host host
+Node hostname or ip address
+
+-k topCount
+Number of the top samples 
to list (Default: 10)
+
+-p port, --port port
+Remote jmx agent port number
+
+-pp, --print-port
+Operate in 4.0 mode with 
hosts disambiguated by port number
+
+-pw password, --password password
+Remote jmx agent password
+
+-pwf passwordFilePath, --password-file 
passwordFilePath
+Path to the JMX password 
file
+
+-s capacity
+Capacity of the sampler, 
higher for more accuracy (Default: 256)
+
+-u username, --username username
+Remote jmx agent username
+
+--
+This option can be used 
to separate command-line 
options from the
+list of argument, (useful when arguments might be mistaken for
+command-line options
+
+keyspace cfname duration
+The keyspace, column family 
name, and 
duration in milliseconds
+
+
+
+
+
+
+
+
+  
+
+  
+
+  
+
+
+
+
+
+  
+
+  
+https://twitter.com/cassandra;
+   class="twitter-follow-button"
+   data-show-count="false" data-size="large">Follow @cassandra
+!function(d,s,id){var 
js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document,
 'script', 'twitter-wjs');
+https://twitter.com/intent/tweet?button_hashtag=cassandra;
+

svn commit: r1850607 [2/5] - in /cassandra/site: publish/ publish/doc/3.11.3/ publish/doc/3.11/ publish/doc/4.0/ publish/doc/4.0/tools/nodetool/ publish/doc/latest/ publish/doc/latest/tools/nodetool/

2019-01-06 Thread mck
Modified: cassandra/site/publish/doc/4.0/tools/nodetool/nodetool.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/publish/doc/4.0/tools/nodetool/nodetool.html?rev=1850607=1850606=1850607=diff
==
--- cassandra/site/publish/doc/4.0/tools/nodetool/nodetool.html (original)
+++ cassandra/site/publish/doc/4.0/tools/nodetool/nodetool.html Mon Jan  7 
03:10:30 2019
@@ -161,6 +161,134 @@
 
 
 Usage¶
+
+usage: nodetool [(-pp | print-port)]
+[(-pwf passwordFilePath | password-file 
passwordFilePath)]
+[(-p port | port port)] [(-u username | 
username username)]
+[(-h host | host host)] [(-pw password | 
password password)]
+command [args]
+
+The most commonly used nodetool commands are:
+
+assassinate -   Forcefully remove a dead 
node without re-replicating any data.  Use as a last resort if you cannot 
removenode
+bootstrap - Monitor/manage 
nodes bootstrap process
+cleanup -   Triggers the immediate 
cleanup of keys no longer belonging to a node. By default, clean all 
keyspaces
+clearsnapshot - Remove the snapshot with 
the given name from the given keyspaces. If no snapshotName is specified we 
will remove all snapshots
+clientstats -   Print information about 
connected clients
+compact -   Force a (major) 
compaction on one or more tables or user-defined compaction on given 
SSTables
+compactionhistory - Print history of 
compaction
+compactionstats -   Print statistics on 
compactions
+decommission -  Decommission the 
node I am connecting to
+describecluster -   Print the name, snitch, 
partitioner and schema version of a cluster
+describering -  Shows the token ranges 
info of a given keyspace
+disableauditlog -   Disable the audit log
+disableautocompaction - Disable autocompaction 
for the given keyspace and table
+disablebackup - Disable incremental 
backup
+disablebinary - Disable native transport 
(binary protocol)
+disablefullquerylog -   Disable the full query 
log
+disablegossip - Disable gossip 
(effectively marking the node down)
+disablehandoff -Disable storing hinted 
handoffs
+disablehintsfordc - Disable hints for a data 
center
+disableoldprotocolversions -Disable old protocol 
versions
+drain - Drain the node (stop 
accepting writes and flush all tables)
+enableauditlog -Enable the audit log
+enableautocompaction -  Enable autocompaction 
for the given keyspace and table
+enablebackup -  Enable incremental 
backup
+enablebinary -  Reenable native 
transport (binary protocol)
+enablefullquerylog -Enable full query 
logging, defaults for the options are configured in cassandra.yaml
+enablegossip -  Reenable gossip
+enablehandoff - Reenable future hints 
storing on the current node
+enablehintsfordc -  Enable hints for a data 
center that was previsouly disabled
+enableoldprotocolversions - Enable old protocol 
versions
+failuredetector -   Shows the failure 
detector information for the cluster
+flush - Flush one or more 
tables
+garbagecollect -Remove deleted data from 
one or more tables
+gcstats -   Print GC Statistics
+getbatchlogreplaythrottle - Print batchlog replay 
throttle in KB/s. This is reduced proportionally to the number of nodes in the 
cluster.
+getcompactionthreshold -Print min and max 
compaction thresholds for a given table
+getcompactionthroughput -   Print the MB/s 
throughput cap for compaction in the system
+getconcurrentcompactors -   Get the number of 
concurrent compactors in the system.
+getconcurrentviewbuilders - Get the number of 
concurrent view builders in the system
+getendpoints -  Print the end points 
that owns the key
+getinterdcstreamthroughput -Print the Mb/s 
throughput cap for inter-datacenter streaming in the system
+getlogginglevels -  Get the runtime logging 
levels
+getmaxhintwindow -  Print the max hint 
window in ms
+getreplicas -   Print replicas for a 
given key
+getseeds -  Get the currently in use 
seed node IP list excluding the node IP
+getsstables -   Print the sstable 
filenames that own the key
+getstreamthroughput -   Print the Mb/s 
throughput cap for streaming in the system
+gettimeout -Print the timeout of the 
given type in ms
+gettraceprobability -   Print the current trace 
probability value
+gossipinfo -Shows the gossip 
information for the cluster
+handoffwindow - Print 

svn commit: r1850607 [5/5] - in /cassandra/site: publish/ publish/doc/3.11.3/ publish/doc/3.11/ publish/doc/4.0/ publish/doc/4.0/tools/nodetool/ publish/doc/latest/ publish/doc/latest/tools/nodetool/

2019-01-06 Thread mck
Added: cassandra/site/src/doc/4.0/tools/nodetool/enableoldprotocolversions.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/enableoldprotocolversions.html?rev=1850607=auto
==
--- cassandra/site/src/doc/4.0/tools/nodetool/enableoldprotocolversions.html 
(added)
+++ cassandra/site/src/doc/4.0/tools/nodetool/enableoldprotocolversions.html 
Mon Jan  7 03:10:30 2019
@@ -0,0 +1,124 @@
+---
+layout: docpage
+
+title: "Documentation"
+
+is_homepage: false
+is_sphinx_doc: true
+
+doc-title: "enableoldprotocolversions"
+doc-header-links: '
+  
+'
+doc-search-path: "../../search.html"
+
+extra-footer: '
+
+var DOCUMENTATION_OPTIONS = {
+  URL_ROOT:"",
+  VERSION: "",
+  COLLAPSE_INDEX: false,
+  FILE_SUFFIX: ".html",
+  HAS_SOURCE:  false,
+  SOURCELINK_SUFFIX: ".txt"
+};
+
+'
+
+---
+
+  
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+  
+  
+
+  
+
+
+
+  
+
+
+
+
+
+Getting Started
+Architecture
+Data Modeling
+The Cassandra Query Language (CQL)
+Configuring Cassandra
+Operating Cassandra
+Cassandra Tools
+Troubleshooting
+Contributing to Cassandra
+Frequently Asked Questions
+Third-Party Plugins
+Reporting Bugs
+Contact us
+
+
+
+
+  
+
+  
+
+
+  
+
+  
+  
+enableoldprotocolversions¶
+
+
+Usage¶
+NAME
+nodetool enableoldprotocolversions - Enable old protocol versions
+
+SYNOPSIS
+nodetool [(-h host | --host host)] [(-p port 
| --port 
port)]
+[(-pp | --print-port)] [(-pw password | 
--password password)]
+[(-pwf passwordFilePath | --password-file 
passwordFilePath)]
+[(-u username | 
--username username)] enableoldprotocolversions
+
+OPTIONS
+-h host, --host host
+Node hostname or ip address
+
+-p port, --port port
+Remote jmx agent port number
+
+-pp, --print-port
+Operate in 4.0 mode with 
hosts disambiguated by port number
+
+-pw password, --password password
+Remote jmx agent password
+
+-pwf passwordFilePath, --password-file 
passwordFilePath
+Path to the JMX password 
file
+
+-u username, --username username
+Remote jmx agent username
+
+
+
+
+
+
+
+
+  
+
+  
+
+  
+
\ No newline at end of file

Modified: cassandra/site/src/doc/4.0/tools/nodetool/garbagecollect.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/garbagecollect.html?rev=1850607=1850606=1850607=diff
==
--- cassandra/site/src/doc/4.0/tools/nodetool/garbagecollect.html (original)
+++ cassandra/site/src/doc/4.0/tools/nodetool/garbagecollect.html Mon Jan  7 
03:10:30 2019
@@ -102,7 +102,8 @@ extra-footer: '
 
 -j jobs, --jobs jobs
 Number of sstables to cleanup simultanously, set to 0 to use all
-available compaction 
threads
+available compaction 
threads. Defaults to 1 
so that collections of
+newer tables can see the 
data is deleted and also remove tombstones.
 
 -p port, --port port
 Remote jmx agent port number

Added: cassandra/site/src/doc/4.0/tools/nodetool/getreplicas.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/src/doc/4.0/tools/nodetool/getreplicas.html?rev=1850607=auto
==
--- cassandra/site/src/doc/4.0/tools/nodetool/getreplicas.html (added)
+++ cassandra/site/src/doc/4.0/tools/nodetool/getreplicas.html Mon Jan  7 
03:10:30 2019
@@ -0,0 +1,134 @@
+---
+layout: docpage
+
+title: "Documentation"
+
+is_homepage: false
+is_sphinx_doc: true
+
+doc-title: "getreplicas"
+doc-header-links: '
+  
+'
+doc-search-path: "../../search.html"
+
+extra-footer: '
+
+var DOCUMENTATION_OPTIONS = {
+  URL_ROOT:"",
+  VERSION: "",
+  COLLAPSE_INDEX: false,
+  FILE_SUFFIX: ".html",
+  HAS_SOURCE:  false,
+  SOURCELINK_SUFFIX: ".txt"
+};
+
+'
+
+---
+
+  
+
+  
+
+  
+
+  Toggle navigation
+  
+  
+  
+
+  
+  
+
+  
+
+
+
+  
+
+
+
+
+
+Getting Started
+Architecture
+Data Modeling
+The Cassandra Query Language (CQL)
+Configuring Cassandra
+Operating Cassandra
+Cassandra Tools
+Troubleshooting
+Contributing to Cassandra

svn commit: r1850607 [1/5] - in /cassandra/site: publish/ publish/doc/3.11.3/ publish/doc/3.11/ publish/doc/4.0/ publish/doc/4.0/tools/nodetool/ publish/doc/latest/ publish/doc/latest/tools/nodetool/

2019-01-06 Thread mck
Author: mck
Date: Mon Jan  7 03:10:30 2019
New Revision: 1850607

URL: http://svn.apache.org/viewvc?rev=1850607=rev
Log:
ninja-fix: publish correctly generated nodetool pages (cassandra directory 
needs to be built first, see CASSANDRA-14955)

Added:

cassandra/site/publish/doc/4.0/tools/nodetool/disableoldprotocolversions.html
cassandra/site/publish/doc/4.0/tools/nodetool/enableoldprotocolversions.html
cassandra/site/publish/doc/4.0/tools/nodetool/getreplicas.html
cassandra/site/publish/doc/4.0/tools/nodetool/profileload.html

cassandra/site/publish/doc/latest/tools/nodetool/disableoldprotocolversions.html

cassandra/site/publish/doc/latest/tools/nodetool/enableoldprotocolversions.html
cassandra/site/publish/doc/latest/tools/nodetool/getreplicas.html
cassandra/site/publish/doc/latest/tools/nodetool/profileload.html

cassandra/site/src/doc/4.0/_sources/tools/nodetool/disableoldprotocolversions.rst.txt

cassandra/site/src/doc/4.0/_sources/tools/nodetool/enableoldprotocolversions.rst.txt
cassandra/site/src/doc/4.0/_sources/tools/nodetool/getreplicas.rst.txt
cassandra/site/src/doc/4.0/_sources/tools/nodetool/profileload.rst.txt
cassandra/site/src/doc/4.0/tools/nodetool/disableoldprotocolversions.html
cassandra/site/src/doc/4.0/tools/nodetool/enableoldprotocolversions.html
cassandra/site/src/doc/4.0/tools/nodetool/getreplicas.html
cassandra/site/src/doc/4.0/tools/nodetool/profileload.html
Modified:
cassandra/site/publish/doc/3.11.3/index.html
cassandra/site/publish/doc/3.11/index.html
cassandra/site/publish/doc/4.0/index.html
cassandra/site/publish/doc/4.0/objects.inv
cassandra/site/publish/doc/4.0/searchindex.js
cassandra/site/publish/doc/4.0/tools/nodetool/bootstrap.html
cassandra/site/publish/doc/4.0/tools/nodetool/enablefullquerylog.html
cassandra/site/publish/doc/4.0/tools/nodetool/garbagecollect.html
cassandra/site/publish/doc/4.0/tools/nodetool/gettimeout.html
cassandra/site/publish/doc/4.0/tools/nodetool/nodetool.html
cassandra/site/publish/doc/4.0/tools/nodetool/settimeout.html
cassandra/site/publish/doc/4.0/tools/nodetool/toppartitions.html
cassandra/site/publish/doc/latest/objects.inv
cassandra/site/publish/doc/latest/searchindex.js
cassandra/site/publish/doc/latest/tools/nodetool/bootstrap.html
cassandra/site/publish/doc/latest/tools/nodetool/enablefullquerylog.html
cassandra/site/publish/doc/latest/tools/nodetool/garbagecollect.html
cassandra/site/publish/doc/latest/tools/nodetool/gettimeout.html
cassandra/site/publish/doc/latest/tools/nodetool/nodetool.html
cassandra/site/publish/doc/latest/tools/nodetool/settimeout.html
cassandra/site/publish/doc/latest/tools/nodetool/toppartitions.html
cassandra/site/publish/feed.xml
cassandra/site/src/doc/4.0/_sources/tools/nodetool/nodetool.rst.txt
cassandra/site/src/doc/4.0/objects.inv
cassandra/site/src/doc/4.0/searchindex.js
cassandra/site/src/doc/4.0/tools/nodetool/bootstrap.html
cassandra/site/src/doc/4.0/tools/nodetool/enablefullquerylog.html
cassandra/site/src/doc/4.0/tools/nodetool/garbagecollect.html
cassandra/site/src/doc/4.0/tools/nodetool/gettimeout.html
cassandra/site/src/doc/4.0/tools/nodetool/nodetool.html
cassandra/site/src/doc/4.0/tools/nodetool/settimeout.html
cassandra/site/src/doc/4.0/tools/nodetool/toppartitions.html

Modified: cassandra/site/publish/doc/3.11.3/index.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/publish/doc/3.11.3/index.html?rev=1850607=1850606=1850607=diff
==
--- cassandra/site/publish/doc/3.11.3/index.html (original)
+++ cassandra/site/publish/doc/3.11.3/index.html Mon Jan  7 03:10:30 2019
@@ -19,7 +19,7 @@
   http://cassandra.apache.org/doc/3.11.3/;>
 
   https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css; 
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
 crossorigin="anonymous">
-  
+  
   
 
   
@@ -35,7 +35,7 @@
 
   
 
-  
+  
   Apache Software Foundation 
   
 http://www.apache.org;>Apache Homepage
@@ -48,7 +48,7 @@
   
 
   
-  Apache Cassandra
+  Apache Cassandra
   
 
   
@@ -73,17 +73,17 @@
   
   
 
-
+
   
 
   
 
-  Home
-  Download
-  Documentation
-  Community
+  Home
+  Download
+  Documentation
+  Community
   
-Blog
+Blog
 
 
   
@@ -211,7 +211,7 @@
 
 
 https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js";>
-
+
 https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"; 

svn commit: r1850607 [3/5] - in /cassandra/site: publish/ publish/doc/3.11.3/ publish/doc/3.11/ publish/doc/4.0/ publish/doc/4.0/tools/nodetool/ publish/doc/latest/ publish/doc/latest/tools/nodetool/

2019-01-06 Thread mck
Modified: 
cassandra/site/publish/doc/latest/tools/nodetool/enablefullquerylog.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/publish/doc/latest/tools/nodetool/enablefullquerylog.html?rev=1850607=1850606=1850607=diff
==
--- cassandra/site/publish/doc/latest/tools/nodetool/enablefullquerylog.html 
(original)
+++ cassandra/site/publish/doc/latest/tools/nodetool/enablefullquerylog.html 
Mon Jan  7 03:10:30 2019
@@ -153,41 +153,48 @@
 
 Usage¶
 NAME
-nodetool enablefullquerylog - Enable full query logging
+nodetool enablefullquerylog - Enable full query logging, 
defaults for
+the options are configured in cassandra.yaml
 
 SYNOPSIS
 nodetool [(-h host | --host host)] [(-p port 
| --port 
port)]
 [(-pp | --print-port)] [(-pw password | 
--password password)]
 [(-pwf passwordFilePath | --password-file 
passwordFilePath)]
 [(-u username | 
--username username)] enablefullquerylog
-[--blocking] [--max-log-size max_log_size]
-[--max-queue-weight max_queue_weight] [--path path]
-[--roll-cycle roll_cycle]
+[--archive-command 
archive_command] [--blocking]
+[--max-archive-retries 
archive_retries]
+[--max-log-size max_log_size] [--max-queue-weight max_queue_weight]
+[--path path] [--roll-cycle roll_cycle]
 
 OPTIONS
+--archive-command archive_command
+Command that will handle archiving rolled full query log 
files.
+Format is /path/to/script.sh %path where %path 
will be replaced
+with the file to archive
+
 --blocking
 If the queue is full 
whether to block producers or drop samples.
-Default true.
 
 -h host, --host host
 Node hostname or ip address
 
+--max-archive-retries archive_retries
+Max number of archive retries.
+
 --max-log-size max_log_size
 How many bytes of log 
data to store before dropping segments. Might
 not be respected if a 
log file hasnt rolled so it can be deleted.
-Default 16 gigabytes.
 
 --max-queue-weight max_queue_weight
 Maximum number of bytes of 
query data to queue to 
disk before
-blocking or dropping samples. Default 256 
megabytes.
+blocking or dropping samples.
 
 -p port, --port port
 Remote jmx agent port number
 
 --path path
 Path to store the full 
query log at. Will have its 
contents
-recursively deleted. If 
not set the value from 
cassandra.yaml will
-be used.
+recursively deleted.
 
 -pp, --print-port
 Operate in 4.0 mode with 
hosts disambiguated by port number
@@ -199,8 +206,7 @@
 Path to the JMX password 
file
 
 --roll-cycle roll_cycle
-How often to roll the 
log file (MINUTELY, HOURLY, DAILY). Default
-HOURLY.
+How often to roll the 
log file (MINUTELY, HOURLY, DAILY).
 
 -u username, --username username
 Remote jmx agent username

Added: 
cassandra/site/publish/doc/latest/tools/nodetool/enableoldprotocolversions.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/publish/doc/latest/tools/nodetool/enableoldprotocolversions.html?rev=1850607=auto
==
--- 
cassandra/site/publish/doc/latest/tools/nodetool/enableoldprotocolversions.html 
(added)
+++ 
cassandra/site/publish/doc/latest/tools/nodetool/enableoldprotocolversions.html 
Mon Jan  7 03:10:30 2019
@@ -0,0 +1,252 @@
+
+
+  
+
+
+
+
+  
+  
+  
+  
+  
+  
+
+
+  Documentation
+
+  http://cassandra.apache.org/doc/latest/tools/nodetool/enableoldprotocolversions.html;>
+
+  https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css; 
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
 crossorigin="anonymous">
+  
+  
+  
+  
+
+
+  https://use.fontawesome.com/releases/v5.2.0/css/all.css; 
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
 crossorigin="anonymous">
+  
+  http://cassandra.apache.org/feed.xml; title="Apache Cassandra Website" />
+
+
+  
+
+
+  
+
+  
+
+  
+  Apache Software Foundation 
+  
+http://www.apache.org;>Apache Homepage
+http://www.apache.org/licenses/;>License
+http://www.apache.org/foundation/sponsorship.html;>Sponsorship
+http://www.apache.org/foundation/thanks.html;>Thanks
+http://www.apache.org/security/;>Security
+  
+
+  
+
+  
+  Apache Cassandra
+  
+
+  
+
+Documentation
+
+  
+
+  
+
+  
+  

[jira] [Created] (CASSANDRA-14955) Documentation can be built without nodetool by accident

2019-01-06 Thread Joseph Lynch (JIRA)
Joseph Lynch created CASSANDRA-14955:


 Summary: Documentation can be built without nodetool by accident
 Key: CASSANDRA-14955
 URL: https://issues.apache.org/jira/browse/CASSANDRA-14955
 Project: Cassandra
  Issue Type: Bug
Reporter: Joseph Lynch






--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



svn commit: r1850606 - in /cassandra/site: publish/ publish/css/ publish/doc/3.11.3/ publish/doc/3.11.3/architecture/ publish/doc/3.11.3/configuration/ publish/doc/3.11.3/cql/ publish/doc/3.11.3/data_

2019-01-06 Thread mck
Author: mck
Date: Mon Jan  7 02:39:04 2019
New Revision: 1850606

URL: http://svn.apache.org/viewvc?rev=1850606=rev
Log:
Generate and publish latest changes from cassandra-site, cassandra-3.11 and 
cassandra trunk.

generated by Mick Semb Wever; reviewed by Joey Lynch, Anthony Grasso 


[This commit notification would consist of 116 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-14065) Docs: Fix page width exceeding the viewport

2019-01-06 Thread mck (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-14065?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

mck updated CASSANDRA-14065:

   Resolution: Fixed
Fix Version/s: (was: 3.11.x)
   (was: 4.x)
   4.0
   3.11.4
   Status: Resolved  (was: Ready to Commit)

Committed all patches to cassandra and cassandra-site.

> Docs: Fix page width exceeding the viewport
> ---
>
> Key: CASSANDRA-14065
> URL: https://issues.apache.org/jira/browse/CASSANDRA-14065
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Legacy/Documentation and Website
>Reporter: Stefan Podkowinski
>Priority: Major
> Fix For: 3.11.4, 4.0
>
> Attachments: 0001-Docs-optimize-css-layouting.patch, 
> 0002-site_svn-css.diff, 0003-site_svn-fixnavigation.diff, 14065-trunk.patch
>
>
> Ticket for [#175|https://github.com/apache/cassandra/pull/175] / 
> [#176|https://github.com/apache/cassandra/pull/176].
> The layout seems to adapt more natural after applying the patch with less 
> overlapping content. Seems to fix a real issue with our template.
> However, I'm not really sure about the extra.css changes, as the compile 
> website (build via jekyll) doesn't seem to reference the css file anywhere..



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



svn commit: r1850596 - in /cassandra/site/src: _includes/footer.html css/sphinx.scss css/style.scss

2019-01-06 Thread mck
Author: mck
Date: Sun Jan  6 21:17:10 2019
New Revision: 1850596

URL: http://svn.apache.org/viewvc?rev=1850596=rev
Log:
Docs: Fix page width exceeding the viewport

 patch by Stefan Podkowinski; reviewed by Mick Semb Wever for CASSANDRA-14065

Modified:
cassandra/site/src/_includes/footer.html
cassandra/site/src/css/sphinx.scss
cassandra/site/src/css/style.scss

Modified: cassandra/site/src/_includes/footer.html
URL: 
http://svn.apache.org/viewvc/cassandra/site/src/_includes/footer.html?rev=1850596=1850595=1850596=diff
==
--- cassandra/site/src/_includes/footer.html (original)
+++ cassandra/site/src/_includes/footer.html Sun Jan  6 21:17:10 2019
@@ -39,37 +39,6 @@
 {% if page.extra-footer %}
 {{ page.extra-footer }}
 {% endif %}
-
-$(function() {
-// Stick the #nav to the top of the window
-var nav = $('.doc-navigation');
-var navHomeY = nav.offset().top;
-var isFixed = false;
-var $w = $(window);
-$w.scroll(function() {
-var scrollTop = $w.scrollTop();
-var shouldBeFixed = $w.width() > 991 && scrollTop >= navHomeY - 10;
-if (shouldBeFixed && !isFixed) {
-nav.css({
-position: 'fixed',
-top: 0,
-left: nav.offset().left,
-width: nav.width(),
-});
-nav.addClass('fixed-navigation');
-isFixed = true;
-}
-else if (!shouldBeFixed && isFixed)
-{
-nav.css({
-position: 'static'
-});
-nav.removeClass('fixed-navigation');
-isFixed = false;
-}
-});
-});
-
 {% endif %}
 
 

cassandra git commit: ninja-fix to release_process doc: point to correction location of KEYS file.

2019-01-06 Thread mck
Repository: cassandra
Updated Branches:
  refs/heads/trunk b22756420 -> 77125b76c


ninja-fix to release_process doc: point to correction location of KEYS file.


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/77125b76
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/77125b76
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/77125b76

Branch: refs/heads/trunk
Commit: 77125b76cb622c18b9ff9ce7eae78632abec1e20
Parents: b227564
Author: Mick Semb Wever 
Authored: Mon Jan 7 08:09:24 2019 +1100
Committer: Mick Semb Wever 
Committed: Mon Jan 7 08:09:24 2019 +1100

--
 doc/source/development/release_process.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/cassandra/blob/77125b76/doc/source/development/release_process.rst
--
diff --git a/doc/source/development/release_process.rst 
b/doc/source/development/release_process.rst
index d5deff9..303c28b 100644
--- a/doc/source/development/release_process.rst
+++ b/doc/source/development/release_process.rst
@@ -55,7 +55,7 @@ Create and publish your GPG key
 To create a GPG key, follow the `guidelines 
`_.
 Include your public key in::
 
-  https://dist.apache.org/repos/dist/cassandra/KEYS
+  https://dist.apache.org/repos/dist/release/cassandra/KEYS
 
 
 Publish your GPG key in a PGP key server, such as `MIT Keyserver 
`_.


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[3/3] cassandra git commit: Merge branch 'cassandra-3.11' into trunk

2019-01-06 Thread mck
Merge branch 'cassandra-3.11' into trunk


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/b2275642
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/b2275642
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/b2275642

Branch: refs/heads/trunk
Commit: b22756420f87a59a84c61ed5cdcc30c2cb305ba9
Parents: 973e72b ee5e4f6
Author: Mick Semb Wever 
Authored: Mon Jan 7 07:57:14 2019 +1100
Committer: Mick Semb Wever 
Committed: Mon Jan 7 07:57:57 2019 +1100

--
 doc/source/_static/extra.css  | 7 +++
 doc/source/_theme/cassandra_theme/layout.html | 6 ++
 2 files changed, 9 insertions(+), 4 deletions(-)
--



-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[2/3] cassandra git commit: Docs: Fix page width exceeding the viewport

2019-01-06 Thread mck
Docs: Fix page width exceeding the viewport

Closes #175 #176

 patch by Sahal Sajjad, Stefan Podkowinski; reviewed by Stefan Podkowinski, 
Mick Semb Wever for CASSANDRA-14065


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/ee5e4f63
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/ee5e4f63
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/ee5e4f63

Branch: refs/heads/trunk
Commit: ee5e4f63c55c1a39984d349d46c0a8d83c19e506
Parents: 9755e26
Author: Mick Semb Wever 
Authored: Mon Jan 7 07:48:10 2019 +1100
Committer: Mick Semb Wever 
Committed: Mon Jan 7 07:48:10 2019 +1100

--
 doc/source/_static/extra.css  | 7 +++
 doc/source/_theme/cassandra_theme/layout.html | 6 ++
 2 files changed, 9 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cassandra/blob/ee5e4f63/doc/source/_static/extra.css
--
diff --git a/doc/source/_static/extra.css b/doc/source/_static/extra.css
index fd3573f..715e2a8 100644
--- a/doc/source/_static/extra.css
+++ b/doc/source/_static/extra.css
@@ -50,3 +50,10 @@ div#wipwarning {
 padding: 10px 30px;
 margin-bottom: 30px;
 }
+.content-container{
+padding-right: 15px;
+padding-left: 15px;
+margin-right: auto;
+margin-left: auto;
+width:100%;
+}

http://git-wip-us.apache.org/repos/asf/cassandra/blob/ee5e4f63/doc/source/_theme/cassandra_theme/layout.html
--
diff --git a/doc/source/_theme/cassandra_theme/layout.html 
b/doc/source/_theme/cassandra_theme/layout.html
index c7c2bff..186e043 100644
--- a/doc/source/_theme/cassandra_theme/layout.html
+++ b/doc/source/_theme/cassandra_theme/layout.html
@@ -39,7 +39,7 @@ extra-footer: '
 ---
 
   
-
+
   
 
   
@@ -73,7 +73,7 @@ extra-footer: '
 
 
   
-
+
   {% block body %}{% endblock %}
 
   {% if next or prev %}
@@ -89,7 +89,5 @@ extra-footer: '
 
   
 
-
-
   
 


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[1/3] cassandra git commit: Docs: Fix page width exceeding the viewport

2019-01-06 Thread mck
Repository: cassandra
Updated Branches:
  refs/heads/cassandra-3.11 9755e2607 -> ee5e4f63c
  refs/heads/trunk 973e72b0c -> b22756420


Docs: Fix page width exceeding the viewport

Closes #175 #176

 patch by Sahal Sajjad, Stefan Podkowinski; reviewed by Stefan Podkowinski, 
Mick Semb Wever for CASSANDRA-14065


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/ee5e4f63
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/ee5e4f63
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/ee5e4f63

Branch: refs/heads/cassandra-3.11
Commit: ee5e4f63c55c1a39984d349d46c0a8d83c19e506
Parents: 9755e26
Author: Mick Semb Wever 
Authored: Mon Jan 7 07:48:10 2019 +1100
Committer: Mick Semb Wever 
Committed: Mon Jan 7 07:48:10 2019 +1100

--
 doc/source/_static/extra.css  | 7 +++
 doc/source/_theme/cassandra_theme/layout.html | 6 ++
 2 files changed, 9 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cassandra/blob/ee5e4f63/doc/source/_static/extra.css
--
diff --git a/doc/source/_static/extra.css b/doc/source/_static/extra.css
index fd3573f..715e2a8 100644
--- a/doc/source/_static/extra.css
+++ b/doc/source/_static/extra.css
@@ -50,3 +50,10 @@ div#wipwarning {
 padding: 10px 30px;
 margin-bottom: 30px;
 }
+.content-container{
+padding-right: 15px;
+padding-left: 15px;
+margin-right: auto;
+margin-left: auto;
+width:100%;
+}

http://git-wip-us.apache.org/repos/asf/cassandra/blob/ee5e4f63/doc/source/_theme/cassandra_theme/layout.html
--
diff --git a/doc/source/_theme/cassandra_theme/layout.html 
b/doc/source/_theme/cassandra_theme/layout.html
index c7c2bff..186e043 100644
--- a/doc/source/_theme/cassandra_theme/layout.html
+++ b/doc/source/_theme/cassandra_theme/layout.html
@@ -39,7 +39,7 @@ extra-footer: '
 ---
 
   
-
+
   
 
   
@@ -73,7 +73,7 @@ extra-footer: '
 
 
   
-
+
   {% block body %}{% endblock %}
 
   {% if next or prev %}
@@ -89,7 +89,5 @@ extra-footer: '
 
   
 
-
-
   
 


-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org