Skip to content
This repository has been archived by the owner on Nov 5, 2020. It is now read-only.

Commit

Permalink
Merge pull request #14 from rdohms/v1.1
Browse files Browse the repository at this point in the history
V1.1 Adjustments
  • Loading branch information
rdohms committed Apr 25, 2012
2 parents 171bed9 + 7acfb96 commit 0df4a75
Show file tree
Hide file tree
Showing 70 changed files with 10,524 additions and 868 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -10,7 +10,7 @@ Status: [![Build Status](https://secure.travis-ci.org/rdohms/DMS.png?branch=mast

The filter library is a standalone annotation based filter library for entities, it works very well alongside Symfony's Validator library.

## Bundles
## Bundle

### Filter Bundle

Expand Down
6 changes: 3 additions & 3 deletions build.xml
Expand Up @@ -26,7 +26,7 @@

<phingcall target="tag_release">
<property name="tagVersion" value="${version}"/>
<property name="repoDir" value="Bundles/FilterBundle" override="true"/>
<property name="repoDir" value="Bundle/FilterBundle" override="true"/>
</phingcall>
</target>

Expand All @@ -38,8 +38,8 @@
</phingcall>

<phingcall target="split_repository">
<property name="splitTargetDir" value="Bundles/FilterBundle" />
<property name="splitFilterDir" value="src/DMS/Bundles/FilterBundle" />
<property name="splitTargetDir" value="Bundle/FilterBundle" />
<property name="splitFilterDir" value="src/DMS/Bundle/FilterBundle" />
<property name="splitTargetRepo" value="git@github.com:rdohms/DMSFilterBundle.git" />
</phingcall>
</target>
Expand Down
1,194 changes: 713 additions & 481 deletions docs/classes.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
117 changes: 117 additions & 0 deletions docs/db_DMS_Bundle_FilterBundle_DMSFilterBundle.html
@@ -0,0 +1,117 @@
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>DMS</title><link rel="stylesheet" href="css/jquery-ui.css" type="text/css"></link><link rel="stylesheet" href="css/docblox/jquery-ui-1.8.16.custom.css" type="text/css"></link><link rel="stylesheet" href="css/jquery.treeview.css" type="text/css"></link><link rel="stylesheet" href="css/theme.css" type="text/css"></link><script type="text/javascript" src="js/jquery-1.4.2.min.js"></script><script type="text/javascript" src="js/jquery-ui-1.8.2.custom.min.js"></script><script type="text/javascript" src="js/jquery.tools.min.js"></script><script type="text/javascript" src="js/jquery.cookie.js"></script><script type="text/javascript" src="js/jquery.treeview.js"></script><script type="text/javascript">
$(document).ready(function() {
$(".filetree").treeview({
collapsed: true,
persist: "cookie"
});

$("#accordion").accordion({
collapsible: true,
autoHeight: false,
fillSpace: true
});

$(".tabs").tabs();
});
</script></head><body><div xmlns="" id="content">
<script xmlns:dbx="http://docblox-project.org/xsl/functions">

function filterElements()
{
inherited = !$('#show-inherited').hasClass('deselected');
public = !$('#show-public').hasClass('deselected');
protected = !$('#show-protected').hasClass('deselected');
private = !$('#show-private').hasClass('deselected');

$('div.public').each(function(index, val) {
$(val).toggle(public && !($(val).hasClass('inherited_from') && !inherited));
});
$('div.protected').each(function(index, val) {
$(val).toggle(protected && !($(val).hasClass('inherited_from') && !inherited));
});
$('div.private').each(function(index, val) {
$(val).toggle(private && !($(val).hasClass('inherited_from') && !inherited));
});
}

$(document).ready(function() {
$('a.gripper').click(function() {
$(this).nextAll('div.code-tabs').slideToggle();
$(this).children('img').toggle();
return false;
});

$('div.method code span.highlight,div.function code span.highlight,div.constant code span.highlight,div.property code span.highlight').css('cursor', 'pointer');

$('div.method code span.highlight,div.function code span.highlight,div.constant code span.highlight,div.property code span.highlight').click(function() {
$(this).parent().nextAll('div.code-tabs').slideToggle();
$(this).parent().prevAll('a.gripper').children('img').toggle();
return false;
});

$('div.code-tabs').hide();
$('a.gripper').show();
$('div.code-tabs:empty').prevAll('a.gripper').html('');

$('#show-public, #show-protected, #show-private, #show-inherited')
.css('cursor', 'pointer')
.click(function(){
$(this).toggleClass('deselected');
if ($(this).hasClass('deselected')) {
$(this).fadeTo('fast', '0.4');
} else {
$(this).fadeTo('fast', '1.0');
}
filterElements();
return false;
});
$('#show-protected, #show-private').click();

// add the sliding behaviour to the file navigation and show it
// it is initially hidden for non-JS users.
$("#file-nav-box").show().hover(function() {
$("#file-nav-container").slideDown(400);
}, function() {
$("#file-nav-container").slideUp(400);
});
});


</script><h1 xmlns:dbx="http://docblox-project.org/xsl/functions" class="file">DMS/Bundle/FilterBundle/DMSFilterBundle.php</h1>
<div xmlns:dbx="http://docblox-project.org/xsl/functions" id="file-nav-box">
<div id="file-nav-options">
Show:
<img src="images/icons/visibility_public.png" id="show-public"><img src="images/icons/visibility_protected.png" id="show-protected"><img src="images/icons/visibility_private.png" id="show-private"><span class="attribute" id="show-inherited">inherited</span>
</div>
<div id="file-nav-container">
<ul id="file-nav"><li>
<a href="#classes"><img src="images/icons/class.png" height="14">
Classes
</a><ul><li><a href="#%5CDMS%5CBundle%5CFilterBundle%5CDMSFilterBundle">\DMS\Bundle\FilterBundle\DMSFilterBundle</a></li></ul>
</li></ul>
<div style="clear: left;"></div>
</div>
<div id="file-nav-tab">
Table of Contents
</div>
</div>
<a xmlns:dbx="http://docblox-project.org/xsl/functions" name="top" class="anchor"></a><a name="classes" class="anchor"></a><a xmlns:dbx="http://docblox-project.org/xsl/functions" id="\DMS\Bundle\FilterBundle\DMSFilterBundle" class="anchor"></a><h2 xmlns:dbx="http://docblox-project.org/xsl/functions" class="class">\DMS\Bundle\FilterBundle\DMSFilterBundle<div class="to-top"><a href="#top">jump to top</a></div>
</h2>
<div xmlns:dbx="http://docblox-project.org/xsl/functions" class="class">
<small class="package"><b>Package: </b>DMS\Bundle</small><p class="short-description">DMS Filter Bundle</p>
<div class="long-description"><p>This Bundle makes DMS/Filter available to Symfony 2 Applications in a very
easy way.</p></div>
<dl class="class-info">
<dt>Parent(s)</dt>
<dd>\Symfony\Component\HttpKernel\Bundle\Bundle</dd>
<dt>Author</dt>
<dd>
<a href="mailto:code@doh.ms">Rafael Dohms</a>

</dd>
</dl>
</div>
</div>
<small xmlns="" class="footer">Documentation was generated by <a href="http://docblox-project.org">DocBlox 0.18.1</a>.
</small></body></html>
124 changes: 124 additions & 0 deletions docs/db_DMS_Bundle_FilterBundle_DependencyInjection_Configuration.html
@@ -0,0 +1,124 @@
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>DMS</title><link rel="stylesheet" href="css/jquery-ui.css" type="text/css"></link><link rel="stylesheet" href="css/docblox/jquery-ui-1.8.16.custom.css" type="text/css"></link><link rel="stylesheet" href="css/jquery.treeview.css" type="text/css"></link><link rel="stylesheet" href="css/theme.css" type="text/css"></link><script type="text/javascript" src="js/jquery-1.4.2.min.js"></script><script type="text/javascript" src="js/jquery-ui-1.8.2.custom.min.js"></script><script type="text/javascript" src="js/jquery.tools.min.js"></script><script type="text/javascript" src="js/jquery.cookie.js"></script><script type="text/javascript" src="js/jquery.treeview.js"></script><script type="text/javascript">
$(document).ready(function() {
$(".filetree").treeview({
collapsed: true,
persist: "cookie"
});

$("#accordion").accordion({
collapsible: true,
autoHeight: false,
fillSpace: true
});

$(".tabs").tabs();
});
</script></head><body><div xmlns="" id="content">
<script xmlns:dbx="http://docblox-project.org/xsl/functions">

function filterElements()
{
inherited = !$('#show-inherited').hasClass('deselected');
public = !$('#show-public').hasClass('deselected');
protected = !$('#show-protected').hasClass('deselected');
private = !$('#show-private').hasClass('deselected');

$('div.public').each(function(index, val) {
$(val).toggle(public && !($(val).hasClass('inherited_from') && !inherited));
});
$('div.protected').each(function(index, val) {
$(val).toggle(protected && !($(val).hasClass('inherited_from') && !inherited));
});
$('div.private').each(function(index, val) {
$(val).toggle(private && !($(val).hasClass('inherited_from') && !inherited));
});
}

$(document).ready(function() {
$('a.gripper').click(function() {
$(this).nextAll('div.code-tabs').slideToggle();
$(this).children('img').toggle();
return false;
});

$('div.method code span.highlight,div.function code span.highlight,div.constant code span.highlight,div.property code span.highlight').css('cursor', 'pointer');

$('div.method code span.highlight,div.function code span.highlight,div.constant code span.highlight,div.property code span.highlight').click(function() {
$(this).parent().nextAll('div.code-tabs').slideToggle();
$(this).parent().prevAll('a.gripper').children('img').toggle();
return false;
});

$('div.code-tabs').hide();
$('a.gripper').show();
$('div.code-tabs:empty').prevAll('a.gripper').html('');

$('#show-public, #show-protected, #show-private, #show-inherited')
.css('cursor', 'pointer')
.click(function(){
$(this).toggleClass('deselected');
if ($(this).hasClass('deselected')) {
$(this).fadeTo('fast', '0.4');
} else {
$(this).fadeTo('fast', '1.0');
}
filterElements();
return false;
});
$('#show-protected, #show-private').click();

// add the sliding behaviour to the file navigation and show it
// it is initially hidden for non-JS users.
$("#file-nav-box").show().hover(function() {
$("#file-nav-container").slideDown(400);
}, function() {
$("#file-nav-container").slideUp(400);
});
});


</script><h1 xmlns:dbx="http://docblox-project.org/xsl/functions" class="file">DMS/Bundle/FilterBundle/DependencyInjection/Configuration.php</h1>
<div xmlns:dbx="http://docblox-project.org/xsl/functions" id="file-nav-box">
<div id="file-nav-options">
Show:
<img src="images/icons/visibility_public.png" id="show-public"><img src="images/icons/visibility_protected.png" id="show-protected"><img src="images/icons/visibility_private.png" id="show-private"><span class="attribute" id="show-inherited">inherited</span>
</div>
<div id="file-nav-container">
<ul id="file-nav"><li>
<a href="#classes"><img src="images/icons/class.png" height="14">
Classes
</a><ul><li><a href="#%5CDMS%5CBundle%5CFilterBundle%5CDependencyInjection%5CConfiguration">\DMS\Bundle\FilterBundle\DependencyInjection\Configuration</a></li></ul>
</li></ul>
<div style="clear: left;"></div>
</div>
<div id="file-nav-tab">
Table of Contents
</div>
</div>
<a xmlns:dbx="http://docblox-project.org/xsl/functions" name="top" class="anchor"></a><a name="classes" class="anchor"></a><a xmlns:dbx="http://docblox-project.org/xsl/functions" id="\DMS\Bundle\FilterBundle\DependencyInjection\Configuration" class="anchor"></a><h2 xmlns:dbx="http://docblox-project.org/xsl/functions" class="class">\DMS\Bundle\FilterBundle\DependencyInjection\Configuration<div class="to-top"><a href="#top">jump to top</a></div>
</h2>
<div xmlns:dbx="http://docblox-project.org/xsl/functions" class="class">
<small class="package"><b>Package: </b>Default</small><p class="short-description">This is the class that validates and merges configuration from your app/config files</p>
<div class="long-description"><p>To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html#cookbook-bundles-extension-config-class}</p></div>
<dl class="class-info">
<dt>Parent(s)</dt>
<dd>?\Symfony\Component\Config\Definition\ConfigurationInterface</dd>
</dl>
<h3>Methods</h3>
<div>
<a id="\DMS\Bundle\FilterBundle\DependencyInjection\Configuration::getConfigTreeBuilder()" class="anchor"></a><div class="method public">
<a href="#" class="gripper"><img src="images/icons/arrow_right.png"><img src="images/icons/arrow_down.png" style="display: none;"></a><code><img src="images/icons/method.png" alt="method"><img src="images/icons/visibility_public.png" style="margin-right: 5px" alt="public"><span class="highlight">getConfigTreeBuilder</span><span class="nb-faded-text">(

)
</span>
:
void</code><div class="description"><p class="short_description">{@inheritDoc}</p></div>
<div class="code-tabs"><div class="long-description"></div></div>
<div class="clear"></div>
</div>
</div>
</div>
</div>
<small xmlns="" class="footer">Documentation was generated by <a href="http://docblox-project.org">DocBlox 0.18.1</a>.
</small></body></html>

0 comments on commit 0df4a75

Please sign in to comment.