Skip to content

Commit e589616

Browse files
authored
Merge pull request #72 from telerik/lini/fix-paths
[FID-6213] fix paths
2 parents 2d90710 + ccc04f2 commit e589616

File tree

7 files changed

+16
-17
lines changed

7 files changed

+16
-17
lines changed

configure-fiddler/tasks/configurebrowsers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Note: If a browser uses these settings, revert these settings after you close Fi
4747

4848
![Firefox Proxy Error][11]
4949

50-
To instead allow Fiddler Classic to automatically enable and disable the proxy, use **Proxy Auto-configuration** with a URL pointing to Documents/Fiddler2/Scripts/BrowserPAC.js.
50+
To instead allow Fiddler Classic to automatically enable and disable the proxy, use **Proxy Auto-configuration** with a URL pointing to %userprofile%\Documents\Fiddler2\Scripts\BrowserPAC.js.
5151

5252
For example, in Firefox, click **Tools > Options > Advanced > Network > Settings**, and input the URL of the BrowserPAC.js.
5353

extend-fiddler/addrules.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ Change the JScript Editor Launched from the **Rules** Menu
5050
Restore Default Rules
5151
---------------------
5252

53-
1. Delete the **CustomRules.js** file in **~/Documents/Fiddler2/Scripts**.
53+
1. Delete the **CustomRules.js** file in **%userprofile%\Documents\Fiddler2\Scripts**.
5454

5555
2. Restart Fiddler.
5656

57-
Note: Fiddler's default rules are stored in **~/Program Files/Fiddler2/Scripts/SampleRules.js**.
57+
Note: Fiddler's default rules are stored in **%localappdata%\Programs\Fiddler\Scripts\SampleRules.js**.
5858

5959
See Also
6060
--------

extend-fiddler/createextension.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Add Build Event
4545

4646
4. Add the following to the **Post-build event command line**:
4747

48-
copy "$(TargetPath)" "%userprofile%\My Documents\Fiddler2\Scripts\$(TargetFilename)"
48+
copy "$(TargetPath)" "%userprofile%\Documents\Fiddler2\Scripts\$(TargetFilename)"
4949

5050
Implement a Fiddler Classic Interface
5151
----------------------------------

extend-fiddler/custominspector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Build a Custom Inspector
1818

1919
public class WebViewer: Inspector2, IResponseInspector2
2020
{
21-
public Viewers()
21+
public WebViewer()
2222
{
2323
//
2424
// TODO: Add constructor logic here

extend-fiddler/extendwithdotnet.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,10 @@ Debugging
3434
Direct Fiddler Classic to load extension assemblies
3535
-------------------------------------------
3636

37-
+ To make the extensions available to all users on the machine, install extension assembly DLLs to:
38-
39-
%ProgramFiles%\Fiddler2\Scripts
40-
41-
+ To make the extensions available to only the current user, install extension assembly DLLs to:
42-
43-
%USERPROFILE%\My Documents\Fiddler2\Scripts
37+
+ To make the extensions available to the current user, install extension assembly DLLs to:
38+
%localappdata%\Programs\Fiddler\Scripts
39+
OR
40+
%userprofile%\Documents\Fiddler2\Scripts
4441

4542
+ Set the **Fiddler.RequiredVersion** attribute in your **AssemblyInfo.cs** file (or elsewhere in your code) as follows:
4643

@@ -72,7 +69,7 @@ Sample Extension: Step by Step
7269
+ In the Solution Explorer, right click the project. Choose Properties.
7370
+ On the Build Events tab, add the following to the Post-build event command line:
7471

75-
copy "$(TargetPath)" "%userprofile%\My Documents\Fiddler2\Scripts\$(TargetFilename)"
72+
copy "$(TargetPath)" "%userprofile%\Documents\Fiddler2\Scripts\$(TargetFilename)"
7673

7774
Modify the default class1.cs (or create a new class) in your project as follows:
7875

extend-fiddler/loadextension.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ Load Extension in Fiddler
1111

1212
1. Compile your project.
1313

14-
2. Copy the assembly .DLL to the correct **Scripts** folder:
14+
2. For Extensions projects, copy the assembly .DLL to the correct **Scripts** folder:
1515

16-
+ Use **\My Documents\Fiddler2\Scripts** to make the extension available to the current user.
16+
+ Use **%userprofile%\Documents\Fiddler2\Scripts** to make the extension available to the current user.
1717

18-
+ Use **\Program Files\Fiddler2\Scripts** to make the extension available to all users on the machine.
18+
2. For Custom Inspector projects, copy the assembly .DLL to the correct **Inspectors** folder:
19+
20+
+ Use **%userprofile%\Documents\Fiddler2\Inspectors** to make the inspector extension available to the current user.
1921

2022
3. Restart Fiddler.

knowledge-base/add-ons/sazclipboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Open the SAZClipboard Window from the **Tools Menu**.
3232

3333
![Tools Menu Item][1]
3434

35-
You can drag and drop from the Fiddler Classic session list to the SAZ clipboard form, or load a SAZ directly into it using the button at the bottom. Launch it from the Tools menu. Just drop SazClipboard.dll into your C:\program files\fiddler2\scripts folder and restart Fiddler. Source is provided, so you can update as desired.
35+
You can drag and drop from the Fiddler Classic session list to the SAZ clipboard form, or load a SAZ directly into it using the button at the bottom. Launch it from the Tools menu. Just drop SazClipboard.dll into your %localappdata%\Programs\Fiddler\Scripts folder and restart Fiddler. Source is provided, so you can update as desired.
3636

3737
![Clipboard Window][2]
3838

0 commit comments

Comments
 (0)