Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
reference-repository
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
grid5000
reference-repository
Commits
6d7bf167
Commit
6d7bf167
authored
7 years ago
by
Lucas Nussbaum
Browse files
Options
Downloads
Patches
Plain Diff
wikigen: add some context when diffing
parent
ac963f29
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
generators/wiki/lib/wiki_generator.rb
+1
-1
1 addition, 1 deletion
generators/wiki/lib/wiki_generator.rb
with
1 addition
and
1 deletion
generators/wiki/lib/wiki_generator.rb
+
1
−
1
View file @
6d7bf167
...
...
@@ -68,7 +68,7 @@ class WikiGenerator
def
diff_page
()
wiki_content
=
remove_page_creation_date
(
@mw_client
.
get_page_content
(
@page_name
)).
strip
# .strip removes potential '\n' at end of file
generated_content
=
remove_page_creation_date
(
@generated_content
).
strip
diff
=
Diffy
::
Diff
.
new
(
wiki_content
,
generated_content
,
:context
=>
0
)
diff
=
Diffy
::
Diff
.
new
(
wiki_content
,
generated_content
,
:context
=>
3
)
if
(
diff
.
to_s
.
empty?
)
puts
"No differences found between generated and current wiki content for page
#{
@page_name
}
."
return
true
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment