unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#1892: Please ship http://www.emacswiki.org/emacs/ErcBar included with ERC
@ 2009-01-13 15:52 Jason A. Spiro
  0 siblings, 0 replies; 4+ messages in thread
From: Jason A. Spiro @ 2009-01-13 15:52 UTC (permalink / raw)
  To: bug-gnu-emacs

Thanks for maintaining ERC.  One thing:  Please ship
http://www.emacswiki.org/emacs/ErcBar with ERC as a module which is
enabled by default.  (In xchat, the trackbar is enabled by default
already.)  I asked on freenode #erc, and offby1 said it was a good
idea.

--Jason

In GNU Emacs 22.2.1 (i486-pc-linux-gnu, X toolkit, Xaw3d scroll bars)
of 2008-11-09 on raven, modified by Debian

--
Jason Spiro: software/web developer, trainer, IT consultant. I support
Linux, UNIX, Windows, and more. Contact me to discuss your needs.
+1 (416) 992-3445 / info@jspiro.com







^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#1892: Please ship http://www.emacswiki.org/emacs/ErcBar included with ERC
@ 2009-01-13 16:09 jasonspiro
  2009-01-13 17:06 ` Antoine Levitt
  0 siblings, 1 reply; 4+ messages in thread
From: jasonspiro @ 2009-01-13 16:09 UTC (permalink / raw)
  To: smeuuh; +Cc: 1892

Hi smeuuh,

I just asked[1] the ERC maintainers to include ErcBar[2] with ERC as a
module enabled by default.

A)  Just to verify:  the software license for ErcBar is the license
stated at the bottom of the ErcBar webpage?

B)  Do you know why copyright assignment is important?

C)  I don't know if ErcBar requires copyright assignment.  If it does,
are you willing to sign the form and mail it back to the Free Software
Foundation?

Please Reply to All.

Thanks in advance,
-Jason

^  [1].  http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=1892
^  [2].  http://www.emacswiki.org/emacs/ErcBar
-- 
Jason Spiro: software/web developer, packager, trainer, IT consultant.
I support Linux, UNIX, Windows, and more. Contact me to discuss your needs.
+1 (416) 992-3445 / www.jspiro.com






^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#1892: Please ship http://www.emacswiki.org/emacs/ErcBar included with ERC
  2009-01-13 16:09 bug#1892: Please ship http://www.emacswiki.org/emacs/ErcBar included with ERC jasonspiro
@ 2009-01-13 17:06 ` Antoine Levitt
  2015-12-27 22:40   ` Lars Ingebrigtsen
  0 siblings, 1 reply; 4+ messages in thread
From: Antoine Levitt @ 2009-01-13 17:06 UTC (permalink / raw)
  To: jasonspiro; +Cc: 1892

[-- Attachment #1: Type: text/plain, Size: 2679 bytes --]

Hi jason,
First of all, the version on emacswiki wasn't the latest. I just updated it
to the version I'm using.
I don't really care about copyright assignment, I'm willing to license it
with whatever you want. I just did that piece of code for my usage and
thought others might find it useful. I would of course love a piece of my
code to be included in Emacs. However, I don't think it should be included
in emacs, because its quality is not very good. Here are a few shortcomings
I noted :

- It uses a very crude heuristic to move back. Previously it was even
cruder, now it is (re-search-backward "^.*<.*>" nil t n), which means it
will screw up on /me and such, but will work on multi-line messages (eg if
you use wrapping). However, it might also not work on multilines messages
with <> in them. Maybe there are some erc internal functions I didn't see to
do that.

- The bar is placed as an overlay on text (underline or overline, currently
underline), which means it won't do well for instance in this case (admire
the superb ASCII artwork, to be viewed in monospace of course) :
<smeuuh> bla
------------
<smeuuh> blablablablablablablablablablabla
The ideal would be to put it full width, but I haven't found how to do that.

- There are some weird bugs when putting erc-bar-threshold to 0, and/or
putting overline instead of underline. I don't think those are my fault, but
I don't know how to fix them.

- It depends on erc-track

- It currently has to defadvice erc-track-mode, or chaos would ensue. I
remember seing somewhere advice were frowned upon in emacs code.

- I'm not a very experienced emacs coder, so some bugs may have slipped, and
the code may be inelegant.

If someone is willing to fix these issues though, it would be a nice
addition to an already great IRC client.
Antoine Levitt
2009/1/13 <jasonspiro@gmail.com>

> Hi smeuuh,
>
> I just asked[1] the ERC maintainers to include ErcBar[2] with ERC as a
> module enabled by default.
>
> A)  Just to verify:  the software license for ErcBar is the license
> stated at the bottom of the ErcBar webpage?
>
> B)  Do you know why copyright assignment is important?
>
> C)  I don't know if ErcBar requires copyright assignment.  If it does,
> are you willing to sign the form and mail it back to the Free Software
> Foundation?
>
> Please Reply to All.
>
> Thanks in advance,
> -Jason
>
> ^  [1].  http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=1892
> ^  [2].  http://www.emacswiki.org/emacs/ErcBar
> --
> Jason Spiro: software/web developer, packager, trainer, IT consultant.
> I support Linux, UNIX, Windows, and more. Contact me to discuss your needs.
> +1 (416) 992-3445 / www.jspiro.com
>

[-- Attachment #2: Type: text/html, Size: 3429 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#1892: Please ship http://www.emacswiki.org/emacs/ErcBar included with ERC
  2009-01-13 17:06 ` Antoine Levitt
@ 2015-12-27 22:40   ` Lars Ingebrigtsen
  0 siblings, 0 replies; 4+ messages in thread
From: Lars Ingebrigtsen @ 2015-12-27 22:40 UTC (permalink / raw)
  To: Antoine Levitt; +Cc: 1892, jasonspiro

"Antoine Levitt" <smeuuh@gmail.com> writes:

> First of all, the version on emacswiki wasn't the latest. I just updated it to the
> version I'm using.
> I don't really care about copyright assignment, I'm willing to license it with
> whatever you want. I just did that piece of code for my usage and thought
> others might find it useful. I would of course love a piece of my code to be
> included in Emacs. However, I don't think it should be included in emacs,
> because its quality is not very good. Here are a few shortcomings I noted :

Ok, I'm closing this wishlist bug report.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-12-27 22:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-01-13 16:09 bug#1892: Please ship http://www.emacswiki.org/emacs/ErcBar included with ERC jasonspiro
2009-01-13 17:06 ` Antoine Levitt
2015-12-27 22:40   ` Lars Ingebrigtsen
  -- strict thread matches above, loose matches on Subject: below --
2009-01-13 15:52 Jason A. Spiro

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).