Git Product home page Git Product logo

pageedit's Introduction

PageEdit

An ePub visual XHTML editor based on Sigil's Deprecated BookView. It uses WebEngine instead of WebKit.

This app is working and fundamentally complete.

It prefers Qt 5.12.6 or later.

To build after cloning the repo

You will need cmake version 3.0 to build:

Make sure the qt tools and libraries from Qt 5.12.6 are in your path
export PATH=~/QT512/bin:${PATH}

You build in a separate directory and not in the source directory.

After checking out the PageEdit github repo into a PageEdit directory

Building on macOS:

export MACOSX_DEPLOYMENT_TARGET=10.12
export MYQTHOME=~/Qt512
export PATH=${PATH}:${MYQTHOME}/bin
mkdir build
cd build
cmake -DCMAKE_OSX_DEPLOYMENT_TARGET=10.12 -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS=-Wno-inconsistent-missing-override \
-DCMAKE_PREFIX_PATH=${MYQTHOME}/lib/cmake \
-DCMAKE_OSX_SYSROOT=/Applications/Xcode.app/Contents/Developer/Platforms/\
MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/ ../PageEdit
make
make addframeworks
cd bin
open -a /FULL_PATH_TO_THIS_DIRECTORY/PageEdit.app /FULL_PATH_TO_AN_XHTML_FILE_IN_AN_UNZIPPED_EPUB/FILENAME.xhtml
or simply drag and drop an xhtml file from an unzipped epub onto the PageEdit.app
``
or edit a set of XHtml files in epub Spine Order by loading the ePub's OPF file

On Linux

Make sure a minimum of Qt5.9.4(ish) is installed (with the WebEngine package) as well as cmake.
You build in a separate directory and not in the source directory.

Qt5.11+ is probably a more realistic minimum to be able enjoy all of PageEdit's features.

Get the PageEdit Source:

git clone https://github.com/sigil-ebook/PageEdit.git
(or download/extract the gzipped tarball from a PageEdit Release)
cd PageEdit

Ubuntu

sudo apt-get install build-essential
sudo apt-get install cmake
sudo apt-get install qtwebengine5-dev qttools5-dev qttools5-dev-tools

mkdir build
cd build
cmake "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ../<path/to/PageEdit/source>
make

Arch Linux

sudo pacman -S cmake qt5-webengine qt5-tools

mkdir build
cd build
cmake "Unix Makefiles" -DINSTALL_BUNDLED_DICTS=0 -DCMAKE_BUILD_TYPE=Release ../<path/to/PageEdit/source>
make

All Flavors:

To test cd bin
./pageedit /FULL_PATH_TO_AN_XHTML_FILE_IN_AN_UNZIPPED_EPUB/FILENAME.xhtml

make install (defaults to the /usr/local prefix, so use sudo if required).

NOTE: certain features, like Inspector, will require a minimum of Qt5.11.x to function on Linux.

By default, bundled hunspell dictionaries are converted to webengine spell check dictionaries (with qt tools) and installed to the QT_INSTALL_DATA/qtwebengine_dictionaries location. This location can be found using the qmake binary (of the Qt you're building PageEdit with) with the following command -qmake -query QT_INSTALL_DATA . If using the system Qt, this will typically be /usr/share/qt/qtwebengine_dictionaries. To disable the conversion/installation of these bundled dictionaries, use -DNSTALL_BUNDLED_DICTS=0 when configuring PageEdit with cmake. Arch Linux already includes these dictionaries with the corresponding hunspell language dictionaries. So you'll want to skip their conversion/installation on Arch and make sure you have the correct hunspell languages installed instead.

On Windows:

Make sure a minimum of Qt5.12.3 (with the WebEngine component) and Visual Studio 2017 are installed. Install the x64 version of Qt5.12.3 for VS2017. Install cmake 3.0+ and make sure its bin directory is added to your path.

Make sure that Qt's bin directory is also added to your PATH. Take note of the path for your Qt's prefix (the directory right above the bin directory). Open an "x64 Native Tools Command Prompt for VS2017" from the Start menu and cd to wherever you want to build.

mkdir build
cd build
cmake -G "NMake Makefiles" -DQt5_DIR="C:\path\to\your\Qt5\prefix\lib\cmake\Qt5 -DCMAKE_BUILD_TYPE=Release "C:\path\to\PageEdit's\cloned\repository"
nmake

To test: cd bin
PageEdit.exe \FULL_PATH_TO_AN_XHTML_FILE_IN_AN_UNZIPPED_EPUB\FILENAME.xhtml

Use nmake deploy to package PageEdit and all of its dependencies into a zip archive (in a newly created 'deploy' folder in the build folder)

Use nmake deployinstaller to package PageEdit and all of its dependencies into an Inno Setup installer (must have InnoSetup installed and on the PATH for is to work).

NOTE: if you configure PageEdit with the -DDEPLOY_SFX=1 cmake option before compiling, 'nmake deploy` will attempt to create a 7-Zip self-extracting archive. So naturally, make sure 7-Zip is installed before trying to use it.

NOTE: as of this writing, the Official PageEdit release are built using Qt5.12.6

For Github repository maintainers (who am I kidding, this is to keep myself from forgetting/messing up):

The upstream sigil-gumbo repository is included in PageEdit's repository (this one) as a subtree in the gumbo_subtree prefix. To pull in upstream sigil-gumbo changes (or even to safely check if there are any), use the following command in the root of your local clone of the PageEdit repo:

git subtree pull --prefix gumbo_subtree https://github.com/Sigil-Ebook/sigil-gumbo.git master --squash

--squash because we don't need sigil-gumbo's entire history in the PageEdit repository. Push the changes to github master (with a commit message like "merge in upstream sigil-gumbo changes") if there are any.

You can also create a remote for the upstream sigil-gumbo repo to simply the subtree pull command a bit -- BUT YOU MUST REMEMBER TO USE THE --no-tags OPTION WHEN CREATING THE REMOTE. Otherwise the --squash option may not suppress all upstream history when using the remote name. A careless git fetch --all could make a dog's lunch of your repo history with a very taggy remote (which sigil-gumbo is decidedly not):

git remote add --no-tags sigil-gumbo https://github.com/Sigil-Ebook/sigil-gumbo.git

After that, pulling in any upstream sigil-gumbo changes becomes:

git subtree pull --prefix gumbo_subtree sigil-gumbo master --squash

Probably safer in the long run to create a git alias specific to the PageEdit repository (without a remote added) using the full subtree pull command if you need a shortcut. From within the PageEdit repo:

git config alias.gumbo-sub-pull 'subtree pull --prefix gumbo_subtree https://github.com/Sigil-Ebook/sigil-gumbo.git master --squash'

Use any alias name you like. I chose "gumbo-sub-pull" Then it's simply a matter of using git gumbo-sub-pull in the root of the PageEdit repository.

pageedit's People

Contributors

beckydtp avatar dougmassay avatar eli-schwartz avatar kevinhendricks avatar pinotree avatar

Watchers

 avatar  avatar  avatar

Forkers

data-man

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.