You are not logged in.

#1 2004-03-13 01:05:27

beniro
Member
From: St. Petersburg, FL, USA
Registered: 2002-12-31
Posts: 313

Nvu ... nvu.com WYSIWYG HTML editor

I know its only v0.17, but ...Is this anywhere?  I need this package and cant get it to work with my meager knowledge of ABS.

Is anyone willing to get this one?

Offline

#2 2004-03-13 14:38:12

zeppelin
Member
From: Athens, Greece
Registered: 2004-03-05
Posts: 807
Website

Re: Nvu ... nvu.com WYSIWYG HTML editor

if you 're very in a hurry try peacock [there is already a package] tongue

cause as the nvu site states:

If your distribution is  built with GCC 3.3 this version may not work for you.  If it does, please let us know.

so with 3.3 it is not expected to compile.. tongue
so be patient again, until they get it to work [I'll try though]

Offline

#3 2004-03-14 01:43:40

beniro
Member
From: St. Petersburg, FL, USA
Registered: 2002-12-31
Posts: 313

Re: Nvu ... nvu.com WYSIWYG HTML editor

I see...Peacock?  I've never heard of it...I'll check it out, though...  Thanks!

Offline

#4 2004-03-14 10:35:12

zeppelin
Member
From: Athens, Greece
Registered: 2004-03-05
Posts: 807
Website

Re: Nvu ... nvu.com WYSIWYG HTML editor

beniro wrote:

I see...Peacock?  I've never heard of it...I'll check it out, though...  Thanks!

well but don't open a page that you have written already, because peacock is not ready yet, and will simplify your page's html code.
if I were you, I would try quanta (qt) or screem (gtk) or bluefish(gtk) [these are not WYSIWYG editors but help very much] and would also work on the same time with peacock and/or mozilla composer

Offline

#5 2004-03-14 20:07:34

kritoke
Member
From: Texas, USA
Registered: 2003-08-01
Posts: 211
Website

Re: Nvu ... nvu.com WYSIWYG HTML editor

The new quanta does do WYSIWYG.

Kritoke


http://counter.li.org/ Registered Linux User #318963 kritoke@jabber.org

Offline

#6 2004-03-17 03:52:48

beniro
Member
From: St. Petersburg, FL, USA
Registered: 2002-12-31
Posts: 313

Re: Nvu ... nvu.com WYSIWYG HTML editor

I tried peacock...and quickly moved on.  I mostly use the wysiwy to simplify formatting, etc. but peacock didn't make it easier...I'm installing quanta right now, though.  And bluefish, which I had completely forgotten about.  Very useful...  smile  Thanks!

Offline

#7 2004-04-07 19:27:38

kritoke
Member
From: Texas, USA
Registered: 2003-08-01
Posts: 211
Website

Re: Nvu ... nvu.com WYSIWYG HTML editor

Newsforge has a first look at Nvu, actually a comparison to frontpage, it sounds like it still needs work, but ought to be interesting checking out in the future.

http://www.newsforge.com/article.pl?sid … 29/1416240

Kritoke


http://counter.li.org/ Registered Linux User #318963 kritoke@jabber.org

Offline

#8 2004-08-04 10:54:22

dpb
Member
From: Cyperspace?
Registered: 2004-04-11
Posts: 231

Re: Nvu ... nvu.com WYSIWYG HTML editor

Here you go. The PKGBUILD for Nvu 0.3.

# Contributor: dpb <dpb[at]backarrow.org>
pkgname=nvu
pkgver=0.3
pkgrel=1
pkgdesc="A complete Web Authoring System for Linux Desktop users as well as Microsoft Windows users to rival programs like  FrontPage and Dreamweaver."
depends=('gtk2' 'libidl2' 'gcc')
makedepends=('zip')
url=('http://www.nvu.com/')
source=(http://ftp.mozilla.org/pub/mozilla.org/mozilla/releases/mozilla1.7/src/mozilla-source-1.7.tar.bz2 
        mozconfig 
        http://www.nvu.com/download/nvu-0.30-source.tar.gz 
        http://www.nvu.com/download/trunk-0.30.patch.gz)

md5sums=('5b4494934c4ffaee83bc79a8b181a8c3' 
         'dc93638940139eff4113f8a32b76de7a' 
         'b147be3d440085cc6f11ff51b5105519' 
         '11a2b34a781856ba57484c90f13e4859')

build() {
        cd $startdir/src/mozilla
        sed "s@#CFLAGS#@$CFLAGS@g" $startdir/src/mozconfig >.mozconfig

        rm -rf composer

        mv $startdir/src/composer .

        patch -p 0 < $startdir/src/trunk-0.30.patch

        make -f client.mk build || return 1
        mkdir -p $startdir/pkg/usr/bin $startdir/pkg/opt/nvu
        make DESTDIR=$startdir/pkg install

        ln -s /opt/nvu/bin/nvu $startdir/pkg/usr/bin/
}

And the 'mozconfig' file. Save it in the same directory as the PKGBUILD.

export MOZILLA_OFFICIAL=1
export BUILD_OFFICIAL=1
export MOZ_STANDALONE_COMPOSER=1
mk_add_options MOZ_STANDALONE_COMPOSER=1

ac_add_options --enable-optimize="#CFLAGS#"
ac_add_options --disable-debug
ac_add_options --prefix=/opt/nvu
ac_add_options  --disable-svg
ac_add_options  --without-system-mng
ac_add_options  --without-system-png
ac_add_options  --disable-ldap
ac_add_options  --disable-mailnews
ac_add_options  --disable-installer
ac_add_options  --disable-activex
ac_add_options  --disable-activex-scripting
ac_add_options  --disable-tests
ac_add_options  --disable-oji
ac_add_options  --disable-necko-disk-cache
ac_add_options  --disable-profilesharing
ac_add_options  --enable-extensions=wallet,spellcheck,xmlextras,pref,universalchardet,editor/cascades
ac_add_options  --enable-image-decoders=png,gif,jpeg
ac_add_options  --enable-necko-protocols=http,ftp,file,jar,viewsource,res,data
ac_add_options  --disable-pedantic
ac_add_options  --disable-short-wchar
ac_add_options  --enable-xprint
ac_add_options  --enable-strip-libs
ac_add_options  --enable-crypto
ac_add_options  --disable-mathml
ac_add_options  --with-system-zlib
ac_add_options  --enable-freetype2
ac_add_options  --enable-toolkit=gtk2
ac_add_options  --enable-default-toolkit=gtk2
ac_add_options  --enable-xft

They're edited from the mozilla 1.7 PKGBUILD. Have fun.  big_smile

Offline

#9 2004-11-23 18:21:15

Cotton
Member
From: Cornwall, UK
Registered: 2004-09-17
Posts: 568

Re: Nvu ... nvu.com WYSIWYG HTML editor

Any chance someone could update this for version 0.5

Offline

#10 2004-11-23 20:07:16

z4ziggy
Member
From: Israel
Registered: 2004-03-29
Posts: 573
Website

Re: Nvu ... nvu.com WYSIWYG HTML editor

i've tried nvu sometime ago, but couldnt get quite the results i wanted. then i started using quanta, and never looked back... excellent html ide with lots of usefull functions (wysiwyg ofcourse), u should be fine.

Offline

#11 2004-11-23 22:09:49

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: Nvu ... nvu.com WYSIWYG HTML editor

i use vim... or nano if i'm feeling lazy

Offline

#12 2004-11-23 22:23:40

celeron2002
Member
From: Santiago, Chile.
Registered: 2004-02-18
Posts: 150

Re: Nvu ... nvu.com WYSIWYG HTML editor

joe has declarative with colors for html, php etc... wink, however i use bluefish  smile


irc.bsd.cl #linux
irc.freenode.org #archlinux-es

Offline

#13 2004-12-05 17:41:15

TobyR
Member
From: Cambridge, UK
Registered: 2004-08-14
Posts: 25

Re: Nvu ... nvu.com WYSIWYG HTML editor

[OOPS, THIS SHOULD BE IN THREAD 'AMAYA, SCREEM AND WEB AUTHORING APPS - MODERATOR PLEASE MOVE? THANKS!]

Well, thanks to Phracture's PKGBUILD for 'nvu' I've now got nvu up and running.  This was the first time I've built a package frome source and installed it with pacman.  I don't think I quite got it right because during  the make process it first failed because it it couldn't find /home/glazman/nvu-0.50/
I made the directory,  'makepkg' worked and then I used pacman to install nvu (from the tarball in /var/abs/loca/nvu).  However, runnig 'nvu' didn't work becasue  the link put in /usr/bin/ for nvu was pointing to some file /var/abs/local/pkg/opt/nvu/bin/nvu which didn't exist.
So I hunted around and foud a working executable in /home/glazman/nvu-0.50/dist/bin

Any thoughts?  I guess for now I can just edit the link in /usr/bin to point to where I found the working binary?


---------------------------
Arch Linux 0.6
Pentium II 266MHz
160MB SDRAM

Offline

Board footer

Powered by FluxBB