You are not logged in.

#176 2011-10-07 00:38:20

mhertz
Member
From: Denmark
Registered: 2010-06-19
Posts: 681

Re: jumanji - a web browser

Thanks alot for your prompt reply, mate!

Yes, I will for sure check out the develop branch then...

About dwb, then sorry for bad wording on my part, and I just meant that jumanji was imho functioning a bit on the strange side with regards to this, compared to other browsers, e.g. dwb...

Again, much appreciated; thanks again!

Offline

#177 2011-10-07 06:14:58

mlq
Member
Registered: 2011-03-15
Posts: 171
Website

Re: jumanji - a web browser

Hello,

mhertz wrote:

Yes, I will for sure check out the develop branch then...

OK, you might want to take a look at Installation. There are some other features already implemented like quickmarks or ad blocking, but those haven't been documented yet.

mhertz wrote:

About dwb, then sorry for bad wording on my part, and I just meant that jumanji was imho functioning a bit on the strange side with regards to this, compared to other browsers, e.g. dwb...

Don't be. I just haven't seen the link.

Best regards

Last edited by mlq (2011-10-07 06:19:36)

Offline

#178 2011-10-08 00:46:25

mhertz
Member
From: Denmark
Registered: 2010-06-19
Posts: 681

Re: jumanji - a web browser

Thanks again mate, and nice doumentation section you guys have made there!

I have made a pkgbuild of jumanji-develop-git which I use myself, but i'm not comfortable by sending it to the aur myself, but if anyone else would want that, then by all means do that...

It's just mlq's original pkgbuild for jumanji-git, with added develop branch to the clone command, and overhauled the deps after the readme and also the conflicts line...

# Maintainer: mlq <mlq@pwmt.org>

pkgname=jumanji-develop-git
pkgver=20111008
pkgrel=1
pkgdesc="a web browser"
arch=('i686' 'x86_64')
url="http://pwmt.org/projects/jumanji"
license=('custom')
depends=('gtk3>=3.0.11' 'libwebkit3>=1.4.1' 'libsoup>=2.22.4' 'girara-gtk3-git')
makedepends=('git')

conflicts=('jumanji' 'jumanji-git' 'jumanji-new_webgtk-git')
provides=('jumanji')

_gitroot='git://pwmt.org/jumanji.git'
_gitname='jumanji'
_branchname="-b develop"

build() {
  cd "$srcdir"
  msg "Connecting to GIT server...."

  if [ -d $_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
  else
    git clone $_gitroot $_gitname $_branchname
  fi

  msg "GIT checkout done or server timeout"
  msg "Starting make..."

  rm -rf "$srcdir/$_gitname-build"
  git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
  cd "$srcdir/$_gitname-build"

  make

  make DESTDIR="$pkgdir/" install
  install -D -m664 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

I haven't encountered any problems with this branch and it feels perfectly stable to me, so again many thanks to the pwmt crew for their nice work and continued dedication and efforts! smile

Last edited by mhertz (2011-10-08 00:53:31)

Offline

#179 2011-10-29 16:13:53

kyla
Member
From: Arlington, VA
Registered: 2011-03-12
Posts: 112
Website

Re: jumanji - a web browser

Something in the most recent update to jumanji-git in the AUR stopped it from opening for me. When I try to launch it I just get:

error: could not parse user script: /home/kyla/.config/jumanji/scripts/hints.js
error: Could not open configuration file '/etc/jumanjirc'
error: Could not initialize database
error: coult not initialize jumanji

Any ideas?

Offline

#180 2011-10-29 16:20:40

mlq
Member
Registered: 2011-03-15
Posts: 171
Website

Re: jumanji - a web browser

Hello,

kyla wrote:

Any ideas?

Okay, this is a bit odd, since the newer version should work with old bookmarks/history files. Can you try to backup them and removing them and check if that works? Maybe you can join the IRC channel some time, so that we can track this error down.

Best regards

Offline

#181 2011-10-29 17:19:48

kyla
Member
From: Arlington, VA
Registered: 2011-03-12
Posts: 112
Website

Re: jumanji - a web browser

Hmm, for some reason the issue seems to have been caused by the fact that I had linked cookies to /dev/null to create session cookies. With that removed jumanji opens and runs fine. Did something change with jumanjirc though? Jumanji seems to be completely ignoring the file

Offline

#182 2011-10-29 17:24:24

mlq
Member
Registered: 2011-03-15
Posts: 171
Website

Re: jumanji - a web browser

Hello,

kyla wrote:

Hmm, for some reason the issue seems to have been caused by the fact that I had linked cookies to /dev/null to create session cookies. With that removed jumanji opens and runs fine. Did something change with jumanjirc though? Jumanji seems to be completely ignoring the file

Okay, good to know. Yes, some parts have changed in the jumanjirc file - You should find the necessary information on http://doc.pwmt.org.

Best regards

Offline

#183 2011-10-29 21:54:47

skottish
Forum Fellow
From: Here
Registered: 2006-06-16
Posts: 7,942

Re: jumanji - a web browser

kyla wrote:

Something in the most recent update to jumanji-git in the AUR stopped it from opening for me. When I try to launch it I just get:

error: could not parse user script: /home/kyla/.config/jumanji/scripts/hints.js
error: Could not open configuration file '/etc/jumanjirc'
error: Could not initialize database
error: coult not initialize jumanji

Any ideas?

Hi kyla,

I am and have been using /dev/null for cookies for a long time and have never seen your error. In fact, I just rebuilt jumanji from git to see if I could reproduce your error and I can't. I'm curious, where does /etc/jumanjirc come from? Maybe what you're seeing is a permission error?

Last edited by skottish (2011-10-29 21:55:17)

Offline

#184 2011-10-29 22:05:28

mlq
Member
Registered: 2011-03-15
Posts: 171
Website

Re: jumanji - a web browser

Hello,

I could and it should be fixed now. Just pull the latest changes.

Best regards

Offline

#185 2011-10-29 22:34:34

ntness
Member
From: The World
Registered: 2009-12-29
Posts: 97

Re: jumanji - a web browser

Having WolframAlpha open when closing a session breaks keyboard acceleration on session restore.

Update: Manually clicking a link on session restore repairs keyboard acceleration.

Last edited by ntness (2011-10-29 22:46:28)


transcend to the fifth abode

Offline

#186 2011-10-30 03:34:58

mhertz
Member
From: Denmark
Registered: 2010-06-19
Posts: 681

Re: jumanji - a web browser

I have previously just used the master branch version, but now with the newly installed develop branch, then it simply frezzes upon loading(I used the jumanji-git pkgbuild on aur, which I see has changed to now use the develop branch).

It shows it's gui and with a white screen and that's it, with no responce to keystrokes, and I need to kill it from htop.

I can see in the output that it also complains about /etc/jumanjirc, just like the previous poster reported, and in everything.log I get a message about dwm segfaulting in libx11...

Edit: Hmm, I uninstalled it and then reinstalled it, and then rebooted before loading it, and now it works fine, so all is good, and sorry for wrong report...

Edit2: It still though complains about not being able to load /etc/jumanjirc, and there isn't one there either, nor being generated at boot...

Also, I have my startpage as google.com/ig, so I can have a google startpage with added new mail notifications from gmail, but when I try to log in there, then google states that I have cookies disabled in my browser and so it will not let me login and so I cannot use it to get new mail notifications unfortunetly? However, the cookies must be working, because after closing and restarting jumanji, then the arch forum still "remebers" me...

Last edited by mhertz (2011-10-30 03:58:20)

Offline

#187 2011-10-30 08:05:57

mlq
Member
Registered: 2011-03-15
Posts: 171
Website

Re: jumanji - a web browser

Hello,

You can simply ignore the /etc/jumanjirc message.

I will check on the google issue.

Best regards

Offline

#188 2011-10-30 13:07:12

mlq
Member
Registered: 2011-03-15
Posts: 171
Website

Re: jumanji - a web browser

Hello,

mhertz wrote:

Also, I have my startpage as google.com/ig, so I can have a google startpage with added new mail notifications from gmail, but when I try to log in there, then google states that I have cookies disabled in my browser and so it will not let me login and so I cannot use it to get new mail notifications unfortunetly? However, the cookies must be working, because after closing and restarting jumanji, then the arch forum still "remebers" me...

Please pull the latest changes and try again, but I suggest to delete your cookies file first. Please let me know if it works for you.

Best regards

Offline

#189 2011-10-30 17:02:10

mhertz
Member
From: Denmark
Registered: 2010-06-19
Posts: 681

Re: jumanji - a web browser

Thanks for your help again, mate!

I've just now reinstalled jumanji-git from aur(i.e. develop branch), so as to get the new change, and I have also deleted the old cookies file additionally.

Now it does let me login to my account(thanks!), but unfortunetly, then there still is an issue which the master branch dosen't have, and that's whenever closing jumanji and starting it again, then I loose that google login, and google states that i've been loged out of my account and if I want to login again, and so I need to do that upon each time I start jumanji...

If that could possible be fixed in some way, then I would really appreciate it...

Edit: I've found another issue, which is that even though I have setup searchengines in jumanjirc, then when pressing 'o' and entering a search phrase, then nothing happens, and I have to press 'o' and then 'ggl' and then the searchphrase(and where ggl is the keyword i've choosen for the first searchengine i.e. google)...

Edit2: Btw, i've just checked the gtk3/libwebkit3 edition of dwb, and it also logs me out of google's igoogle page upon restarting the browser...

Last edited by mhertz (2011-10-30 22:54:24)

Offline

#190 2011-10-31 10:23:16

mlq
Member
Registered: 2011-03-15
Posts: 171
Website

Re: jumanji - a web browser

Hello,

mhertz wrote:

If that could possible be fixed in some way, then I would really appreciate it... [...] Edit2: Btw, i've just checked the gtk3/libwebkit3 edition of dwb, and it also logs me out of google's igoogle page upon restarting the browser...

We will look into this.

mhertz wrote:

Edit: I've found another issue, which is that even though I have setup searchengines in jumanjirc, then when pressing 'o' and entering a search phrase, then nothing happens, and I have to press 'o' and then 'ggl' and then the searchphrase(and where ggl is the keyword i've choosen for the first searchengine i.e. google)...

Should be fixed now.

Best regards

Offline

#191 2011-10-31 11:22:53

portix
Member
Registered: 2009-01-13
Posts: 757

Re: jumanji - a web browser

mhertz wrote:

Edit2: Btw, i've just checked the gtk3/libwebkit3 edition of dwb, and it also logs me out of google's igoogle page upon restarting the browser...

It doesn't log you out if you allow cookies from google, the default behaviour is that only session cookies are allowed.

Offline

#192 2011-10-31 14:09:34

mhertz
Member
From: Denmark
Registered: 2010-06-19
Posts: 681

Re: jumanji - a web browser

@mlq

Thank alot, mate! Much appreciated...

@portix

Sorry, I forgot to state that I had enabled cookies fully, before testing it...

Last edited by mhertz (2011-10-31 14:13:02)

Offline

#193 2011-11-06 19:50:39

docker
Member
Registered: 2010-10-29
Posts: 13

Re: jumanji - a web browser

Today I've upgraded my browser.

When I start it I get this message:

error: Could not open configuration file '/etc/jumanjirc'
WARNING: no socket to connect to

My history, bookmark and config data completely ignored, without further error messages. Should I use a new jumanjirc for this version?

Offline

#194 2011-11-07 11:41:08

docker
Member
Registered: 2010-10-29
Posts: 13

Re: jumanji - a web browser

Thanks for mlq the fast help.

I've got a corrupted jumanjirc, so It changed completely.
The history file has been deleted. (caused performance problems)

The two error message should be ignored. (The "WARNING: no socket to connect to" message doesn't belong to jumanji)

Last edited by docker (2011-11-14 19:30:17)

Offline

#195 2011-11-07 18:50:21

Tarffull
Member
Registered: 2011-11-07
Posts: 6

Re: jumanji - a web browser

Hi! I've just pulled the last version of jumanji-git and I'm having trouble configuring it. None of changes in config.c seems to take effect. What have I missed?

Offline

#196 2011-11-07 18:53:38

mlq
Member
Registered: 2011-03-15
Posts: 171
Website

Re: jumanji - a web browser

Hello,

Tarffull wrote:

Hi! I've just pulled the last version of jumanji-git and I'm having trouble configuring it. None of changes in config.c seems to take effect. What have I missed?

What have you modified? Please give more details.

Best regards

Offline

#197 2011-11-07 18:56:15

Tarffull
Member
Registered: 2011-11-07
Posts: 6

Re: jumanji - a web browser

I've modified some keybindings, i.e. I use CTRL + t to open tabs, I also changed the homepage to google. None of these had any effect.

EDIT: I changed the config.c back to it's original state and just changed

  string_value = "http://pwmt.org";
  girara_setting_add(gsession, "homepage",                    string_value, STRING,false, "Home page",                   NULL, NULL);

to

  string_value = "http://archlinux.org";
  girara_setting_add(gsession, "homepage",                    string_value, STRING,false, "Home page",                   NULL, NULL);

It just loads pwmt.org anyways.

Last edited by Tarffull (2011-11-07 19:00:32)

Offline

#198 2011-11-07 19:19:59

mlq
Member
Registered: 2011-03-15
Posts: 171
Website

Re: jumanji - a web browser

Hello,

Tarffull wrote:

I've modified some keybindings, i.e. I use CTRL + t to open tabs, I also changed the homepage to google. None of these had any effect.

First of all you can add those changes just in your ~/.config/jumanji/jumanjirc file:

map <C-t> focus_inputbar ":tabopen"
set homepage "archlinux.org"

Regarding changing the code...

Tarffull wrote:

EDIT: I changed the config.c back to it's original state and just changed

Is it possible that you are overwriting the homepage value in your jumanjirc file and therefore it doesnt work? Otherwise your change set should work if you have rebuild jumanji correctly.

Best regards

Last edited by mlq (2011-11-07 19:31:06)

Offline

#199 2011-11-07 19:26:00

Tarffull
Member
Registered: 2011-11-07
Posts: 6

Re: jumanji - a web browser

I have no zathurarc, so that's a no go. So you're saying that if i clone it from github, change the homepagestring in config.c and build jumanji is *should* work? I'll try that once more. It's really confusing since my jumanjirc is blank, I don't have a zathurarc and the homepage is only defined in config.c.

Offline

#200 2011-11-07 19:30:20

mlq
Member
Registered: 2011-03-15
Posts: 171
Website

Re: jumanji - a web browser

Hello,

Tarffull wrote:

I have no zathurarc, so that's a no go. So you're saying that if i clone it from github, change the homepagestring in config.c and build jumanji is *should* work? I'll try that once more. It's really confusing since my jumanjirc is blank, I don't have a zathurarc and the homepage is only defined in config.c.

Of course, I meant jumanjirc and not zathurarc.  But I think I am a bit confused right now:

1) The source code is not hosted on github, but on our server and I think you already got the source code otherwise you would not be able to modify it.
2) You have modified config.c but you haven't rebuild jumanji afterwards? Just type 'make' or if you want to install it 'make install'.
3) You can overwrite the default settings with the jumanjirc file

Best regards

Offline

Board footer

Powered by FluxBB