Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pve-manager
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
Administrator
pve-manager
Commits
cd3753f6
Commit
cd3753f6
authored
Oct 04, 2011
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use better class names for NotesView/NotesEdit
parent
95855a83
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
Makefile
www/manager/Makefile
+2
-2
Summary.js
www/manager/openvz/Summary.js
+1
-1
NotesView.js
www/manager/panel/NotesView.js
+2
-2
Summary.js
www/manager/qemu/Summary.js
+1
-1
NotesEdit.js
www/manager/window/NotesEdit.js
+1
-1
No files found.
www/manager/Makefile
View file @
cd3753f6
...
@@ -45,6 +45,8 @@ JSSRC= \
...
@@ -45,6 +45,8 @@ JSSRC= \
window/LoginWindow.js
\
window/LoginWindow.js
\
window/TaskViewer.js
\
window/TaskViewer.js
\
window/Wizard.js
\
window/Wizard.js
\
window/NotesEdit.js
\
panel/NotesView.js
\
grid/SelectFeature.js
\
grid/SelectFeature.js
\
grid/ObjectGrid.js
\
grid/ObjectGrid.js
\
grid/ResourceGrid.js
\
grid/ResourceGrid.js
\
...
@@ -73,8 +75,6 @@ JSSRC= \
...
@@ -73,8 +75,6 @@ JSSRC= \
qemu/CDEdit.js
\
qemu/CDEdit.js
\
qemu/HDEdit.js
\
qemu/HDEdit.js
\
qemu/DisplayEdit.js
\
qemu/DisplayEdit.js
\
qemu/NotesEdit.js
\
qemu/NotesView.js
\
qemu/KeyboardEdit.js
\
qemu/KeyboardEdit.js
\
qemu/HardwareView.js
\
qemu/HardwareView.js
\
qemu/Options.js
\
qemu/Options.js
\
...
...
www/manager/openvz/Summary.js
View file @
cd3753f6
...
@@ -134,7 +134,7 @@ Ext.define('PVE.openvz.Summary', {
...
@@ -134,7 +134,7 @@ Ext.define('PVE.openvz.Summary', {
tbar
.
down
(
'
#remove
'
).
setDisabled
(
status
!==
'
stopped
'
);
tbar
.
down
(
'
#remove
'
).
setDisabled
(
status
!==
'
stopped
'
);
});
});
var
notesview
=
Ext
.
create
(
'
PVE.
qemu
.NotesView
'
,
{
var
notesview
=
Ext
.
create
(
'
PVE.
panel
.NotesView
'
,
{
pveSelNode
:
me
.
pveSelNode
,
pveSelNode
:
me
.
pveSelNode
,
flex
:
1
flex
:
1
});
});
...
...
www/manager/
qemu
/NotesView.js
→
www/manager/
panel
/NotesView.js
View file @
cd3753f6
Ext
.
define
(
'
PVE.
qemu
.NotesView
'
,
{
Ext
.
define
(
'
PVE.
panel
.NotesView
'
,
{
extend
:
'
Ext.panel.Panel
'
,
extend
:
'
Ext.panel.Panel
'
,
load
:
function
()
{
load
:
function
()
{
...
@@ -50,7 +50,7 @@ Ext.define('PVE.qemu.NotesView', {
...
@@ -50,7 +50,7 @@ Ext.define('PVE.qemu.NotesView', {
listeners
:
{
listeners
:
{
render
:
function
(
c
)
{
render
:
function
(
c
)
{
c
.
el
.
on
(
'
dblclick
'
,
function
()
{
c
.
el
.
on
(
'
dblclick
'
,
function
()
{
var
win
=
Ext
.
create
(
'
PVE.
qemu
.NotesEdit
'
,
{
var
win
=
Ext
.
create
(
'
PVE.
window
.NotesEdit
'
,
{
pveSelNode
:
me
.
pveSelNode
,
pveSelNode
:
me
.
pveSelNode
,
url
:
me
.
url
url
:
me
.
url
});
});
...
...
www/manager/qemu/Summary.js
View file @
cd3753f6
...
@@ -158,7 +158,7 @@ Ext.define('PVE.qemu.Summary', {
...
@@ -158,7 +158,7 @@ Ext.define('PVE.qemu.Summary', {
tbar
.
down
(
'
#remove
'
).
setDisabled
(
status
!==
'
stopped
'
);
tbar
.
down
(
'
#remove
'
).
setDisabled
(
status
!==
'
stopped
'
);
});
});
var
notesview
=
Ext
.
create
(
'
PVE.
qemu
.NotesView
'
,
{
var
notesview
=
Ext
.
create
(
'
PVE.
panel
.NotesView
'
,
{
pveSelNode
:
me
.
pveSelNode
,
pveSelNode
:
me
.
pveSelNode
,
flex
:
1
flex
:
1
});
});
...
...
www/manager/
qemu
/NotesEdit.js
→
www/manager/
window
/NotesEdit.js
View file @
cd3753f6
Ext
.
define
(
'
PVE.
qemu
.NotesEdit
'
,
{
Ext
.
define
(
'
PVE.
window
.NotesEdit
'
,
{
extend
:
'
PVE.window.Edit
'
,
extend
:
'
PVE.window.Edit
'
,
initComponent
:
function
()
{
initComponent
:
function
()
{
...
...
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