Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
4cf690e0
Commit
4cf690e0
authored
Mar 11, 2015
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src: style and whitespace sweep
parent
aa34ef3e
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
22 additions
and
27 deletions
+22
-27
Makefile
Makefile
+2
-0
configd
src/etc/rc.d/configd
+11
-11
services_api.php
src/opnsense/mvc/app/config/services_api.php
+5
-2
IntegerValidator.php
.../app/models/OPNsense/Base/Validators/IntegerValidator.php
+2
-3
MinMaxValidator.php
...c/app/models/OPNsense/Base/Validators/MinMaxValidator.php
+2
-2
__init__.py
src/opnsense/service/modules/addons/__init__.py
+0
-1
template_helpers.py
src/opnsense/service/modules/addons/template_helpers.py
+0
-1
example_simple_page.txt
...service/templates/OPNsense/Sample/example_simple_page.txt
+0
-3
variables.less
src/opnsense/www/css/font-awesome/less/variables.less
+0
-1
_variables.scss
src/opnsense/www/css/font-awesome/scss/_variables.scss
+0
-1
opnsense.js
src/opnsense/www/js/opnsense.js
+0
-2
No files found.
Makefile
View file @
4cf690e0
...
...
@@ -35,6 +35,8 @@ sweep:
find
${
.CURDIR
}
/src
!
-name
"*.min.*"
!
-name
"*.svg"
\
!
-name
"*.map"
-type
f
-print0
|
\
xargs
-0
-n1
scripts/cleanfile
find
${
.CURDIR
}
/pkg
-type
f
-print0
|
\
xargs
-0
-n1
scripts/cleanfile
style
:
@
(
phpcs
--tab-width
=
4
--standard
=
PSR2
${
.CURDIR
}
/src/opnsense/mvc
\
...
...
src/etc/rc.d/configd
View file @
4cf690e0
src/opnsense/mvc/app/config/services_api.php
View file @
4cf690e0
<?php
/**
* Copyright (C) 2015 Deciso B.V.
*
...
...
@@ -88,9 +89,11 @@ $di->set('router', function() {
//
// probe registered API modules and create a namespace map
// for example, OPNsense\Core\Api will be mapped at http(s):\\host\core\..
// module names should be unique in the application, unless you want to overwrite functionality (check glob's sorting).
// module names should be unique in the application, unless you want to
// overwrite functionality (check glob's sorting).
//
// if the glob for probing the directories turns out to be too slow, we should consider some kind of caching here
// if the glob for probing the directories turns out to be too slow,
// we should consider some kind of caching here
//
$registered_modules
=
array
();
$controller_dir
=
__DIR__
.
"/../controllers/"
;
...
...
src/opnsense/mvc/app/models/OPNsense/Base/Validators/IntegerValidator.php
View file @
4cf690e0
<?php
/**
* Copyright (C) 2015 Deciso B.V.
*
...
...
@@ -30,17 +31,15 @@ namespace OPNsense\Base\Validators;
use
\Phalcon\Validation\Validator
;
use
\Phalcon\Validation\ValidatorInterface
;
use
\Phalcon\Validation\Message
;
;
use
\Phalcon\Validation\Message
;
class
IntegerValidator
extends
Validator
implements
ValidatorInterface
{
public
function
validate
(
$validator
,
$attribute
)
{
$value
=
$validator
->
getValue
(
$attribute
);
$msg
=
$this
->
getOption
(
'message'
);
if
(
ctype_digit
(
strval
((
$value
)))
==
false
)
{
$validator
->
appendMessage
(
new
Message
(
$msg
,
$attribute
,
'IntegerValidator'
));
return
false
;
...
...
src/opnsense/mvc/app/models/OPNsense/Base/Validators/MinMaxValidator.php
View file @
4cf690e0
<?php
/**
* Copyright (C) 2015 Deciso B.V.
*
...
...
@@ -30,11 +31,10 @@ namespace OPNsense\Base\Validators;
use
\Phalcon\Validation\Validator
;
use
\Phalcon\Validation\ValidatorInterface
;
use
\Phalcon\Validation\Message
;
;
use
\Phalcon\Validation\Message
;
class
MinMaxValidator
extends
Validator
implements
ValidatorInterface
{
public
function
validate
(
$validator
,
$attribute
)
{
$value
=
$validator
->
getValue
(
$attribute
);
...
...
src/opnsense/service/modules/addons/__init__.py
View file @
4cf690e0
...
...
@@ -29,4 +29,3 @@
--------------------------------------------------------------------------------------
package : configd
"""
src/opnsense/service/modules/addons/template_helpers.py
View file @
4cf690e0
...
...
@@ -64,4 +64,3 @@ class Helpers(object):
return
True
else
:
return
False
src/opnsense/service/templates/OPNsense/Sample/example_simple_page.txt
View file @
4cf690e0
...
...
@@ -34,6 +34,3 @@ A sample with multiple output files ( for example based on interface ) can be fo
{% if helpers.exists('filter.rule') %}
filter.rule exists
{% endif %}
src/opnsense/www/css/font-awesome/less/variables.less
View file @
4cf690e0
...
...
@@ -603,4 +603,3 @@
@fa-var-youtube: "\f167";
@fa-var-youtube-play: "\f16a";
@fa-var-youtube-square: "\f166";
src/opnsense/www/css/font-awesome/scss/_variables.scss
View file @
4cf690e0
...
...
@@ -603,4 +603,3 @@ $fa-var-yen: "\f157";
$fa-var-youtube
:
"\f167"
;
$fa-var-youtube-play
:
"\f16a"
;
$fa-var-youtube-square
:
"\f166"
;
src/opnsense/www/js/opnsense.js
View file @
4cf690e0
...
...
@@ -162,5 +162,3 @@ function ajaxGet(url,sendData,callback) {
data
:
sendData
});
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment