Skip to content

Commit 1a48eee

Browse files
author
Nick Iliev
committed
seo fixes
1 parent c9a2932 commit 1a48eee

File tree

5 files changed

+42
-46
lines changed

5 files changed

+42
-46
lines changed

_config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ has_api_reference: false
8181
edit_repo_url: https://github.com/telerik/fiddler-docs/edit/master
8282
download: https://www.telerik.com/download/fiddler
8383
nav:
84-
"Videos": https://www.telerik.com/videos/fiddler/getting-started-with-fiddler-web-debugging-proxy
8584
"Release History": https://www.telerik.com/support/whats-new/fiddler/release-history
8685
"About": https://www.telerik.com/fiddler
8786
"Priority Support": https://www.telerik.com/purchase/fiddler
@@ -90,7 +89,7 @@ footer:
9089
-
9190
title: "Getting Started"
9291
links:
93-
"Getting Started": https://www.telerik.com/videos/fiddler/getting-started-with-fiddler-web-debugging-proxy
92+
"Getting Started": https://www.telerik.com/videos/product/fiddler-classic
9493
"Download": https://www.telerik.com/download/fiddler
9594
-
9695
title: "Support Resources"
@@ -100,7 +99,7 @@ footer:
10099
title: "Community"
101100
links:
102101
"Blogs": https://www.telerik.com/blogs/tag/fiddler
103-
"Videos": https://www.telerik.com/videos/fiddler
102+
"Videos": https://www.telerik.com/videos/product/fiddler-classic
104103

105104
footer_social:
106105
facebook: https://www.facebook.com/Telerik/

extend-fiddler/extendwithdotnet.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,10 @@ See [Build extension assemblies to run in both Fiddler Classic versions 2 and 4]
2525
Debugging
2626
---------
2727

28-
+ To ensure that exceptions and other extension-related errors are not silently caught: [set][1] the [fiddler.debug.extensions.showerrors][2] preference to **True**.
29-
+ To output logging information to the **Log** tab: [set][1] the [fiddler.debug.extensions.verbose][2]
28+
+ To ensure that exceptions and other extension-related errors are not silently caught: [set][1] the `fiddler.debug.extensions.showerrors` preference to **True**.
29+
+ To output logging information to the **Log** tab: [set][1] the `fiddler.debug.extensions.verbose`
3030

3131
[1]: http://fiddler.wikidot.com/prefsaction
32-
[2]: http://fiddler.wikidot.com/prefslist
3332

3433
Direct Fiddler Classic to load extension assemblies
3534
-------------------------------------------

knowledge-base/autoresponder.md

Lines changed: 35 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -31,82 +31,88 @@ On the AutoResponder tab, you enter a **match rule** and an **action string**, a
3131
Fiddler Classic will match string literals (case insensitively)
3232

3333
#### **\*** matches
34-
* **http://www.example.com/Path1/query=example**
35-
* **http://www.example.com/SomethingCompletelyDifferent**
34+
35+
* `http://www.example.com/Path1/query=example`
36+
* `http://www.example.com/SomethingCompletelyDifferent`
3637

3738
#### **EXAMPLE** matches
38-
* http://www.**example**.com/Path1/
39-
* http://www.something.com/Path1/query=**Example**
39+
40+
* `http://www.**example**.com/Path1/`
41+
* `http://www.something.com/Path1/query=**Example**`
4042

4143
#### **path1/** matches
42-
* http://www.example.com/**Path1/**query=example
43-
* http://www.example.com/returnUrl=**Path1/**OtherPlace
44+
45+
* `http://www.example.com/**Path1/**query=example`
46+
* `http://www.example.com/returnUrl=**Path1/**OtherPlace`
4447

4548
#### **query** matches
4649

47-
* http://www.example.com/Path1/q=**Query**
48-
* http://www.example.com/Path1/**query**=hello
50+
* `http://www.example.com/Path1/q=**Query**`
51+
* `http://www.example.com/Path1/**query**=hello`
4952

5053
### NOT: rules for String Literals
5154

5255
Introduced in version 2.3.2.5 similar to the previous, but the rule is applied only if the string does not match
5356

5457
#### **NOT:EXAMPLE** matches
55-
* http://www.test.com/Path1/query=test
58+
59+
* `http://www.test.com/Path1/query=test`
5660

5761
#### **NOT:path1/** matches
58-
* http://www.example.com/Path2/query=example
62+
63+
* `http://www.example.com/Path2/query=example`
5964

6065
#### **NOT:query** matches
61-
* http://www.example.com/Path1/q
66+
67+
* `http://www.example.com/Path1/q`
6268

6369

6470
### Exact Match
6571

6672
Fiddler Classic supports an exact, case-sensitive match syntax for expressions which begin with exact
6773

6874
#### **EXACT:http://www.example.com/path** matches
69-
* http://www.example.com/path
75+
* `http://www.example.com/path`
7076

7177
#### **EXACT:http://www.example.com/path** matches
72-
* http://www.example.com/Path (No Match - mismatched case)
78+
* `http://www.example.com/Path` (No Match - mismatched case)
7379

7480
#### **EXACT:http://www.example.com/path** matches
75-
* http://www.example.com/path/q=Query** (No Match - substring different)
81+
* `http://www.example.com/path/q=Query` (No Match - substring different)
7682

7783

7884
### Method Match
7985

8086
#### **METHOD:GET EXACT:http://example.com/path**
81-
* Matches only **GET** requests to http://example.com/path
87+
* Matches only **GET** requests to `http://example.com/path`
8288

8389

8490
### Regular Expressions
8591

8692
Fiddler Classic supports regular expression syntax for expressions which begin with **regex**. The regular expression will be used to replace the inbound URL with the string in the Actions column. Use .+ to match a sequence of one or more characters, or .* to match zero or more characters. Use ^ at the front of your regex to mean "Start of the URL" and use $ at the tail of the regex to mean "End of the URL."
8793

8894
#### **regex:.+** matches
89-
* **http://www.example.com/Path1/query=example**
95+
* `http://www.example.com/Path1/query=example`
9096

9197
#### **regex:.+\.jpg.** matches
92-
* **http://www.example.com/Path1/query=foo.jpg**&bar
93-
* **http://www.example.com/Path1/query=example.jpg**
98+
* `http://www.example.com/Path1/query=foo.jpg**&bar`
99+
* `http://www.example.com/Path1/query=example.jpg`
94100

95101
#### **regex:.+\.jpg$** matches
96-
* http://www.example.com/Path1/query=foo.jpg&bar (No Match - improper ending)
97-
* **http://www.example.com/Path1/query=example.jpg**
102+
* `http://www.example.com/Path1/query=foo.jpg&bar` (No Match - improper ending)
103+
* `http://www.example.com/Path1/query=example.jpg`
98104

99105
#### **regex:.+\.(jpg|gif|bmp)$** matches
100-
* http://www.example.com/Path1/query=foo.bmp&bar (No Match - improper ending)
101-
* **http://www.example.com/Path1/query=example.gif**
102-
* http://www.example.com/Path1/query=example.Gif (No Match - mismatched case)
103-
* **http://www.example.com/Path1/query=example.bmp**
106+
* `http://www.example.com/Path1/query=foo.bmp&bar` (No Match - improper ending)
107+
* `http://www.example.com/Path1/query=example.gif`
108+
* `http://www.example.com/Path1/query=example.Gif` (No Match - mismatched case)
109+
* `http://www.example.com/Path1/query=example.bmp`
104110

105111
#### **regex:(?insx).+\.(jpg|gif|bmp)$** matches
106-
* http://www.example.com/Path1/query=foo.bmp&bar (No Match - improper ending)
107-
* **http://www.example.com/Path1/query=example.gif**
108-
* **http://www.example.com/Path1/query=example.Gif**
109-
* **http://www.example.com/Path1/query=example.bmp**
112+
* `http://www.example.com/Path1/query=foo.bmp&bar` (No Match - improper ending)
113+
* `http://www.example.com/Path1/query=example.gif`
114+
* `http://www.example.com/Path1/query=example.Gif`
115+
* `http://www.example.com/Path1/query=example.bmp`
110116

111117
Got a great regular expression to share? Please send it to me using the "Contact" link at the top-right side of this page!
112118
You can learn more about regular expressions [here](http://www.regular-expressions.info/quickstart.html).
@@ -153,7 +159,7 @@ Close the client connection immediately without sending a response.
153159
### *exit
154160
Stop processing rules at this point.
155161

156-
For rules whose match action is a regular expression, you can use Regular Expression Replacement Group expressions in the Action string to copy content from the Inbound URL to the action string. [Learn more...](https://blogs.msdn.com/b/fiddler/archive/2012/01/09/fiddler-2.3.8.2-beta-views-woff-mp3-h264-datauris-and-autoresponder-supports-regular-expression-groups.aspx)
162+
For rules whose match action is a regular expression, you can use Regular Expression Replacement Group expressions in the Action string to copy content from the Inbound URL to the action string.
157163

158164
Rules with Non-final actions will allow the request to match multiple AutoResponder rules. As soon a rule specifying a final action is reached, the matching process exits and no further rules are processed for that session.
159165

knowledge-base/headers.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,27 +34,20 @@ Date the response expires and should no longer be used by a cache. See [http://
3434

3535
Note that the O'Reilly book (and many other places, including IE) implement this incorrectly! See [http://www.mnot.net/cache_docs/][6] or [RFC2616][7].
3636

37-
38-
3937
**P3P**
4038

41-
Compact P3P Privacy statement. See [http://www.p3pwriter.com/LRN_111.asp][8] for a description of the token meanings. See also [Info on IE6's Privacy features and impact on HTTP Cookies][9].
42-
43-
39+
Compact P3P Privacy statement. For more information refer to [IE6's Privacy features and impact on HTTP Cookies][8].
4440

4541
**Set-Cookie**
4642

4743
Info on IE's Privacy features and impact on HTTP Cookies
4844

49-
50-
5145
[1]: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
5246
[2]: https://en.wikipedia.org/wiki/List_of_HTTP_status_codes
5347
[3]: https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
5448
[4]: https://www.iana.org/assignments/message-headers/message-header-index.html
5549
[5]: http://www.cs.tut.fi/~jkorpela/http.html
5650
[6]: http://www.mnot.net/cache_docs/
5751
[7]: http://www.faqs.org/rfcs/rfc2616.html
58-
[8]: http://www.p3pwriter.com/LRN_111.asp
59-
[9]: https://msdn.microsoft.com/en-us/library/ms537343.aspx
52+
[8]: https://msdn.microsoft.com/en-us/library/ms537343.aspx
6053

save-and-load-traffic/tasks/vswebtest.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Fiddler2 includes the ability to capture web traffic (including AJAX requests) f
1313
Save a WebTest
1414
--------------
1515

16-
1. [Capture traffic][1] from your web application.
16+
1. Capture traffic from your web application.
1717
2. Click **File > Export Sessions > All Sessions**.
1818
3. Click **Visual Studio WebTest.**
1919

@@ -40,4 +40,3 @@ See Also
4040
+ [https://blogs.msdn.com/slumley/pages/enhanced-web-test-support-in-fiddler.aspx](https://blogs.msdn.com/slumley/pages/enhanced-web-test-support-in-fiddler.aspx)
4141
+ [https://blogs.msdn.com/edglas/archive/2007/06/13/fiddler-2-drop-available-at-www-fiddler2-com.aspx](https://blogs.msdn.com/edglas/archive/2007/06/13/fiddler-2-drop-available-at-www-fiddler2-com.aspx)
4242

43-
[1]: ../../Observe-Traffic/Tasks/CaptureWebTraffic.md

0 commit comments

Comments
 (0)