Ron Hudson

Results 51 comments of Ron Hudson

@rsalmond There is a .txt() method too. I designed it to hold the basic info and be extensible to dump it in any format we need to add. I was...

I think renaming it definitely makes sense. MessageAttachment or Attachment is fine with me. I confess I have no idea where it should actually go. I need guidance on that.

Ah I think I get it. So we add Attachment class to abstractions.py and take the .slack method and put it in the actual slack backend. What about the colors?...

Ok this new implementation works. @rsalmond is this what you had in mind?

@chillipeper Thanks so much for the feedback! Colors: I had been using colors as a means of showing applications rather than status. So our people database is blue, and check-in...

Bump to get more guidance on the colors. Thanks!

@Ashex I'd love to get this wrapped. The tests I wrote are mostly testing the logic of creating an attachment with and without arguments to ensure defaults work. This way...

Bump, is hex color the only thing holding this from a merge?

Ok it wouldn’t be hard to add red and check for ‘#’ in the style string and directly assign the hex code like #4287f5 I’ll see if I can add...

I also thought of adding something like ``` message_attachment_style = { "mystyle1": "#somehex", "mystyle2": "#somehex", "mystyle3": "#somehex", "mystyle4": "#somehex", "mystyle5": "#somehex", } ``` To the config.py So people could simply...