Skip to content

Commit

Permalink
Fixed gitignore to mach project structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
artur-stepien committed Dec 5, 2016
1 parent 4b37968 commit eea86cf
Show file tree
Hide file tree
Showing 144 changed files with 22,334 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
!/administrator/
/administrator/*
!/administrator/components/
/administrator/components/*
!/administrator/components/com_govarticle/**

!/administrator/modules/
/administrator/modules/*
!/administrator/modules/mod_govarticle_log/**

!/administrator/manifests/
/administrator/manifests/*
!/administrator/manifests/files/
/administrator/manifests/files/*
!/administrator/manifests/files/govarticle.xml

!/components/
/components/*
!/components/com_govarticle/**

!/layouts/
/layouts/*
!/layouts/govarticle/*

!/modules/
/modules/*
!/modules/mod_govarticle_categories/**
!/modules/mod_govarticle_category/**
!/modules/mod_govarticle_stats/**

!/plugins/
/plugins/*
!/plugins/editors-xtd/
/plugins/editors-xtd/*
!/plugins/editors-xtd/govarticle/**
!/plugins/search/
/plugins/search/*
!/plugins/search/govarticle/**

!/LICENSE
!/README.md
26 changes: 26 additions & 0 deletions administrator/components/com_govarticle/access.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8" ?>
<access component="com_govarticle">
<section name="component">
<action name="core.admin" title="JACTION_ADMIN" description="JACTION_ADMIN_COMPONENT_DESC" />
<action name="core.options" title="JACTION_OPTIONS" description="JACTION_OPTIONS_COMPONENT_DESC" />
<action name="core.manage" title="JACTION_MANAGE" description="JACTION_MANAGE_COMPONENT_DESC" />
<action name="core.create" title="JACTION_CREATE" description="JACTION_CREATE_COMPONENT_DESC" />
<action name="core.delete" title="JACTION_DELETE" description="JACTION_DELETE_COMPONENT_DESC" />
<action name="core.edit" title="JACTION_EDIT" description="JACTION_EDIT_COMPONENT_DESC" />
<action name="core.edit.state" title="JACTION_EDITSTATE" description="JACTION_EDITSTATE_COMPONENT_DESC" />
<action name="core.edit.own" title="JACTION_EDITOWN" description="JACTION_EDITOWN_COMPONENT_DESC" />
<action name="core.inspect" title="JACTION_INSPECT" description="JACTION_INSPECT_COMPONENT_DESC" />
</section>
<section name="category">
<action name="core.create" title="JACTION_CREATE" description="COM_CATEGORIES_ACCESS_CREATE_DESC" />
<action name="core.delete" title="JACTION_DELETE" description="COM_CATEGORIES_ACCESS_DELETE_DESC" />
<action name="core.edit" title="JACTION_EDIT" description="COM_CATEGORIES_ACCESS_EDIT_DESC" />
<action name="core.edit.state" title="JACTION_EDITSTATE" description="COM_CATEGORIES_ACCESS_EDITSTATE_DESC" />
<action name="core.edit.own" title="JACTION_EDITOWN" description="COM_CATEGORIES_ACCESS_EDITOWN_DESC" />
</section>
<section name="article">
<action name="core.delete" title="JACTION_DELETE" description="COM_GOVARTICLE_ACCESS_DELETE_DESC" />
<action name="core.edit" title="JACTION_EDIT" description="COM_GOVARTICLE_ACCESS_EDIT_DESC" />
<action name="core.edit.state" title="JACTION_EDITSTATE" description="COM_GOVARTICLE_ACCESS_EDITSTATE_DESC" />
</section>
</access>
Loading

0 comments on commit eea86cf

Please sign in to comment.