Ralf Angeli | 1 Jul 2007 12:46
Face

Copyright clean-up

The release of GPLv3 is probably a good opportunity for looking at the
copyright situation in AUCTeX.  I'd like to start with cleaning up some
low-hanging fruits in the style directory.  So, I guess there are
copyright assignments from Mark Trettin and Reiner Steib?  If this is
the case I can change the copyright notices in file headers mentioning
them to mention the FSF instead.

There are quite some files authored by Carsten Dominik.  Have his papers
arrived in the meantime?

--

-- 
Ralf
David Kastrup | 1 Jul 2007 21:52
Picon
Picon

Re: Copyright clean-up

Ralf Angeli <angeli <at> caeruleus.net> writes:

> The release of GPLv3 is probably a good opportunity for looking at the
> copyright situation in AUCTeX.  I'd like to start with cleaning up some
> low-hanging fruits in the style directory.  So, I guess there are
> copyright assignments from Mark Trettin and Reiner Steib?

Yes.

> If this is the case I can change the copyright notices in file
> headers mentioning them to mention the FSF instead.

Please do so.

> There are quite some files authored by Carsten Dominik.  Have his papers
> arrived in the meantime?

No.  Carsten, any word on this?

--

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum
Ralf Angeli | 2 Jul 2007 22:39

Re: Copyright clean-up

* David Kastrup (2007-07-01) writes:

> Ralf Angeli <angeli <at> caeruleus.net> writes:
>
>> The release of GPLv3 is probably a good opportunity for looking at the
>> copyright situation in AUCTeX.  I'd like to start with cleaning up some
>> low-hanging fruits in the style directory.  So, I guess there are
>> copyright assignments from Mark Trettin and Reiner Steib?
>
> Yes.
>
>> If this is the case I can change the copyright notices in file
>> headers mentioning them to mention the FSF instead.
>
> Please do so.
>
>> There are quite some files authored by Carsten Dominik.  Have his papers
>> arrived in the meantime?
>
> No.  Carsten, any word on this?

CCed, since I am not sure if he is reading auctex-devel.

Also, I compiled a list of all problematic files from the style
directory:

+------------+------------+--------+----------------+--------------+
|File        |Coypright   |Licence |Author          |Remarks       |
|            |notice      |        |                |              |
+------------+------------+--------+----------------+--------------+
(Continue reading)

Ralf Angeli | 7 Jul 2007 17:27

Process filter and coding system (was: Re: debugging of multifile documents with TeX-next-error (2))

* David Kastrup (2007-07-05) writes:

> Ralf Angeli <angeli <at> caeruleus.net> writes:
>
>> * David Kastrup (2007-07-03) writes:
>>
>>> Ralf Angeli <angeli <at> caeruleus.net> writes:
>>>
>>>> Hm, but pasting together random stuff will not be trivial.
>>>
>>> Would be the job of the filter routine.
>>
>>> Given TeX's byte-centricity,
>>> it would have to be done even before decoding the byte stream into
>>> characters.
>>
>> Is the string passed to the filter function still a byte stream?
>
> set-process-coding-system is a built-in function in `src/process.c'.
> (set-process-coding-system PROCESS &optional DECODING ENCODING)
>
> Set coding systems of PROCESS to DECODING and ENCODING.
> DECODING will be used to decode subprocess output and ENCODING to
> encode subprocess input.
>
> [back]
>
> Setting DECODING to no-conversion will give byte streams to the filter
> function.  There is the problem of how to deal with incomplete
> characters in this case.
(Continue reading)

David Kastrup | 7 Jul 2007 17:50
Picon
Picon

Re: Process filter and coding system

Ralf Angeli <angeli <at> caeruleus.net> writes:

> * David Kastrup (2007-07-05) writes:
>
>> Ralf Angeli <angeli <at> caeruleus.net> writes:
>>
>>> * David Kastrup (2007-07-03) writes:
>>>
>>>> Ralf Angeli <angeli <at> caeruleus.net> writes:
>>>>
>>>>> Hm, but pasting together random stuff will not be trivial.
>>>>
>>>> Would be the job of the filter routine.
>>>
>>>> Given TeX's byte-centricity,
>>>> it would have to be done even before decoding the byte stream into
>>>> characters.
>>>
>>> Is the string passed to the filter function still a byte stream?
>>
>> set-process-coding-system is a built-in function in `src/process.c'.
>> (set-process-coding-system PROCESS &optional DECODING ENCODING)
>>
>> Set coding systems of PROCESS to DECODING and ENCODING.
>> DECODING will be used to decode subprocess output and ENCODING to
>> encode subprocess input.
>>
>> [back]
>>
>> Setting DECODING to no-conversion will give byte streams to the filter
(Continue reading)

Ralf Angeli | 7 Jul 2007 18:55

Re: Process filter and coding system

* David Kastrup (2007-07-07) writes:

> Ralf Angeli <angeli <at> caeruleus.net> writes:
>
>> How would the output finally be decoded?  By calling
>> `detect-coding-region' and then `decode-coding-region' on the whole
>> output buffer after process exit?
>
> Why detect the coding from the region?  I'd presume that the filter
> routine would keep track of the current file and errors (so that it
> could highlight them as they come and fold the less interesting stuff
> away), so it could usually take the coding from the file in question.

For now I only want to fix the bug related to the search for warnings,
so I am seeking a simple fix I can implement without too much effort.
Of course it should be as clean as possible within this constraint.
Simply yanking the linebreaks from the decoded output will likely do
for now.

--

-- 
Ralf
Holger Sparr | 9 Jul 2007 22:32
Picon

pstricks.el


Hi,

attached is an updated version of pstricks.el.

So please have a look. It would be nice if someone could do some testing
and report back.

I added some self parsing as described in the docs and added some
elements to an earlier defined list. Is it possible to save the list 
to the <currently-edited-tex-file>.el?

I have some additional style files for packages provided by pstricks or
contributions to pstricks (like pst-node, ... ) which I am going post
later on.

Bye,
Holger

Attachment (pstricks.el): application/emacs-lisp, 27 KiB

--

-- 
_______________________________________________
auctex-devel mailing list
auctex-devel <at> gnu.org
http://lists.gnu.org/mailman/listinfo/auctex-devel
(Continue reading)

Ralf Angeli | 10 Jul 2007 23:08
Face

Re: Process filter and coding system

* Ralf Angeli (2007-07-07) writes:

> For now I only want to fix the bug related to the search for warnings,

Okay, I checked in the fix.  Warnings are found now.  But at the price
of continuation lines.

--

-- 
Ralf
David Kastrup | 10 Jul 2007 23:18
Picon
Picon

Re: Re: Process filter and coding system

Ralf Angeli <angeli <at> caeruleus.net> writes:

> * Ralf Angeli (2007-07-07) writes:
>
>> For now I only want to fix the bug related to the search for warnings,
>
> Okay, I checked in the fix.  Warnings are found now.  But at the price
> of continuation lines.

And only if the warnings don't contain multibyte utf-8 characters...
But that's quite hard to fix.

--

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum
Ralf Angeli | 11 Jul 2007 19:17
Face

Re: pstricks.el

* Holger Sparr (2007-07-09) writes:

> attached is an updated version of pstricks.el.

Any news on the copyright situation for the file?

--

-- 
Ralf

Gmane