Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void good() {
<li>C++ FAQ: <a href="https://isocpp.org/wiki/faq/exceptions#what-to-throw">
What should I throw?</a>, <a href="https://isocpp.org/wiki/faq/exceptions#what-to-catch">
What should I catch?</a>.</li>
<li>Wikibooks: <a href="http://en.wikibooks.org/wiki/C%2B%2B_Programming/Exception_Handling#Throwing_objects">
<li>Wikibooks: <a href="https://en.wikibooks.org/wiki/C%2B%2B_Programming/Exception_Handling#Throwing_objects">
Throwing objects</a>.</li>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void good() {
<li>C++ FAQ: <a href="https://isocpp.org/wiki/faq/exceptions#what-to-throw">
What should I throw?</a>, <a href="https://isocpp.org/wiki/faq/exceptions#what-to-catch">
What should I catch?</a>.</li>
<li>Wikibooks: <a href="http://en.wikibooks.org/wiki/C%2B%2B_Programming/Exception_Handling#Throwing_objects">
<li>Wikibooks: <a href="https://en.wikibooks.org/wiki/C%2B%2B_Programming/Exception_Handling#Throwing_objects">
Throwing objects</a>.</li>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<li>cplusplus.com: <a href="http://www.cplusplus.com/reference/array/array/">
C++: array</a>.</li>
<li>Wikipedia: <a href="http://en.wikipedia.org/wiki/Bounds_checking">
<li>Wikipedia: <a href="https://en.wikipedia.org/wiki/Bounds_checking">
Bounds checking</a>.</li>


Expand Down
2 changes: 1 addition & 1 deletion cpp/ql/src/Best Practices/Likely Errors/Slicing.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ These assignments slice off all the fields added by the derived type, and can ca
<references>

<li>
Wikipedia: <a href="http://en.wikipedia.org/wiki/Object_slicing">Object slicing</a>.
Wikipedia: <a href="https://en.wikipedia.org/wiki/Object_slicing">Object slicing</a>.
</li>
<li>
DevX.com: <a href="http://www.devx.com/tips/Tip/14570">Slicing in C++</a>.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ then replace all the relevant occurrences in the code.</p>
<references>

<li>
<a href="http://en.wikipedia.org/wiki/Magic_number_%28programming%29#Unnamed_numerical_constants">Magic number (Wikipedia)</a>
<a href="https://en.wikipedia.org/wiki/Magic_number_%28programming%29#Unnamed_numerical_constants">Magic number (Wikipedia)</a>
</li>
<li>
Mats Henricson and Erik Nyquist, <i>Industrial Strength C++</i>, published by Prentice Hall PTR (1997).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ constant.</p>


<li>
<a href="http://en.wikipedia.org/wiki/Magic_string">Magic string (Wikipedia)</a>
<a href="https://en.wikipedia.org/wiki/Magic_string">Magic string (Wikipedia)</a>
</li>
<li>
Mats Henricson and Erik Nyquist, <i>Industrial Strength C++</i>, published by Prentice Hall PTR (1997).
Expand Down
2 changes: 1 addition & 1 deletion cpp/ql/src/Best Practices/RuleOfThree.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
</recommendation>

<references>
<li>Wikipedia: <a href="http://en.wikipedia.org/wiki/Rule_of_three_(C%2B%2B_programming)">Rule of three (C++ programming)</a></li>
<li>Wikipedia: <a href="https://en.wikipedia.org/wiki/Rule_of_three_(C%2B%2B_programming)">Rule of three (C++ programming)</a></li>
</references>
</qhelp>
2 changes: 1 addition & 1 deletion cpp/ql/src/Best Practices/RuleOfTwo.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ should never be called.
<references>

<li>
<a href="http://en.wikipedia.org/wiki/Rule_of_three_(C%2B%2B_programming)">Rule of Three [Wikipedia]</a>
<a href="https://en.wikipedia.org/wiki/Rule_of_three_(C%2B%2B_programming)">Rule of Three [Wikipedia]</a>
</li>
<li>
<a href="http://www.artima.com/cppsource/bigtwo.html">The Law of The Big Two</a>
Expand Down
4 changes: 2 additions & 2 deletions cpp/ql/src/Documentation/DocumentApi.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ Add comments to document the purpose of the function. In particular, ensure that
<references>

<li>
C++ Programming Wikibook: <a href="http://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">Comments</a>
C++ Programming Wikibook: <a href="https://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">Comments</a>
</li>
<li>
Wikipedia: <a href="http://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Need for comments</a>
Wikipedia: <a href="https://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Need for comments</a>
</li>


Expand Down
2 changes: 1 addition & 1 deletion cpp/ql/src/Documentation/FixmeComments.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Fix the functionality indicated by the comment. If the comment no longer applies
<references>

<li>
<a href="http://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Tags">Wikipedia: Comment tags</a>
<a href="https://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Tags">Wikipedia: Comment tags</a>
</li>
<li>
<a href="http://wordaligned.org/articles/todo">The case against TODO (and FIXME)</a>
Expand Down
2 changes: 1 addition & 1 deletion cpp/ql/src/Documentation/TodoComments.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Implement the functionality indicated by the comment. If the comment no longer a
<references>

<li>
<a href="http://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Tags">Wikipedia: Comment tags</a>
<a href="https://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Tags">Wikipedia: Comment tags</a>
</li>
<li>
<a href="http://www.approxion.com/?p=39">TODO or not TODO</a>
Expand Down
4 changes: 2 additions & 2 deletions cpp/ql/src/Documentation/UncommentedFunction.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ cohesive functions.
<references>

<li>
<a href="http://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">C++ Programming, Coding style conventions</a>
<a href="https://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">C++ Programming, Coding style conventions</a>
</li>
<li>
<a href="http://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Wikipedia: Need for comments</a>
<a href="https://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Wikipedia: Need for comments</a>
</li>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ the second file, for example to ANOTHER_HEADER_FILE_H.</p>
<references>

<li>
Wikipedia: <a href="http://en.wikipedia.org/wiki/Include_guard">Include guard</a>
Wikipedia: <a href="https://en.wikipedia.org/wiki/Include_guard">Include guard</a>
</li>

</references>
Expand Down
2 changes: 1 addition & 1 deletion cpp/ql/src/Likely Bugs/Arithmetic/BadCheckOdd.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ As a result, this check incorrectly considers all negative numbers as even.
MSDN Library: <a href="https://docs.microsoft.com/en-us/cpp/cpp/multiplicative-operators-and-the-modulus-operator">Multiplicative Operators and the Modulus Operator</a>.
</li>
<li>
Wikipedia: <a href="http://en.wikipedia.org/wiki/Modulo_operation#Common_pitfalls">Modulo Operation - Common pitfalls</a>.
Wikipedia: <a href="https://en.wikipedia.org/wiki/Modulo_operation#Common_pitfalls">Modulo Operation - Common pitfalls</a>.
</li>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ An assignment is only flagged if its right hand side is a compile-time constant.
Tutorialspoint - The C++ Programming Language: <a href="http://www.tutorialspoint.com/cplusplus/cpp_operators.htm">Operators in C++</a>
</li>
<li>
Wikipedia: <a href="http://en.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B#Comparison_operators.2Frelational_operators">Operators in C and C++</a>
Wikipedia: <a href="https://en.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B#Comparison_operators.2Frelational_operators">Operators in C and C++</a>
</li>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The rule flags every occurrence of an equality operator in a position where its
Tutorialspoint - The C++ Programming Language: <a href="http://www.tutorialspoint.com/cplusplus/cpp_operators.htm">Operators in C++</a>
</li>
<li>
Wikipedia: <a href="http://en.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B#Comparison_operators.2Frelational_operators">Operators in C and C++</a>
Wikipedia: <a href="https://en.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B#Comparison_operators.2Frelational_operators">Operators in C and C++</a>
</li>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public:

<li>Dr Dobb's Journal: <a href="http://www.drdobbs.com/delegating-constructors/184401647">
Delegating constructors?</a></li>
<li>Wikipedia: <a href="http://en.wikipedia.org/wiki/C%2B%2B11#Object_construction_improvement">
<li>Wikipedia: <a href="https://en.wikipedia.org/wiki/C%2B%2B11#Object_construction_improvement">
Object construction improvement in C++11</a>.</li>


Expand Down
4 changes: 2 additions & 2 deletions cpp/ql/src/Metrics/Files/FCommentRatio.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ documenting the public functions first.</p>
<references>

<li>
<a href="http://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">C++ Programming, Coding style conventions</a>
<a href="https://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">C++ Programming, Coding style conventions</a>
</li>
<li>
<a href="http://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Wikipedia: Need for comments</a>
<a href="https://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Wikipedia: Need for comments</a>
</li>


Expand Down
4 changes: 2 additions & 2 deletions cpp/ql/src/Metrics/Files/FCyclomaticComplexity.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ T. J. McCabe, <em>A Complexity Measure</em>. IEEE Transactions on Software Engin
Dave Thomas, <a href="http://www.jot.fm/issues/issue_2005_01/column1/">Refactoring as Meta Programming?</a>, in Journal of Object Technology, vol. 4, no. 1, January-February 2005, pp. 7-11.
</li>
<li>
Wikipedia: <a href="http://en.wikipedia.org/wiki/Cyclomatic_complexity">Cyclomatic complexity</a>
Wikipedia: <a href="https://en.wikipedia.org/wiki/Cyclomatic_complexity">Cyclomatic complexity</a>
</li>
<li>
Wikipedia: <a href="http://en.wikipedia.org/wiki/Code_refactoring">Code refactoring</a>
Wikipedia: <a href="https://en.wikipedia.org/wiki/Code_refactoring">Code refactoring</a>
</li>

</references>
Expand Down
2 changes: 1 addition & 1 deletion cpp/ql/src/Metrics/Files/FLinesOfCode.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
M. Fowler. <em>Refactoring</em>. Addison-Wesley, 1999.
</li>
<li>
<a href="http://en.wikipedia.org/wiki/Code_refactoring">Wikipedia: Code refactoring</a>
<a href="https://en.wikipedia.org/wiki/Code_refactoring">Wikipedia: Code refactoring</a>
</li>
<li>
<a href="http://www.jot.fm/issues/issue_2005_01/column1/">Refactoring as Meta Programming?</a>
Expand Down
4 changes: 2 additions & 2 deletions cpp/ql/src/Metrics/Files/FLinesOfComments.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ should be given to long files.</p>
<references>

<li>
<a href="http://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">C++ Programming, Coding style conventions</a>
<a href="https://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">C++ Programming, Coding style conventions</a>
</li>
<li>
<a href="http://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Wikipedia: Need for comments</a>
<a href="https://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Wikipedia: Need for comments</a>
</li>


Expand Down
2 changes: 1 addition & 1 deletion cpp/ql/src/Metrics/Files/FTodoComments.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ for fixing them.</p>
<references>

<li>
<a href="http://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Tags">Wikipedia: Comment tags</a>
<a href="https://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Tags">Wikipedia: Comment tags</a>
</li>
<li>
<a href="http://www.approxion.com/?p=39">TODO or not TODO</a>
Expand Down
4 changes: 2 additions & 2 deletions cpp/ql/src/Metrics/Functions/FunLinesOfComments.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ should be given to long, complex functions.</p>
<references>

<li>
<a href="http://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">C++ Programming, Coding style conventions</a>
<a href="https://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">C++ Programming, Coding style conventions</a>
</li>
<li>
<a href="http://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Wikipedia: Need for comments</a>
<a href="https://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Wikipedia: Need for comments</a>
</li>

</references>
Expand Down
4 changes: 2 additions & 2 deletions cpp/ql/src/Metrics/Functions/FunPercentageOfComments.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ documentation.</p>
<references>

<li>
<a href="http://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">C++ Programming, Coding style conventions</a>
<a href="https://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">C++ Programming, Coding style conventions</a>
</li>
<li>
<a href="http://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Wikipedia: Need for comments</a>
<a href="https://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Wikipedia: Need for comments</a>
</li>

</references>
Expand Down
2 changes: 1 addition & 1 deletion cpp/ql/src/Security/CWE/CWE-079/CgiXss.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ OWASP:
(Cross Site Scripting) Prevention Cheat Sheet</a>.
</li>
<li>
Wikipedia: <a href="http://en.wikipedia.org/wiki/Cross-site_scripting">Cross-site scripting</a>.
Wikipedia: <a href="https://en.wikipedia.org/wiki/Cross-site_scripting">Cross-site scripting</a>.
</li>
<li>
IETF Tools: <a href="http://tools.ietf.org/html/draft-robinson-www-interface-00">The Common Gateway Specification (CGI)</a>.</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ rules for the following CWEs:</p>

</section>
<references>
<li>Wikipedia: <a href="http://en.wikipedia.org/wiki/Morris_worm">Morris worm</a>.</li>
<li>Wikipedia: <a href="https://en.wikipedia.org/wiki/Morris_worm">Morris worm</a>.</li>
<li>E. Spafford. <i>The Internet Worm Program: An Analysis</i>. Purdue Technical Report CSD-TR-823, <a href="http://www.textfiles.com/100/tr823.txt">(online)</a>, 1988.</li>
</references>
</qhelp>
2 changes: 1 addition & 1 deletion cpp/ql/src/jsf/4.10 Classes/AV Rule 79.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ to a straightforward RAII pattern. This can be achieved in several steps:</p>
S. Meyers. <em>Effective C++ 3d ed.</em> pp 61-66. Addison-Wesley Professional, 2005.
</li>
<li>
<a href="http://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization">Resource Acquisition Is Initialization</a>
<a href="https://en.wikipedia.org/wiki/Resource_Acquisition_Is_Initialization">Resource Acquisition Is Initialization</a>
</li>


Expand Down
2 changes: 1 addition & 1 deletion csharp/ql/src/Bad Practices/CallsUnmanagedCode.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ the User32.dll library.</p>
<references>

<li>MSDN, C# Reference <a href="http://msdn.microsoft.com/en-us/library/e59b22c5(v=vs.80).aspx">extern</a>.</li>
<li>Wikipedia, <a href="http://en.wikipedia.org/wiki/Managed_code">Managed code</a>.</li>
<li>Wikipedia, <a href="https://en.wikipedia.org/wiki/Managed_code">Managed code</a>.</li>

</references>
</qhelp>
2 changes: 1 addition & 1 deletion csharp/ql/src/Bad Practices/Comments/TodoComments.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Approxion:
</li>
<li>
Wikipedia:
<a href="http://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Tags">Comment tags</a>.
<a href="https://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Tags">Comment tags</a>.
</li>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ being used as a marker.</p>
</example>
<references>

<li>Wikipedia: <a href="http://en.wikipedia.org/wiki/Marker_interface_pattern">Marker interface pattern</a></li>
<li>Wikipedia: <a href="https://en.wikipedia.org/wiki/Marker_interface_pattern">Marker interface pattern</a></li>
<li>Microsoft: <a href="https://docs.microsoft.com/en-us/dotnet/csharp/tutorials/attributes">Using Attributes in C#</a></li>


Expand Down
2 changes: 1 addition & 1 deletion csharp/ql/src/Bad Practices/UnmanagedCodeCheck.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ same function being performed by managed code is shown after.</p>
<references>

<li>MSDN, C# Reference <a href="http://msdn.microsoft.com/en-us/library/e59b22c5(v=vs.80).aspx">extern</a>.</li>
<li>Wikipedia, <a href="http://en.wikipedia.org/wiki/Managed_code">Managed code</a>.</li>
<li>Wikipedia, <a href="https://en.wikipedia.org/wiki/Managed_code">Managed code</a>.</li>

</references>
</qhelp>
2 changes: 1 addition & 1 deletion csharp/ql/src/Dead Code/DeadStoreOfLocal.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ The revised example eliminates the unread assignments.</p>
<references>


<li>Wikipedia: <a href="http://en.wikipedia.org/wiki/Dead_store">Dead store</a>.</li>
<li>Wikipedia: <a href="https://en.wikipedia.org/wiki/Dead_store">Dead store</a>.</li>
<li>MSDN, Code Analysis for Managed Code, <a href="http://msdn.microsoft.com/en-us/library/ms182278.aspx">CA1804: Remove unused locals</a>.</li>
<li>Microsoft: <a href="https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-7#discards">What's new in C# 7 - Discards</a>.</li>

Expand Down
2 changes: 1 addition & 1 deletion csharp/ql/src/Likely Bugs/BadCheckOdd.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Consider using <code>x % 2 != 0</code> to check for odd and <code>x % 2 == 0</co
MSDN Library: <a href="http://msdn.microsoft.com/en-us/library/0w4e0fzs.aspx">% Operator (C# Reference)</a>.
</li>
<li>
Wikipedia: <a href="http://en.wikipedia.org/wiki/Modulo_operation#Common_pitfalls">Modulo Operation - Common pitfalls</a>.
Wikipedia: <a href="https://en.wikipedia.org/wiki/Modulo_operation#Common_pitfalls">Modulo Operation - Common pitfalls</a>.
</li>


Expand Down
4 changes: 2 additions & 2 deletions csharp/ql/src/Metrics/Callables/CCyclomaticComplexity.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ testing easier because each helper method can be tested individually.</p>
</recommendation>
<references>

<li>Wikipedia. <a href="http://en.wikipedia.org/wiki/Cyclomatic_complexity">Cyclomatic complexity</a>.</li>
<li>Wikipedia. <a href="http://en.wikipedia.org/wiki/Control_flow_diagram">Control flow diagram</a>.</li>
<li>Wikipedia. <a href="https://en.wikipedia.org/wiki/Cyclomatic_complexity">Cyclomatic complexity</a>.</li>
<li>Wikipedia. <a href="https://en.wikipedia.org/wiki/Control_flow_diagram">Control flow diagram</a>.</li>
<li>Wolfram MathWorld. <a href="http://mathworld.wolfram.com/LinearlyIndependent.html">Linearly Independent</a>.</li>

</references>
Expand Down
4 changes: 2 additions & 2 deletions csharp/ql/src/Metrics/Files/FCyclomaticComplexity.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ T. J. McCabe, <em>A Complexity Measure</em>. IEEE Transactions on Software Engin
Dave Thomas, <a href="http://www.jot.fm/issues/issue_2005_01/column1/">Refactoring as Meta Programming?</a>, in Journal of Object Technology, vol. 4, no. 1, January-February 2005, pp. 7-11.
</li>
<li>
Wikipedia: <a href="http://en.wikipedia.org/wiki/Cyclomatic_complexity">Cyclomatic complexity</a>
Wikipedia: <a href="https://en.wikipedia.org/wiki/Cyclomatic_complexity">Cyclomatic complexity</a>
</li>
<li>
Wikipedia: <a href="http://en.wikipedia.org/wiki/Code_refactoring">Code refactoring</a>
Wikipedia: <a href="https://en.wikipedia.org/wiki/Code_refactoring">Code refactoring</a>
</li>

</references>
Expand Down
2 changes: 1 addition & 1 deletion csharp/ql/src/Metrics/Files/FSelfContainedness.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ should also try to use libraries with source code available.</p>
</recommendation>
<references>

<li>Wikipedia. <a href="http://en.wikipedia.org/wiki/Software_portability">Software Portability</a>.</li>
<li>Wikipedia. <a href="https://en.wikipedia.org/wiki/Software_portability">Software Portability</a>.</li>

</references>
</qhelp>
2 changes: 1 addition & 1 deletion csharp/ql/src/Metrics/RefTypes/TUnmanagedCode.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ unmanaged code from the <code>User32.dll</code> library.</p>
<references>

<li>MSDN, C# Reference. <a href="http://msdn.microsoft.com/en-us/library/e59b22c5(v=vs.80).aspx">extern</a>.</li>
<li>Wikipedia. <a href="http://en.wikipedia.org/wiki/Managed_code">Managed code</a>.</li>
<li>Wikipedia. <a href="https://en.wikipedia.org/wiki/Managed_code">Managed code</a>.</li>

</references>
</qhelp>
2 changes: 1 addition & 1 deletion csharp/ql/src/Security Features/CWE-079/XSS.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ OWASP:
(Cross Site Scripting) Prevention Cheat Sheet</a>.
</li>
<li>
Wikipedia: <a href="http://en.wikipedia.org/wiki/Cross-site_scripting">Cross-site scripting</a>.
Wikipedia: <a href="https://en.wikipedia.org/wiki/Cross-site_scripting">Cross-site scripting</a>.
</li>

</references>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</recommendation>
<references>

<li>Wikipedia. <a href="http://en.wikipedia.org/wiki/RSA_(algorithm)#Padding_schemes">RSA. Padding Schemes</a>.</li>
<li>Wikipedia. <a href="https://en.wikipedia.org/wiki/RSA_(algorithm)#Padding_schemes">RSA. Padding Schemes</a>.</li>

</references>
</qhelp>
2 changes: 1 addition & 1 deletion csharp/ql/src/Security Features/InsecureRandomness.qhelp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ library method, which generates a password with a bias, therefore should be avoi

<references>

<li>Wikipedia. <a href="http://en.wikipedia.org/wiki/Pseudorandom_number_generator">Pseudo-random number generator</a>.</li>
<li>Wikipedia. <a href="https://en.wikipedia.org/wiki/Pseudorandom_number_generator">Pseudo-random number generator</a>.</li>
<li>MSDN. <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.randomnumbergenerator.aspx">RandomNumberGenerator</a>.</li>
<li>MSDN. <a href="https://msdn.microsoft.com/en-us/library/system.web.security.membership.generatepassword(v=vs.110).aspx">Membership.GeneratePassword</a>.</li>

Expand Down
Loading