gargoyle-ispy 2017-January-24 20:11.torrent

Want to share your OpenWrt / Gargoyle knowledge? Implemented a new feature? Let us know here.

Moderator: Moderators

Lantis
Moderator
Posts: 6753
Joined: Mon Jan 05, 2015 5:33 am
Location: Australia

Re: gargoyle-ispy 2017-January-24 20:11.torrent

Post by Lantis »

Are you any good with code rseiler?

I've just mocked up a kind of nice solution but i'd like you to weigh in on it.

if you take this section (in /www/bandwidth.sh):

Code: Select all

<div id="bandwidth_graphs" class="row">
					<h1 class="page-header"><%~ BGrSect %></h1>
					<div class="col-lg-4">
						<div class="col-lg-12">
							<span class="bandwidth_title_text"><strong><%~ Dnld %></strong> (<span onclick="expand('<%~ Dnld %>')" class="pseudo_link"><%~ expd %></span>)</span>
							<embed id="download_plot" style="margin-left:0px; margin-right:5px; float:left; width:100%; height:100%;" src="bandwidth.svg" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/" />
						</div>
						<div class="col-lg-12">
							<span class="bandwidth_title_text"><strong><%~ Upld %></strong> (<span onclick="expand('<%~ Upld %>')" class="pseudo_link"><%~ expd %></span>)</span>
							<embed id="upload_plot" style="margin-left:0px; margin-right:5px; float:left; width:100%; height:100%;" src="bandwidth.svg" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/" />
						</div>
					</div>
					<div class="col-lg-8">
						<span class="bandwidth_title_text"><strong><%~ Totl %></strong> (<span onclick="expand('<%~ Totl %>')" class="pseudo_link"><%~ expd %></span>)</span>
						<br/>
						<embed id="total_plot" style="width:100%; height:100%;" src="bandwidth.svg" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/" />
					</div>
				</div>
and change it to:

Code: Select all

<div id="bandwidth_graphs" class="row">
					<h1 class="page-header"><%~ BGrSect %></h1>
					<div class="col-lg-4 col-md-12 col-sm-8 col-xs-12">
						<div class="col-lg-12 col-md-6 col-xs-12">
							<span class="bandwidth_title_text"><strong><%~ Dnld %></strong> (<span onclick="expand('<%~ Dnld %>')" class="pseudo_link"><%~ expd %></span>)</span>
							<embed id="download_plot" style="margin-left:0px; margin-right:5px; float:left; width:100%; height:100%;" src="bandwidth.svg" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/" />
						</div>
						<div class="col-lg-12 col-md-6 col-xs-12">
							<span class="bandwidth_title_text"><strong><%~ Upld %></strong> (<span onclick="expand('<%~ Upld %>')" class="pseudo_link"><%~ expd %></span>)</span>
							<embed id="upload_plot" style="margin-left:0px; margin-right:5px; float:left; width:100%; height:100%;" src="bandwidth.svg" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/" />
						</div>
					</div>
					<div class="col-lg-8 col-md-12 col-xs-12">
						<span class="bandwidth_title_text"><strong><%~ Totl %></strong> (<span onclick="expand('<%~ Totl %>')" class="pseudo_link"><%~ expd %></span>)</span>
						<br/>
						<embed id="total_plot" style="width:100%; height:100%;" src="bandwidth.svg" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/" />
					</div>
				</div>
You end up with the following:
Full screen, download/upload on top of each other taking up 33% of screen. Total taking up 66%.

Mid screen, download/upload side by side above total taking up 100% of width. Total taking up 100% of width.

Large Small Screen (think an ipad), all of them 1 on top of the other. download/upload take up 66% of screen. Total takes up 100%.

Small screen, all take up 100% of screen.
http://lantisproject.com/downloads/gargoyle_ispyisail.php for the latest releases
Please be respectful when posting. I do this in my free time on a volunteer basis.

rseiler
Posts: 208
Joined: Sun Dec 15, 2013 12:31 am

Re: gargoyle-ispy 2017-January-24 20:11.torrent

Post by rseiler »

Not well enough to have whipped that up, but I can see what you're doing and it's a vast improvement in the mid-range, which is where the real problem was.

If we're shooting for making that to look as close to the way it was as possible, I think 4/4/8 is closer to it than 6/6/12, particularly as far as the Total graph is concerned.

mojolacerator
Posts: 54
Joined: Wed Jun 15, 2016 11:24 am
Location: Canada

Re: gargoyle-ispy 2017-January-24 20:11.torrent

Post by mojolacerator »

@lantis

Just curious, are you going to host the Jan 24th image ?
Gargoyle

i5-3550, 8gb ram, 120gb ssd

lceron80
Posts: 113
Joined: Sun Jul 24, 2011 3:42 pm

Re: gargoyle-ispy 2017-January-24 20:11.torrent

Post by lceron80 »

there is a small issue in the display. i use wifi scheduler and in that tab is where the dispaly issue is. check the attached image link.

https://www.dropbox.com/s/4rrv9ookewuhe ... 7.png?dl=0

wrt1200ac
1x wndr3700v4 exp. 1.9.x
1x wndr3800 exp. 1.9.x
1x wndr4300v1 exp. 1.9.x
1x wndrmacv2 exp. 1.9.x

Lantis
Moderator
Posts: 6753
Joined: Mon Jan 05, 2015 5:33 am
Location: Australia

Re: gargoyle-ispy 2017-January-24 20:11.torrent

Post by Lantis »

mojolacerator wrote:@lantis

Just curious, are you going to host the Jan 24th image ?
No will wait for the next one. I'm still actively developing and there's additional changes since the 24th.

I can do it if people need though
http://lantisproject.com/downloads/gargoyle_ispyisail.php for the latest releases
Please be respectful when posting. I do this in my free time on a volunteer basis.

Lantis
Moderator
Posts: 6753
Joined: Mon Jan 05, 2015 5:33 am
Location: Australia

Re: gargoyle-ispy 2017-January-24 20:11.torrent

Post by Lantis »

lceron80 wrote:there is a small issue in the display. i use wifi scheduler and in that tab is where the dispaly issue is. check the attached image link.

https://www.dropbox.com/s/4rrv9ookewuhe ... 7.png?dl=0

wrt1200ac
The plugins were updated but not hosted anywhere.
You can try and use my website as a repository but it was a bit hit and miss (some plugins appeared not to rebuild)
I promise all of the plugins have been fixed for the new format however. In fact I spent quite a bit of time on that page fixing the days of the week view
http://lantisproject.com/gargoyle_ispyi ... n-12-2017/
http://lantisproject.com/downloads/gargoyle_ispyisail.php for the latest releases
Please be respectful when posting. I do this in my free time on a volunteer basis.

Post Reply