Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mention root.cern instead of root.cern.ch #6114

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bindings/jsmva/python/JsMVA/JPyInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def captureObjects(*args):
## Class for creating the output scripts and inserting them to cell output
class JsDraw:
## Base repository
__jsMVARepo = "https://root.cern.ch/js/jsmva/latest"
__jsMVARepo = "https://root.cern/js/jsmva/latest"

## String containing the link to JavaScript files
__jsMVASourceDir = __jsMVARepo + "/js"
Expand Down
2 changes: 1 addition & 1 deletion bindings/jsmva/python/JsMVA/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ def loadExtensions():
extMgr = ExtensionManager(ip)
extMgr.load_extension("JsMVA.JsMVAMagic")

loadExtensions()
loadExtensions()
2 changes: 1 addition & 1 deletion cmake/modules/FindZSTD.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ if(ZSTD_FOUND)
IMPORTED_LOCATION "${ZSTD_LIBRARIES}"
INTERFACE_INCLUDE_DIRECTORIES "${ZSTD_INCLUDE_DIRS}")
endif()
endif()
endif()
2 changes: 1 addition & 1 deletion core/base/src/TColor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ End_Macro
## <a name="C06"></a> High quality predefined palettes
\since **6.04:**
62 high quality palettes are predefined with 255 colors each.
Despite the [disadvantages of the Rainbow color map](https://root.cern.ch/rainbow-color-map),
Despite the [disadvantages of the Rainbow color map](https://root.cern/rainbow-color-map),
it was kept in the list of predefined color maps.
These palettes can be accessed "by name" with `gStyle->SetPalette(num)`.
`num` can be taken within the following enum:
Expand Down
2 changes: 1 addition & 1 deletion core/base/src/TDirectory.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ void TDirectory::rmdir(const char *name)
/// By default a message is printed. Use option "q" to not print the message.
/// If filename contains ".json" extension, JSON representation of the object
/// will be created and saved in the text file. Such file can be used in
/// JavaScript ROOT (https://root.cern.ch/js/) to display object in web browser
/// JavaScript ROOT (https://root.cern/js/) to display object in web browser
/// When creating JSON file, option string may contain compression level from 0 to 3 (default 0)

Int_t TDirectory::SaveObjectAs(const TObject *obj, const char *filename, Option_t *option) const
Expand Down
2 changes: 1 addition & 1 deletion core/base/src/TRef.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ will automatically invoke a script GetWebHistogram.C via the interpreter.
An example of a GetWebHistogram.C script is shown below
~~~ {.cpp}
void GetWebHistogram() {
TFile *f= TFile::Open("http://root.cern.ch/files/pippa.root");
TFile *f= TFile::Open("http://root.cern/files/pippa.root");
f->cd("DM/CJ");
TH1 *h6 = (TH1*)gDirectory->Get("h6");
h6->SetDirectory(0);
Expand Down
4 changes: 2 additions & 2 deletions core/base/src/TString.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -2279,7 +2279,7 @@ void TString::FormImp(const char *fmt, va_list ap)
/// TString formatted;
/// formatted.Form("%s in <%s>: %s", type, location, msg);
///
/// lines.emplace_back(TString::Format("Welcome to ROOT %s%%shttp://root.cern.ch",
/// lines.emplace_back(TString::Format("Welcome to ROOT %s%%shttp://root.cern",
/// gROOT->GetVersion()));
/// ~~~
///
Expand All @@ -2299,7 +2299,7 @@ void TString::Form(const char *va_(fmt), ...)
/// descriptor and return a TString. Similar to TString::Form() but it is
/// not needed to first create a TString.
/// ~~~ {.cpp}
/// lines.emplace_back(TString::Format("Welcome to ROOT %s%%shttp://root.cern.ch",
/// lines.emplace_back(TString::Format("Welcome to ROOT %s%%shttp://root.cern",
/// gROOT->GetVersion()));
/// TString formatted;
/// formatted.Form("%s in <%s>: %s", type, location, msg);
Expand Down
4 changes: 2 additions & 2 deletions core/base/src/TStyle.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ This class includes functions to set some of the following object attributes.
All objects that can be drawn in a pad inherit from one or more attribute classes
like TAttLine, TAttFill, TAttText, TAttMarker. When the objects are created, their
default attributes are taken from the current style. The current style is an object
of the class[TStyle](https://root.cern.ch/doc/master/classTStyle.html) and can be
of the class[TStyle](https://root.cern/doc/master/classTStyle.html) and can be
referenced via the global variable `gStyle` (in TStyle.h).

ROOT provides two styles called "Default" and "Plain". The "Default"
Expand Down Expand Up @@ -99,7 +99,7 @@ You can create additional styles with:
st1->cd(); this becomes now the current style gStyle
```

In your [rootlogon.C](https://root.cern.ch/doc/master/classexamples/startsession.log.html)
In your [rootlogon.C](https://root.cern/doc/master/classexamples/startsession.log.html)
file, you can redefine the default parameters via statements like:

```
Expand Down
2 changes: 1 addition & 1 deletion core/base/src/TVirtualMutex.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ TVirtualMutex *gGlobalMutex = 0;

// From TVirtualRWMutex.h:
ROOT::TVirtualRWMutex::State::~State() = default;
ROOT::TVirtualRWMutex::StateDelta::~StateDelta() = default;
ROOT::TVirtualRWMutex::StateDelta::~StateDelta() = default;
8 changes: 4 additions & 4 deletions etc/gdb-backtrace.sh
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,9 @@ $line"
else
echo 'The crash is most likely caused by a problem in your script.'
echo 'Try to compile it (.L myscript.C+g) and fix any errors.'
echo 'You may get help by asking at the ROOT forum http://root.cern.ch/forum'
echo 'You may get help by asking at the ROOT forum http://root.cern/forum'
echo 'If you are really convinced it is a bug in ROOT then please submit a report'
echo 'at http://root.cern.ch/bugs Please post the ENTIRE stack trace'
echo 'at http://root.cern/bugs Please post the ENTIRE stack trace'
echo 'from above as an attachment in addition to anything else'
echo 'that might help us fixing this issue.'
fi
Expand All @@ -236,9 +236,9 @@ $line"
cat $messfile | tr '%' '\n'
else
echo 'The lines below might hint at the cause of the crash.'
echo 'You may get help by asking at the ROOT forum http://root.cern.ch/forum'
echo 'You may get help by asking at the ROOT forum http://root.cern/forum'
echo 'Only if you are really convinced it is a bug in ROOT then please submit a'
echo 'report at http://root.cern.ch/bugs Please post the ENTIRE stack trace'
echo 'report at http://root.cern/bugs Please post the ENTIRE stack trace'
echo 'from above as an attachment in addition to anything else'
echo 'that might help us fixing this issue.'
fi
Expand Down
2 changes: 1 addition & 1 deletion etc/helgrind-root.supp
Original file line number Diff line number Diff line change
Expand Up @@ -390,4 +390,4 @@
Helgrind:Race
fun:__new_exitfn
fun:__cxa_atexit
}
}
8 changes: 4 additions & 4 deletions etc/html/HELP.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ <h3><a id="module_libdep"></a>Modules' Library Dependencies</h3>
<a href="./LibraryDependencies.html">Library Dependencies Chart</a>.

<h2><a id="class"></a>Class Reference</h2>
Pages like the one for <a href="http://root.cern.ch/root/html/TH2.html">TH2</a> are
Pages like the one for <a href="http://root.cern/root/html/TH2.html">TH2</a> are
guitargeek marked this conversation as resolved.
Show resolved Hide resolved
class references. They document the use and functionality of a class.

<h3><a id="class_sect"></a>Sections</h3>
Expand Down Expand Up @@ -152,7 +152,7 @@ <h3><a id="class_mem"></a>List of Data and Function Members</h3>
them into a file.
Because methods should have reasonable names, often the method name itself is already
a hint on what it does.
If you want to get a <a href="http://root.cern.ch/root/html/TNamed.html">TNamed</a>'s
If you want to get a <a href="http://root.cern/root/html/TNamed.html">TNamed</a>'s
guitargeek marked this conversation as resolved.
Show resolved Hide resolved
name, you will immediately see TNamed::GetName() in its list of functions.
A click on this name will send you to the documentation for the method.
If you <a href="class_mem_disp">enabled the display of inherited members</a> you will see
Expand All @@ -176,9 +176,9 @@ <h4><a id="class_mem_access"></a>Access (public / protected / private)</h4>

<h4><a id="class_mem_inh"></a>Inheritance</h4>
You can often access members of a class's base classes, just as if they are defined
in the derived class. A <a href="http://root.cern.ch/root/html/TH1.html">histogram</a>,
in the derived class. A <a href="http://root.cern/root/html/TH1.html">histogram</a>,
guitargeek marked this conversation as resolved.
Show resolved Hide resolved
for example, has a name, and you can access it using GetName() as defined in its base
class <a href="http://root.cern.ch/root/html/TNamed.html">TNamed</a>. If you want to see
class <a href="http://root.cern/root/html/TNamed.html">TNamed</a>. If you want to see
guitargeek marked this conversation as resolved.
Show resolved Hide resolved
all available members, and not just the ones defined in the current class, in the
<a href="#class_mem_disp">display options</a>. They will be prefixed with the name of
the class they are defined in.
Expand Down
2 changes: 1 addition & 1 deletion etc/notebook/JsMVA/css/NetworkDesigner.css
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,4 @@

#trainingstrategy_dialog label {
padding-right: 10px;
}
}
2 changes: 1 addition & 1 deletion etc/notebook/JsMVA/css/NetworkDesigner.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion etc/notebook/JsMVA/css/TMVAHTMLOutput.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions etc/notebook/html/templates/root_notebook.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<div class="container" id="notebook-container">

<div id="root_banner">
<a href="https://root.cern.ch" title="ROOT Data Analysis Framework">
<img src="https://root.cern.ch/drupal/sites/default/files/images/root6-banner.jpg" alt="ROOT Notebook"/>
<a href="https://root.cern" title="ROOT Data Analysis Framework">
<img src="https://root.cern/drupal/sites/default/files/images/root6-banner.jpg" alt="ROOT Notebook"/>
</a>
</div>

Expand Down
6 changes: 3 additions & 3 deletions etc/proof/utils/proofinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pworkers=0
pconfig=
#--- stored in $saverc

prompt_rootrepository="ftp://root.cern.ch/root/"
prompt_rootrepository="ftp://root.cern/root/"

prog=`basename $0`
progdir=`dirname $0`
Expand Down Expand Up @@ -476,13 +476,13 @@ while [ "$REPEAT_LOOP" = 1 ]; do
echo "Give URL to remote ROOT binary distribution tar file."
echo "This only makes sense if all the cluster nodes have the same architecture."
echo "Requires curl or wget on this machine."
echo "Example: ftp://root.cern.ch/root/root_v5.17.04.Linux.slc4_amd64.gcc3.4.tar.gz"
echo "Example: ftp://root.cern/root/root_v5.17.04.Linux.slc4_amd64.gcc3.4.tar.gz"
echo ""
echo "-- Option 3 --"
echo "Give URL to remote ROOT binary distribution repository."
echo "The remote nodes will try to download the binary version matching"
echo "their architecture. Requires curl or wget on the remote nodes."
echo "Example: ftp://root.cern.ch/root/"
echo "Example: ftp://root.cern/root/"
echo ""
echo "-- Option h --"
echo "Selecting option h displays this help message."
Expand Down
Loading