Displaying 20 results from an estimated 24 matches for "attr_list".
2007 Nov 04
0
7 commits - libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_field_movie.h libswfdec/swfdec_text_field_movie_html.c
...;
} else {
length = paragraphs[i].length - block->index_;
+ if (paragraphs[i].newline)
+ length -= 1;
}
if (skip > length) {
@@ -577,14 +581,16 @@ swfdec_text_field_movie_get_layouts (SwfdecTextFieldMovie *text, int *num,
pango_layout_set_attributes (playout, attr_list);
if (text->text->password) {
- pango_layout_set_text (playout, text->asterisks,
- paragraphs[i].length - block->index_ - skip);
+ pango_layout_set_text (playout, text->asterisks, paragraphs[i].length -
+ block->index_ - skip - (paragraphs[i].newline ? 1 : 0));...
2010 Feb 25
2
[PATCH] Enhance vms display
...app/controllers/pool_controller.rb b/src/app/controllers/pool_controller.rb
index e86b064..e6c341d 100644
--- a/src/app/controllers/pool_controller.rb
+++ b/src/app/controllers/pool_controller.rb
@@ -94,11 +94,11 @@ class PoolController < ApplicationController
end
def vms_json(args)
- attr_list = [:id, :description, :uuid,
+ attr_list = [:id, :description,
:num_vcpus_allocated, :memory_allocated_in_mb,
- :state, :calc_uptime, :id]
+ :state, :contact, :os, :eol, :comment ]
if (@pool.is_a? VmResourcePool) and @pool.get_hardware_pool....
2007 Oct 17
0
libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h libswfdec/swfdec_text_field_movie.c
...yles
- pango_layout_set_spacing (playout, block->leading);
- pango_layout_set_tabs (playout, block->tab_stops);
-
- // set text attributes
- if (block->index_ > 0 ||
- (trans != NULL && !swfdec_color_transform_is_identity (trans)))
- {
- PangoAttrList *attr_list;
- GList *iter_attrs;
-
- attr_list = pango_attr_list_new ();
-
- for (iter_attrs = paragraphs[i].attrs; iter_attrs != NULL;
- iter_attrs = iter_attrs->next)
- {
- PangoAttribute *attr;
-
- attr = (PangoAttribute *)iter_attrs->data;
-
- if (attr->end_index <= block->index_...
2009 May 19
1
re-sending outstanding controller refactoring patches after rebase
I've rebased the patch series to the current next branch and am sending them again.
2011 Sep 22
1
computation of header ids
Hi,
I'm using the header id extension from markdown extra and in my
perception it gets wrong when I use attributes on headers, for instance:
>>> md = markdown.Markdown(['extra'])
>>> md.convert('# My header {@class=red}')
u'<h1 class="red" id="my_header_classred_1">My header </h1>'
I would have expected:
2009 Jul 06
0
[PATCH server] UI for accumulated uptime for VMs. (revised2)
...-git a/src/app/controllers/pool_controller.rb b/src/app/controllers/pool_controller.rb
index 74a958c..44cb780 100644
--- a/src/app/controllers/pool_controller.rb
+++ b/src/app/controllers/pool_controller.rb
@@ -96,7 +96,7 @@ class PoolController < ApplicationController
def vms_json(args)
attr_list = [:id, :description, :uuid,
:num_vcpus_allocated, :memory_allocated_in_mb,
- :vnic_mac_addr, :state, :id]
+ :vnic_mac_addr, :state, :calc_uptime, :id]
if (@pool.is_a? VmResourcePool) and @pool.get_hardware_pool.can_view(@user)
attr_list...
2009 Jul 02
1
[PATCH server] UI for accumulated uptime for VMs. (revised)
...-git a/src/app/controllers/pool_controller.rb b/src/app/controllers/pool_controller.rb
index 74a958c..44cb780 100644
--- a/src/app/controllers/pool_controller.rb
+++ b/src/app/controllers/pool_controller.rb
@@ -96,7 +96,7 @@ class PoolController < ApplicationController
def vms_json(args)
attr_list = [:id, :description, :uuid,
:num_vcpus_allocated, :memory_allocated_in_mb,
- :vnic_mac_addr, :state, :id]
+ :vnic_mac_addr, :state, :calc_uptime, :id]
if (@pool.is_a? VmResourcePool) and @pool.get_hardware_pool.can_view(@user)
attr_list...
2009 Jul 06
2
[PATCH server] UI for accumulated uptime for VMs. (revised3)
...-git a/src/app/controllers/pool_controller.rb b/src/app/controllers/pool_controller.rb
index 74a958c..44cb780 100644
--- a/src/app/controllers/pool_controller.rb
+++ b/src/app/controllers/pool_controller.rb
@@ -96,7 +96,7 @@ class PoolController < ApplicationController
def vms_json(args)
attr_list = [:id, :description, :uuid,
:num_vcpus_allocated, :memory_allocated_in_mb,
- :vnic_mac_addr, :state, :id]
+ :vnic_mac_addr, :state, :calc_uptime, :id]
if (@pool.is_a? VmResourcePool) and @pool.get_hardware_pool.can_view(@user)
attr_list...
2009 Jun 29
3
[PATCH server] UI for accumulated uptime for VMs.
...-git a/src/app/controllers/pool_controller.rb b/src/app/controllers/pool_controller.rb
index 74a958c..44cb780 100644
--- a/src/app/controllers/pool_controller.rb
+++ b/src/app/controllers/pool_controller.rb
@@ -96,7 +96,7 @@ class PoolController < ApplicationController
def vms_json(args)
attr_list = [:id, :description, :uuid,
:num_vcpus_allocated, :memory_allocated_in_mb,
- :vnic_mac_addr, :state, :id]
+ :vnic_mac_addr, :state, :calc_uptime, :id]
if (@pool.is_a? VmResourcePool) and @pool.get_hardware_pool.can_view(@user)
attr_list...
2013 Jul 01
6
attribute blocks for definition lists
Hello,
As I am using markdown to write documentation, I am often tempted to make
links to terms in definition lists.
Since this is not possible for now (at least in php markdown extra), I was
wondering if this could be a common addition in major implementation
supporting definition lists.
the syntax would be
term {#id}
: definition
This syntax tries to follows current convention and
2007 Oct 29
0
20 commits - libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_html_parser.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h
...dex_ - block->index_;
} else {
- length = paragraphs[i].text_length - block->index_;
+ length = paragraphs[i].length - block->index_;
}
if (skip > length) {
@@ -490,8 +487,8 @@ swfdec_text_field_movie_get_layouts (SwfdecTextFieldMovie *text, int *num,
pango_attr_list_unref (attr_list);
pango_layout_set_text (playout,
- paragraphs[i].text + block->index_ + skip,
- paragraphs[i].text_length - block->index_ - skip);
+ text->input->str + paragraphs[i].index_ + block->index_ + skip,
+ paragraphs[i].length - block->index_ - skip);...
2007 Nov 02
0
5 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_as_array.h libswfdec/swfdec_as_date.c libswfdec/swfdec_as_date.h libswfdec/swfdec_as_initialize.as libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.c libswfdec/swfdec_filter.c
...>text->password)
+ swfdec_text_field_movie_ensure_asterisks (text, max_length);
+
return (SwfdecParagraph *)g_array_free (paragraphs, FALSE);
}
@@ -487,9 +513,14 @@ swfdec_text_field_movie_get_layouts (SwfdecTextFieldMovie *text, int *num,
pango_layout_set_attributes (playout, attr_list);
pango_attr_list_unref (attr_list);
- pango_layout_set_text (playout,
- text->input->str + paragraphs[i].index_ + block->index_ + skip,
- paragraphs[i].length - block->index_ - skip);
+ if (text->text->password) {
+ pango_layout_set_text (playout, text->...
2007 Dec 05
0
4 commits - libswfdec/swfdec_as_object.c libswfdec/swfdec_movie.c libswfdec/swfdec_policy_loader.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_format.c
...t, int *num,
// set block styles
pango_layout_set_spacing (playout, block->leading);
- pango_layout_set_tabs (playout, block->tab_stops);
+ if (block->tab_stops != NULL)
+ pango_layout_set_tabs (playout, block->tab_stops);
// set text attributes
attr_list = swfdec_text_field_movie_paragraph_get_attr_list (
diff --git a/libswfdec/swfdec_text_format.c b/libswfdec/swfdec_text_format.c
index f6485c4..79e82ee 100644
--- a/libswfdec/swfdec_text_format.c
+++ b/libswfdec/swfdec_text_format.c
@@ -737,8 +737,7 @@ swfdec_text_format_do_set_tab_stops (SwfdecAsC...
2006 Mar 05
13
Moving files to new server
Hello,
I am getting a new computer and am going to need to move the files from the
old to the new. What is the best way to do this?
Should I install CentOS from scratch on the new computer then move the
directories I need? How do I maintain permissions if this is the best way?
TIA
Eddie
2009 Jul 24
1
permit many-to-many vms / networks relationship redux
redux patchset permitting a vm to be associated with
multiple networks and vice-versa. updated patchset so
as to be applicable against current oVirt server HEAD
these patches may be applied in any order, they all
need to be pushed together
2009 Jul 09
2
permit many-to-many vms / networks relationship
This patchset contains changes to the ovirt server
frontend, backend, and tests components, permitting vms
to be associated with multiple networks and vice versa.
Also included are two patches which are required for the frontend
bits; a patch adding collapsable sections to the vm form, which
in itself depends on the second patch that provides default values
for the cpu and memory vm table fields
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
...-git a/src/app/controllers/pool_controller.rb b/src/app/controllers/pool_controller.rb
index 74a958c..0d2e491 100644
--- a/src/app/controllers/pool_controller.rb
+++ b/src/app/controllers/pool_controller.rb
@@ -96,7 +96,7 @@ class PoolController < ApplicationController
def vms_json(args)
attr_list = [:id, :description, :uuid,
:num_vcpus_allocated, :memory_allocated_in_mb,
- :vnic_mac_addr, :state, :id]
+ :state, :id]
if (@pool.is_a? VmResourcePool) and @pool.get_hardware_pool.can_view(@user)
attr_list.insert(3, [:host, :hostname])...
2004 Jan 15
2
Installation Problem !!!
...tr... yes
checking for llistxattr... yes
checking for flistxattr... yes
checking for removexattr... yes
checking for lremovexattr... yes
checking for fremovexattr... yes
checking for setxattr... yes
checking for lsetxattr... yes
checking for fsetxattr... yes
checking for attr_get... no
checking for attr_list... no
checking for attr_set... no
checking for attr_remove... no
checking for attr_getf... no
checking for attr_listf... no
checking for attr_setf... no
checking for attr_removef... no
checking ability to build shared libraries... true
checking linker flags for shared libraries... -shared
checking...
2005 Aug 10
2
Compiling smbtorture
...tr... yes
checking for llistxattr... yes
checking for flistxattr... yes
checking for removexattr... yes
checking for lremovexattr... yes
checking for fremovexattr... yes
checking for setxattr... yes
checking for lsetxattr... yes
checking for fsetxattr... yes
checking for attr_get... no
checking for attr_list... no
checking for attr_set... no
checking for attr_remove... no
checking for attr_getf... no
checking for attr_listf... no
checking for attr_setf... no
checking for attr_removef... no
checking ability to build shared libraries... true
checking linker flags for shared libraries... -shared -Wl,-Bsym...
2008 Jul 08
0
Report this to samba-technical@samba.org, ldap_initialize error
...king for fsetea... no
checking for lsetea... no
checking for flistxattr... no
checking for removexattr... no
checking for lremovexattr... no
checking for fremovexattr... no
checking for setxattr... no
checking for lsetxattr... no
checking for fsetxattr... no
checking for attr_get... no
checking for attr_list... no
checking for attr_set... no
checking for attr_remove... no
checking for attr_getf... no
checking for attr_listf... no
checking for attr_setf... no
checking for attr_removef... no
checking for attropen... yes
checking for extattr_delete_fd... no
checking for extattr_delete_file... no
checking...