This repository has been archived by the owner on Mar 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replaced policy events log with a view.
Added date handlers for policy and policy log date fields. Cleaned up log types. Added administrative view to give overview of all policy log entries.
- Loading branch information
1 parent
aaab3f4
commit 17b39cb
Showing
18 changed files
with
872 additions
and
304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,34 @@ | ||
# CHANGELOG # | ||
|
||
### 1.01 ### | ||
2015-12-08 | ||
- Template improvements | ||
- Added bypass to the server snapshot by an automated policy when the VM is down. | ||
- Fixed number of tests. | ||
- Added missing permission, that was preventing administrator from accessing | ||
snapshot policy pages. | ||
- Updated snapshot policy snapshots selector to be server max less 5. | ||
- Fixed Snapshots page layout bug in mobile devices preventing snapshot actions. | ||
- Other bug fixes and improvements. | ||
xs 7.x-1.3, 2015-12-12 | ||
---------------------- | ||
[] ig: Replaced policy events log with a view. | ||
[] ig: Added date handlers for policy and policy log date fields. | ||
[] ig: Cleaned up log types. | ||
[] ig: Added administrative view to give overview of all policy log entries. | ||
|
||
### 1.0 ### | ||
2015-12-05 | ||
xs 7.x-1.1, 2015-12-08 | ||
---------------------- | ||
[] ig: Template improvements | ||
[] ig: Added bypass to the server snapshot by an automated policy when the VM is down. | ||
[] ig: Fixed number of tests. | ||
[] ig: Added missing permission, that was preventing administrator from accessing | ||
snapshot policy pages. | ||
[] ig: Updated snapshot policy snapshots selector to be server max less 5. | ||
[] ig: Fixed Snapshots page layout bug in mobile devices preventing snapshot actions. | ||
[] ig: Other bug fixes and improvements. | ||
|
||
- Automated snapshot policies as entities. | ||
- Entity Policy type. | ||
- Entity Policy log. | ||
- One policy per server. | ||
- Ability to store policy events into designated log. | ||
- Automated cron job that manages snapshot creation and removal. | ||
xs 7.x-1.0, 2015-12-05 | ||
---------------------- | ||
[] ig: Automated snapshot policies as entities. | ||
[] ig: Entity Policy type. | ||
[] ig: Entity Policy log. | ||
[] ig: One policy per server. | ||
[] ig: Ability to store policy events into designated log. | ||
[] ig: Automated cron job that manages snapshot creation and removal. | ||
|
||
### RC ### | ||
2015-11-22 | ||
|
||
Official first public release. | ||
- VM content type available. | ||
- Ability to allocate VM to Drupal users and add Dom-U uuid. | ||
- Ability to create manual snapshots. | ||
xs 7.x-1.x-RC2, 2015-11-12 | ||
-------------------------- | ||
[] ig: VM content type available. | ||
[] ig: Ability to allocate VM to Drupal users and add Dom-U uuid. | ||
[] ig: Ability to create manual snapshots. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
modules/xs_snapshot_policy/views/views-view-field--xs-user-vms--page--nothing.tpl.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
/** | ||
* @file | ||
* This template is used to print a single field in a view. | ||
* | ||
* It is not actually used in default Views, as this is registered as a theme | ||
* function which has better performance. For single overrides, the template is | ||
* perfectly okay. | ||
* | ||
* Variables available: | ||
* - $view: The view object | ||
* - $field: The field handler object that can process the input | ||
* - $row: The raw SQL result that can be used | ||
* - $output: The processed output that will normally be used. | ||
* | ||
* When fetching output from the $row, this construct should be used: | ||
* $data = $row->{$field->field_alias} | ||
* | ||
* The above will guarantee that you'll always get the correct data, | ||
* regardless of any changes in the aliasing that might happen if | ||
* the view is modified. | ||
*/ | ||
?> | ||
<?php print $output; ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.