Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jsduck
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
extjs
jsduck
Commits
8748ad7b
Commit
8748ad7b
authored
13 years ago
by
Rene Saarsoo
Browse files
Options
Downloads
Patches
Plain Diff
Preserve the order in which meta-tags are specified.
parent
521edea5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/jsduck/options.rb
+17
-7
17 additions, 7 deletions
lib/jsduck/options.rb
with
17 additions
and
7 deletions
lib/jsduck/options.rb
+
17
−
7
View file @
8748ad7b
...
@@ -123,24 +123,34 @@ module JsDuck
...
@@ -123,24 +123,34 @@ module JsDuck
# Instanciate all loaded MetaTag implementations
# Instanciate all loaded MetaTag implementations
def
load_meta_tags
def
load_meta_tags
# instan
c
iate builtin meta tags
# instan
t
iate builtin meta tags
builtin
s
=
MetaTag
.
descendants
@meta_tag_classe
s
=
MetaTag
.
descendants
builtin
s
.
each
do
|
cls
|
@meta_tag_classe
s
.
each
do
|
cls
|
@meta_tags
<<
cls
.
new
@meta_tags
<<
cls
.
new
end
end
# Load user-defined meta-tags
# Load user-defined meta-tags
@meta_tag_paths
.
each
do
|
path
|
@meta_tag_paths
.
each
do
|
path
|
if
File
.
directory?
(
path
)
if
File
.
directory?
(
path
)
Dir
[
path
+
"/**/*.rb"
].
each
{
|
file
|
require
(
file
)
}
Dir
[
path
+
"/**/*.rb"
].
each
do
|
file
|
require
(
file
)
init_remaining_meta_tags
end
else
else
require
(
path
)
require
(
path
)
init_remaining_meta_tags
end
end
end
end
# Instanciate these meta tags. When builtin implementation for
end
# @tag already exists, replace it with user-defined one.
# Instantiates meta tag classes that haven't been instantiated
# already. This is called after each meta-tags file is loaded so
# that the list of meta-tags will be in order specified from
# command line.
def
init_remaining_meta_tags
MetaTag
.
descendants
.
each
do
|
cls
|
MetaTag
.
descendants
.
each
do
|
cls
|
if
!
builtins
.
include?
(
cls
)
if
!
@meta_tag_classes
.
include?
(
cls
)
@meta_tag_classes
<<
cls
newtag
=
cls
.
new
newtag
=
cls
.
new
@meta_tags
=
@meta_tags
.
find_all
{
|
t
|
t
.
name
!=
newtag
.
name
}
@meta_tags
=
@meta_tags
.
find_all
{
|
t
|
t
.
name
!=
newtag
.
name
}
@meta_tags
<<
newtag
@meta_tags
<<
newtag
...
...
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