Skip to content

Commit 0e421ce

Browse files
committed
Migrated to Alpha HTML5Up template
1 parent 62c4ffb commit 0e421ce

File tree

110 files changed

+5669
-1260
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+5669
-1260
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
markdown: rdiscount
2-
pygments: true
2+
highlighter: pygments
33

44
relative_permalinks: false
55

_config_appledoc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
markdown: rdiscount
2-
pygments: true
2+
highlighter: pygments
33

44
relative_permalinks: false
55

_includes/comparisonMethods.md

Lines changed: 40 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,47 @@
11
# Comparison Method
22

33
It is possible to choose which method to use to compare two folders.
4-
The method to use is strictly related to user needs, comparing source code (files large only few kilobytes) should use a content comparison but to find which movies (files larger than a gigabytes) are not present on right side is faster compare by file size or file timestamp.
5-
4+
The method to use is strictly related to user needs, comparing source code (files large only few kilobytes) should use a content comparison but to find which movies (files larger than a gigabytes) are not present on right side is faster compare by file size or file timestamp.
65
Every file is treated as binary and it is compared byte by byte, only 'Compare file content ignoring line ending differences' compares text.
76

87
The complete list of supported comparison methods
98

10-
<table class="bordered">
11-
<tr>
12-
<th>Method</th>
13-
<th>Description</th>
14-
</tr>
15-
<tr>
16-
<td>Compare file sizes
17-
<br/>Very quick</td>
18-
<td>Two file are identical if they have the same file size</td>
19-
</tr>
20-
<tr>
21-
<td>Compare file timestamps
22-
<br/>Very quick</td>
23-
<td>Two file are identical if they have the same timestamp.
24-
<br/>It is used the Unix <strong>last modified date</strong> for comparison.
25-
<br/>If file A timestamp is less than file B it is marked as <strong>older</strong> and it will be shown with different color.
26-
<br/>It is possible to set a span in seconds to consider two files with same timestamp, see below</td>
27-
</tr>
28-
<tr>
29-
<td>Compare file timestamps and sizes
30-
<br/>Very quick</td>
31-
<td>Compare the files timestamp, only if it is different then compare the size.</td>
32-
</tr>
33-
<tr>
34-
<td>Compare file content only
35-
<br/>Slow on large files</td>
36-
<td>Compare files as binary, byte by byte</td>
37-
</tr>
38-
<tr>
39-
<td>Compare file timestamp, size and content
40-
<br/>Slow on large files</td>
41-
<td>Compare the file content, only if content is different compare the timestamp and only if timestamp differs compare size</td>
42-
</tr>
43-
<tr>
44-
<td>Compare file content ignoring line ending differences
45-
<br/>Slow on large files</td>
46-
<td>Compare file as plain text, read line by line and compare lines.
47-
<br/>The line ending character is ignored so a DOS file (with lines separated by CR+LF) matches an Unix file (with lines separated by LF) if, ignoring the newlines, the content is identical</td>
48-
</tr>
49-
</table>
9+
<div class="table-wrapper">
10+
<table class="alt">
11+
<thead>
12+
<tr>
13+
<th>Method</th>
14+
<th>Description</th>
15+
</tr>
16+
</thead>
17+
<tbody>
18+
<tr>
19+
<td>Compare file sizes<br/>Very quick</td>
20+
<td>Two file are identical if they have the same file size</td>
21+
</tr>
22+
<tr>
23+
<td>Compare file timestamps<br/>Very quick</td>
24+
<td>Two file are identical if they have the same timestamp.
25+
<br/>It is used the Unix <strong>last modified date</strong> for comparison.
26+
<br/>If file A timestamp is less than file B it is marked as <strong>older</strong> and it will be shown with different color.
27+
<br/>It is possible to set a span in seconds to consider two files with same timestamp, see below</td>
28+
</tr>
29+
<tr>
30+
<td>Compare file timestamps and sizes<br/>Very quick</td>
31+
<td>Compare the files timestamp, only if it is different then compare the size.</td>
32+
</tr>
33+
<tr>
34+
<td>Compare file content only<br/>Slow on large files</td>
35+
<td>Compare files as binary, byte by byte</td>
36+
</tr>
37+
<tr>
38+
<td>Compare file timestamp, size and content<br/>Slow on large files</td>
39+
<td>Compare the file content, only if content is different compare the timestamp and only if timestamp differs compare size</td>
40+
</tr>
41+
<tr>
42+
<td>Compare file content ignoring line ending differences<br/>Slow on large files</td>
43+
<td>Compare file as plain text, read line by line and compare lines.<br/>The line ending character is ignored so a DOS file (with lines separated by CR+LF) matches an Unix file (with lines separated by LF) if, ignoring the newlines, the content is identical</td>
44+
</tr>
45+
</tbody>
46+
</table>
47+
</div>

_includes/displayFiles.md

100644100755
Lines changed: 57 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,42 @@
11
# Choose Files to View according to differences found
22

3-
After the comparison complete you can choose which files to view
4-
3+
After the comparison complete you can choose which files to view
54
Definition: **Orphan** indicates a file present only on one side
65

76
The complete list of show options
87

9-
<table class="bordered">
10-
<tr>
11-
<th>Choice</th>
12-
<th>Description</th>
13-
</tr>
14-
<tr>
15-
<td>Show All</td>
16-
<td>No matters which comaprison result, show files</td>
17-
</tr>
18-
<tr>
19-
<td>Only Mismatches</td>
20-
<td>Show only files with some mismatch (size, timestamp or content)</td>
21-
</tr>
22-
<tr>
23-
<td>Only Matches</td>
24-
<td>Show only identical files</td>
25-
</tr>
26-
<tr>
27-
<td>No Orphans</td>
28-
<td>Show files present both on left and right side</td>
29-
</tr>
30-
<tr>
31-
<td>Only Orphans</td>
32-
<td>Show files present only on left or only on right</td>
33-
</tr>
34-
</table>
8+
<div class="table-wrapper">
9+
<table class="alt">
10+
<thead>
11+
<tr>
12+
<th>Choice</th>
13+
<th>Description</th>
14+
</tr>
15+
</thead>
16+
<tbody>
17+
<tr>
18+
<td>Show All</td>
19+
<td>No matters which comaprison result, show files</td>
20+
</tr>
21+
<tr>
22+
<td>Only Mismatches</td>
23+
<td>Show only files with some mismatch (size, timestamp or content)</td>
24+
</tr>
25+
<tr>
26+
<td>Only Matches</td>
27+
<td>Show only identical files</td>
28+
</tr>
29+
<tr>
30+
<td>No Orphans</td>
31+
<td>Show files present both on left and right side</td>
32+
</tr>
33+
<tr>
34+
<td>Only Orphans</td>
35+
<td>Show files present only on left or only on right</td>
36+
</tr>
37+
</tbody>
38+
</table>
39+
</div>
3540

3641
## Choose Folders to View
3742

@@ -41,22 +46,27 @@ Orphans folders are present only on one side (left or right)
4146

4247
## Show Filtered Files
4348

44-
When a filter founds matches the elements are not visible but in case it's necessary to shown them you can click on the `Filtered` button
45-
46-
Some files are excluded by defaults, the complete list is shown below.
47-
Default filters can be changed or totally deleted from `Session Preferences` window
48-
49-
<table class="bordered">
50-
<tr>
51-
<th>Description</th>
52-
<th>File</th>
53-
</tr>
54-
<tr>
55-
<td>Backup and system files</td>
56-
<td>.DS_Store, *~</td>
57-
</tr>
58-
<tr>
59-
<td>Control Version System files </td>
60-
<td>CVS, .svn, .git, .hg", .bzr</td>
61-
</tr>
62-
</table>
49+
When a filter founds matches the elements are not visible but in case it's necessary to shown them you can click on the `Filtered` button.
50+
Default filters can be changed or totally deleted from `Session Preferences` window.
51+
Some files are excluded by defaults, the complete list is shown below.
52+
53+
<div class="table-wrapper">
54+
<table class="alt">
55+
<thead>
56+
<tr>
57+
<th>Description</th>
58+
<th>File</th>
59+
</tr>
60+
</thead>
61+
<tbody>
62+
<tr>
63+
<td>Backup and system files</td>
64+
<td>.DS_Store, *~</td>
65+
</tr>
66+
<tr>
67+
<td>Control Version System files </td>
68+
<td>CVS, .svn, .git, .hg, .bzr</td>
69+
</tr>
70+
</tbody>
71+
</table>
72+
</div>

_includes/finderMetadata.md

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,27 @@
11
# Compare Finder Metadata
22

3-
It is possible to compare OSX Finder Metadata.
4-
3+
It is possible to compare OSX Finder Metadata.
54
When the metadata comparison mismatches, for example left file's label is red and right file's label is blue, the other comparison methods (size, timestamp, content) are not evaluated.
65

76
The complete list of supported metadata
87

9-
<table class="bordered">
10-
<tr>
11-
<th>Metadata</th>
12-
<th>Description</th>
13-
</tr>
14-
<tr>
15-
<td>Label</td>
16-
<td>Compare all labels assigned to a file</td>
17-
</tr>
18-
<tr>
19-
<td>Tags
20-
<br/><strong>Available in OSX 10.9 or above</strong></td>
21-
<td>Compare all tags assigned to a file</td>
22-
</tr>
23-
</table>
8+
<div class="table-wrapper">
9+
<table class="alt">
10+
<thead>
11+
<tr>
12+
<th>Metadata</th>
13+
<th>Description</th>
14+
</tr>
15+
</thead>
16+
<tbody>
17+
<tr>
18+
<td>Label</td>
19+
<td>Compare all labels assigned to a file</td>
20+
</tr>
21+
<tr>
22+
<td>Tags<br/><strong>Available in OSX 10.9 or above</strong></td>
23+
<td>Compare all tags assigned to a file</td>
24+
</tr>
25+
</tbody>
26+
</table>
27+
</div>

_includes/foldersTraversal.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22

33
User can choose to not traverse special files like symbolic links and packages
44

5-
<table class="bordered">
5+
<div class="table-wrapper">
6+
<table class="alt">
7+
<thead>
68
<tr>
79
<th>File</th>
810
<th>Description</th>
911
</tr>
12+
</thead>
13+
<tbody>
1014
<tr>
1115
<td>Follow Symbolic Links</td>
1216
<td>If checked the symbolic links will be traversed</td>
@@ -22,4 +26,6 @@ User can choose to not traverse special files like symbolic links and packages
2226
When this option is on if the file is a resource fork its size is determined from its structured data.
2327
</td>
2428
</tr>
29+
</tbody>
2530
</table>
31+
</div>

0 commit comments

Comments
 (0)