Re: [Spacewalk-devel] Translations

2010-05-07 Thread Jan Pazdziora
On Thu, May 06, 2010 at 10:20:52AM +0200, Miroslav Suchý wrote:
 You can help with Spacewalk translation at:
  https://translate.fedoraproject.org/projects/p/spacewalk/
 
 You should be able to log in using you FAS account.
 
 You are encouraged to work on following components:
  rhnsd
  yum-rhn-plugin
  rhn-client-tools
 Please do *not* work on
  spacewalk-server
 as 8bit characted currently make problem in xmlrpc communitacion.
 
 All changes in Transifex will be automaticaly saved in master branch
 of our git repo.

Cool stuff, thank you, Mirek.

-- 
Jan Pazdziora
Principal Software Engineer, Satellite Engineering, Red Hat

___
Spacewalk-devel mailing list
Spacewalk-devel@redhat.com
https://www.redhat.com/mailman/listinfo/spacewalk-devel


Re: [Spacewalk-devel] Moving postgres support forward

2010-05-07 Thread Devrim GÜNDÜZ
On Thu, 2010-05-06 at 10:00 -0400, Tom Lane wrote:
  Has anyone tested Spacewalk on EDB AS?
 
 Dunno; but if the goal is to not depend on a proprietary database,
 that path wouldn't get us there.

I was suggesting it as an alternative to Oracle, in order to decrease
costs.

 (Having gotten pretty up close and personal with the PL/SQL code,
 I would bet that EDB could only offer about a 90% solution anyway.
 There is some weird, not sanely automatically translatable, stuff
 in there --- like use of autonomous subtransactions, not because
 the code logic requires it, but to work around deadlocks in Oracle's
 foreign key checking.)

Oh...
-- 
Devrim GÜNDÜZ
PostgreSQL Danışmanı/Consultant, Red Hat Certified Engineer
PostgreSQL RPM Repository: http://yum.pgrpms.org
Community: devrim~PostgreSQL.org, devrim.gunduz~linux.org.tr
http://www.gunduz.org  Twitter: http://twitter.com/devrimgunduz


signature.asc
Description: This is a digitally signed message part
___
Spacewalk-devel mailing list
Spacewalk-devel@redhat.com
https://www.redhat.com/mailman/listinfo/spacewalk-devel

Re: [Spacewalk-devel] color guide for treeview lists

2010-05-07 Thread Máirín Duffy
Hi Miroslav!

On Fri, 2010-05-07 at 10:27 +0200, Miroslav Suchý wrote:
  I'm going to be looking to make some CSS changes for this as well but as
  it may be a handy resource at some point (maybe not) I figured I'd post
  about it here.
 
 Which reminds me... will you do css using the old-fashion way or use 
 :nth-child() pseudo class from CSS3? It should be recognized by most 
 today's browsers (but *cough* IE).

Well, I know we do have quite a few users who have to use IE (corporate
policies) so I'm quite hesitant to introduce anything that would break
it, despite how much I dislike IE. We do already have the even/odd hooks
in the listview tag, so it would actually be extra work to pull them
out.

What do you think?

~m

___
Spacewalk-devel mailing list
Spacewalk-devel@redhat.com
https://www.redhat.com/mailman/listinfo/spacewalk-devel

Re: [Spacewalk-devel] color guide for treeview lists

2010-05-07 Thread Máirín Duffy
On Thu, 2010-05-06 at 17:41 -0400, Máirín Duffy wrote:
 https://fedorahosted.org/spacewalk/attachment/wiki/ArtAndDesignStuff/color-guide.png
 
 I'm going to be looking to make some CSS changes for this as well but as
 it may be a handy resource at some point (maybe not) I figured I'd post
 about it here.

Just as a quick follow-up, I added additional coloration to the color
guide, and drew up a diagram of the css classes specifically for tree
lists:

https://fedorahosted.org/spacewalk/attachment/wiki/ArtAndDesignStuff/spacewalk-tree-list-css-structure.png

I think it makes the css a lot cleaner to add a 'tree' class to the
table tag. It makes all the other css classes underneath shorter and
more readable. So, to add an additional class in the HTML, you simply
add a space between the classes like so:

table class=list tree

If you can make the HTML output by the tree list tag match that diagram,
then the attached CSS should work. I think there are two tree list tags
whose tr elements (the td elements are fine as-is) need to be
stripped of their CSS classes and redone according to the diagram:

1 - Systems  Systems  Virtual Systems
2 - Systems  Systems  Duplicate Systems

If someone (/me furtively points at partha :) ) can fix up the HTML
tags, I'm happy to clean out the CSS, integrate it, and provide a patch.

Also, let me know if the diagram isn't clear. It was the most clear way
I could think of to describe the structure of the CSS classes.

~m
table.tree .list-row-parent-even td {
  background-color: #dedede;
}

table.tree .list-row-parent-even .list-row-child-even td {
  background-color: #ff;
}

table.tree .list-row-parent-even .list-row-child-odd td {
  background-color: #ececec;
}

table.tree .list-row-parent-odd td {
  background-color: #d2d2d2;
}

table.tree .list-row-parent-odd .list-row-child-even td {
  background-color: #e4e4e4;
}

table.tree .list-row-parent-odd .list-row-child-odd td {
  background-color: #ee;
}
___
Spacewalk-devel mailing list
Spacewalk-devel@redhat.com
https://www.redhat.com/mailman/listinfo/spacewalk-devel

Re: [Spacewalk-devel] color guide for treeview lists

2010-05-07 Thread Máirín Duffy
On Fri, 2010-05-07 at 17:37 -0400, Máirín Duffy wrote:
 Also, let me know if the diagram isn't clear. It was the most clear way
 I could think of to describe the structure of the CSS classes.

Justin pointed out it the diagram and css were missing a style for
highlighting inactive systems. I also noticed I actually made a bad
mistake on the css structure and css - while conceptually there's a
parent-child relationship between the TR's, in reality they are siblings
and that hierarchy is superimposed on top of the HTML via javascript -
but not in the DOM. 

So, I've updated everything to account for this, and I'm providing
updated CSS (attached).

~m
table.tree .list-row-parent-even td {
  background-color: #dedede;
}

table.tree .list-row-even-child-even td {
  background-color: #ff;
}

table.tree .list-row-even-child-odd td {
  background-color: #ececec;
}

table.tree .list-row-parent-odd td {
  background-color: #d2d2d2;
}

table.tree .list-row-odd-child-even td {
  background-color: #e4e4e4;
}

table.tree .list-row-odd-child-odd td {
  background-color: #ee;
}

table.tree .inactive {
  background-color: #fef5ad;
}
___
Spacewalk-devel mailing list
Spacewalk-devel@redhat.com
https://www.redhat.com/mailman/listinfo/spacewalk-devel