Changes to the prototype of Ride(Rich IDE)
Esse commit está contido em:
@@ -4,7 +4,66 @@
|
|||||||
?>
|
?>
|
||||||
<div id="appBody">
|
<div id="appBody">
|
||||||
<div id="menuPanel">
|
<div id="menuPanel">
|
||||||
<br/>
|
<nav id="menuList">
|
||||||
|
<ul>
|
||||||
|
<li tabindex="0">
|
||||||
|
File
|
||||||
|
<ul>
|
||||||
|
<li>New project</li>
|
||||||
|
<li>Open</li>
|
||||||
|
<li class="depends-on-project">Save</li>
|
||||||
|
<li class="depends-on-project">Save as...</li>
|
||||||
|
<li class="separator"></li>
|
||||||
|
<li>Import</li>
|
||||||
|
<li class="depends-on-project">Export</li>
|
||||||
|
<li class="separator"></li>
|
||||||
|
<li>Exit</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li tabindex="0">
|
||||||
|
Edit
|
||||||
|
<ul>
|
||||||
|
<li class="depends-on-project">Project properties</li>
|
||||||
|
<li>User properties</li>
|
||||||
|
<li>User preferences</li>
|
||||||
|
<li class="separator"></li>
|
||||||
|
<li>Manage projects</li>
|
||||||
|
<li class="depends-on-admin">Manage users</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li tabindex="0">
|
||||||
|
View
|
||||||
|
<ul>
|
||||||
|
<li>Left Panel</li>
|
||||||
|
<li>Output Panel</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li tabindex="0">
|
||||||
|
Tools
|
||||||
|
<ul>
|
||||||
|
<li class="depends-on-project">Analyze project</li>
|
||||||
|
<li class="depends-on-project">Update project</li>
|
||||||
|
<li class="depends-on-project">Commit project</li>
|
||||||
|
<li class="depends-on-project">Generate...</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li tabindex="0">
|
||||||
|
Help
|
||||||
|
<ul>
|
||||||
|
<li>Documentation</li>
|
||||||
|
<li>User Interface</li>
|
||||||
|
<li>User group</li>
|
||||||
|
<li class="separator"></li>
|
||||||
|
<li>Report a bug</li>
|
||||||
|
<li>Contribute</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
<div id="toolsPanel">
|
<div id="toolsPanel">
|
||||||
<br/>
|
<br/>
|
||||||
|
|||||||
@@ -71,8 +71,31 @@ body
|
|||||||
position:absolute;
|
position:absolute;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#menuList{
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
#menuList ul{
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
#menuList>ul>li{
|
||||||
|
padding: 4px;
|
||||||
|
margin-righ: 1px;
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
#menuList>ul>li ul{
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
position: absolute;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
#menuList ul li:hover ul{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
#menuList ul li:focus ul{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -10,9 +10,7 @@
|
|||||||
Symfony\Component\Console;
|
Symfony\Component\Console;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class represents the program auth, receiving the user and
|
* This program commits the current alterations to eveyone.
|
||||||
* may also receive the password. It will start your session
|
|
||||||
* allowing you to run the restricted programs
|
|
||||||
*
|
*
|
||||||
* @author Felipe Nascimento de Moura <felipenmoura@gmail.com>
|
* @author Felipe Nascimento de Moura <felipenmoura@gmail.com>
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
$this->setCommandName('who')
|
$this->setCommandName('who')
|
||||||
->setDescription("Show information about the currently logged used")
|
->setDescription("Show information about the currently logged used")
|
||||||
->setRestrict(true)
|
->setRestrict(true)
|
||||||
->setHelp("Show information about the currently logged used")
|
->setHelp("Show information about the currently logged user")
|
||||||
->setAction(function($class){
|
->setAction(function($class){
|
||||||
$class->executableFunction();
|
$class->executableFunction();
|
||||||
});
|
});
|
||||||
|
|||||||
Referência em uma Nova Issue
Bloquear um usuário