Re: Joining LyX development team

2016-06-24 Thread Josh Hieronymus
On Jun 25, 2016 1:09 AM, "Dima Ruinskiy" wrote: > > Richard Heck lyx.org> writes: > > > Is there something specific you'd like to work on? > > > Nothing specific, except maybe focus on Windows-specific issues. So far the > only thing I did was modify the CMake configuration a bit to make 2.2.0 wo

Re: Update on situation for 2.2.0 release

2016-05-08 Thread Josh Hieronymus
Looking over the code, it looks like much of the problem is that Python 2 has print as a statement, while Python 3 has print as a function. Since we're supporting only Python 2.7 from the 2.x series, we could add an import statement to use print as a function in order to avoid checking the version

Re: Update on situation for 2.2.0 release

2016-05-04 Thread Josh Hieronymus
With respect to issue #3, what versions of Python are we looking to support? On May 4, 2016 3:40 PM, "Scott Kostyshak" wrote: > Dear all, > > As new issues have popping up (and will without doubt continue to keep > popping > up), I want to give an update of how close I think we are to the next st

Re: Plans for python support on lyx-2.2

2014-05-05 Thread Josh Hieronymus
On Apr 24, 2014 5:13 PM, "Josh Hieronymus" wrote: > > if we're only concerned with supporting Python 2.7 and up, we could include the statement "from __future__ import print_function" in any file in which we use the print function I misremembered this before, but

Re: Plans for python support on lyx-2.2

2014-04-24 Thread Josh Hieronymus
On Apr 22, 2014 10:55 AM, "Benjamin Piwowarski" wrote: > > There is not much to do for python 3 compatibility, but still… I attached the patch this time. > > Benjamin I have one comment and one question regarding this patch. The comment: if we're only concerned with supporting Python 2.7 and up,

Re: Plans for python support on lyx-2.2

2014-04-22 Thread Josh Hieronymus
On Apr 22, 2014 3:15 AM, "Guenter Milde" wrote: > > On 2014-04-22, Pavel Sanda wrote: > > José Matos wrote: > > >> Before proceeding with the changes we should add tests to guarantee > >> that the code works as intended on both versions. > > >> I do not intend to work on this until the end of the

Moving forward with XHTML and EPUB export work

2013-10-17 Thread Josh Hieronymus
Hi all, I'm hoping to devote some time soon to working some more on XHTML and EPUB exporting, and here are a few questions I came up with while thinking about how to proceed: 1. Breaking an XHTML file into smaller files can lead to better performance in an EPUB document. I think I can modify the E

Re: [LyX GSoC/epub/master] Parse XHTML for EPUB metadata.

2013-09-15 Thread Josh Hieronymus
On Sat, Sep 14, 2013 at 6:41 PM, Pavel Sanda wrote: > Josh Hieronymus wrote: > > > Josh, what is your stance towards sharing some of these fields with the > > > current PDF metadata we use in document preferences? > > > > > > Pavel > > > > I th

Re: [LyX GSoC/epub/master] Parse XHTML for EPUB metadata.

2013-09-14 Thread Josh Hieronymus
On Fri, Sep 13, 2013 at 7:31 PM, Pavel Sanda wrote: > Josh Hieronymus wrote: > > The branch, epub/master, has been updated. > > > > - Log - > > > > commit e173486ac219a3f8ebdab13cbcd725f09de

Re: request for comments on EPUB exporting

2013-09-01 Thread Josh Hieronymus
> > In my opinion, language should be taken from the document settings > since it is already a setting. I think for other fields such as author > this should be taken from an inset defined by the module/layout. But > this might be because I don't know anything about EPUB. Can I export > any documen

request for comments on EPUB exporting

2013-08-30 Thread Josh Hieronymus
Hi everyone, I'm working on exporting LyX documents to EPUB as part of my Google Summer of Code project, and I'd like to invite you to try out my current implementation, which can be found in the "epub/master" branch of the gsoc repository (g...@git.lyx.org:gsoc.git). The export process begins by

Re: [LyX GSoC/xhtml/new_features/assets-separate-directory] Unmangle image filenames for XHTML export

2013-07-31 Thread Josh Hieronymus
On Jul 31, 2013 1:18 PM, "Pavel Sanda" wrote: > > Josh Hieronymus wrote: > > I've only tried it for a few simple cases, but I'll test it on some harder > > cases now. I'll try files with spaces and underscores in them; do you have > > any suggest

Re: [LyX GSoC/xhtml/new_features/assets-separate-directory] Unmangle image filenames for XHTML export

2013-07-31 Thread Josh Hieronymus
On Wed, Jul 31, 2013 at 1:14 AM, Pavel Sanda wrote: > Josh Hieronymus wrote: > > commit 00b24a8984756bdc5dcd8e2b16952c86fecdf6c9 > > Author: Josh Hieronymus > > Date: Tue Jul 30 18:39:35 2013 -0400 > > > > Unmangle image filenames for XHTML export > &

two design questions

2013-07-27 Thread Josh Hieronymus
Hi everyone, I'm coming up against two design decisions, and I thought I'd ask the list to see what others think about them. First, I'm in the process of implementing an option to save the CSS and image files generated during XHTML export to separate styles/ and images/ subdirectories. Currently,

difficulty getting variable value to reflect whether checkbox is checked/unchecked

2013-07-26 Thread Josh Hieronymus
I'm trying to figure out how to add an option to write CSS generated during XHTML export to a separate directory, but I'm running into some difficulties. I've pushed my attempt to a new branch in the GSoC repo as seen here: http://git.lyx.org/?p=gsoc.git;a=shortlog;h=refs/heads/xhtml/new_features/c

Re: questions about using Doxygen and Python scripting

2013-07-21 Thread Josh Hieronymus
On Sun, Jul 21, 2013 at 10:19 PM, Pavel Sanda wrote: > Josh Hieronymus wrote: > > Since an ePub file is pretty much a zipped file with XHTML and a few > simple > > files, I was thinking that it might be easiest to use Python to create > > them. > > If it comes to p

Re: questions about using Doxygen and Python scripting

2013-07-21 Thread Josh Hieronymus
On Sun, Jul 21, 2013 at 8:58 PM, Pavel Sanda wrote: > Josh Hieronymus wrote: > > I have two questions for everyone. First, is there a simple command to > use > > Doxygen to produce HTML documenting all of (or most of, or at least much > > of) LyX? I think it would reall

questions about using Doxygen and Python scripting

2013-07-21 Thread Josh Hieronymus
Hi everyone, I have two questions for everyone. First, is there a simple command to use Doxygen to produce HTML documenting all of (or most of, or at least much of) LyX? I think it would really help me have an easier time knowing how the different parts of code are all related. Second, is there a

licensing my contributions to LyX

2013-07-19 Thread Josh Hieronymus
I hereby grant permission to license my contributions to LyX under the GNU General Public License, version 2 or later. - Josh Hieronymus

Re: [LyX GSoC/xhtml/bugs/8280] Render multicharacter delims properly to MathML and XHTML (Fix bug #8280)

2013-07-08 Thread Josh Hieronymus
ld it make more sense just to make a new file and include that in both InsetMathDelim and InsetMathBig? On Fri, Jun 7, 2013 at 8:03 AM, Richard Heck wrote: > On 06/07/2013 12:33 AM, Josh Hieronymus wrote: > >> The branch, xhtml/bugs/8280, ha

Re: Google Summer of Code: XHTML and ePub

2013-05-28 Thread Josh Hieronymus
On Tue, May 28, 2013 at 12:20 PM, Julien Rioux wrote: > On Tue, May 28, 2013 at 9:53 AM, Richard Heck wrote: > >> >> Hi, also, from me, Josh, >> >> We have had some previous communication, but let me welcome you >> officially to LyX's very first year of participation in GSoC. We're excited >> to

[GSoC 2013] submitted proposal for "Improved XHTML Export and ePub Support" project

2013-05-02 Thread Josh Hieronymus
Hi all, I've now submitted my proposal for the "Improved XHTML Export and ePub Support" project, and I'd love to hear any feedback. Thanks! - Josh

[GSOC 2013] Introducing myself

2013-04-22 Thread Josh Hieronymus
Hi everyone, My name is Josh Hieronymus, and I'm interested in contributing to LyX as a part of this year's Google Summer of Code. In keeping with the application guidelines, I thought I'd quickly introduce myself to the list. I'm a graduate student in Computer Science and P