Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Feeds
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Feeds
Commits
bc2953b5
Commit
bc2953b5
authored
4 years ago
by
Andrew Dolgov
Browse files
Options
Downloads
Patches
Plain Diff
split no_url_hashes into a separate repo
parent
198c9b40
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
plugins/no_url_hashes/init.js
+0
-9
0 additions, 9 deletions
plugins/no_url_hashes/init.js
plugins/no_url_hashes/init.php
+0
-24
0 additions, 24 deletions
plugins/no_url_hashes/init.php
with
0 additions
and
33 deletions
plugins/no_url_hashes/init.js
deleted
100644 → 0
+
0
−
9
View file @
198c9b40
require
([
'
dojo/_base/kernel
'
,
'
dojo/ready
'
],
function
(
dojo
,
ready
)
{
ready
(
function
()
{
hash_set
=
function
()
{
};
hash_get
=
function
()
{
};
});
});
This diff is collapsed.
Click to expand it.
plugins/no_url_hashes/init.php
deleted
100644 → 0
+
0
−
24
View file @
198c9b40
<?php
class
No_URL_Hashes
extends
Plugin
{
private
$host
;
function
about
()
{
return
array
(
null
,
"Disable URL hash usage (e.g. #f=10, etc)"
,
"fox"
);
}
function
init
(
$host
)
{
$this
->
host
=
$host
;
}
function
get_js
()
{
return
file_get_contents
(
__DIR__
.
"/init.js"
);
}
function
api_version
()
{
return
2
;
}
}
\ No newline at end of file
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