NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 45 46 47 48 49 … 93 Next »
Enhanced Web Admin

Thread Closed 
 
  • 0 Vote(s) - 0 Average
Enhanced Web Admin
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#1,261
2006-08-06, 10:07 AM
I vote to have an option to switch between table and tree
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#1,262
2006-08-06, 10:13 AM
UncleJohnsBand, I wanted to ask (not complain) on a side note...

It seemes the screens are a tad slow updating and changing... (local intranet)

I suspect that it's because there's a he11 of a lot of data that's being pulled and formatted....

But how much of that is skin?
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1,263
2006-08-06, 12:25 PM
zehd Wrote:UncleJohnsBand, I wanted to ask (not complain) on a side note...

It seemes the screens are a tad slow updating and changing... (local intranet)

I suspect that it's because there's a he11 of a lot of data that's being pulled and formatted....

But how much of that is skin?

What screens(s) are you talking about......that will help to answer the question......Smile
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1,264
2006-08-06, 12:27 PM
martynw Wrote:My vote would be for an option in case people prefered the old style? Otherwise some people would feel they had to stick with an older version if they couldn't get on with the new tree view.


Martyn

zehd Wrote:I vote to have an option to switch between table and tree

That is how I have set it up for.....I am going to defulat the option in the config to the new TreeView but a user will be able to change back to the table view if so desired.

I will probably have a release go out sometine tonight...)USA Eastern Daylight time)....Big Grin
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
Hirudo
Offline

Junior Member

Posts: 5
Threads: 0
Joined: Jun 2006
#1,265
2006-08-06, 02:53 PM
UncleJohnsBand Wrote:What screens(s) are you talking about......that will help to answer the question......:)

On a related but different note: there's some invalid HTML here and there. Fixing these will most likely make the pages even bigger, but it might also make them faster to parse since the browser won't have to try and work around the issues.

* "&" needs to be written as "&" in tag attributes. <a href="SearchResults.aspx?matchTitle=on&textKeyWord=Blue+Collar+TV"> should be <a href="SearchResults.aspx?matchTitle=on&amp;textKeyWord=Blue+Collar+TV">

* ID values must start with a letter. Your main form has IDs like "__VIEWSTATE" which aren't valid.

On the "Manage recordings" page (400+ warnings in the validator):

* Right after the quality line for each reoccurring recording, there's an orphan </span> tag. <br/>Quality: <i>Medium</i><br></span>

* <nobr> should be <span style="white-space: nowrap">

* <script> tags should have a "type" attribute. ("language" has been deprecated for a while now)

* I don't think there's a need for "language" attributes on input elements

On the TV Guide page (1200+ warnings):

* Some of your closing tags are wrong: <div style='padding-top: 4px'><div/> should be </div> at the end.

* & outside of attributes also has to be encoded as &amp; i.e. in show titles.
David
Offline

Senior Member

Posts: 435
Threads: 18
Joined: Oct 2005
#1,266
2006-08-06, 03:57 PM
Hirudo Wrote:* "&" needs to be written as "&" in tag attributes. <a href="SearchResults.aspx?matchTitle=on&textKeyWord=Blue+Collar+TV"> should be <a href="SearchResults.aspx?matchTitle=on&amp;textKeyWord=Blue+Collar+TV">
When working with URL parameters, separation by a single "&" is fairly standard. Escaping a character with ";&xxx" encoding is for characters embedded in HTML. Escaping characters in the URL should follow the "%xx" format since the "&" character is recognized as a separator. If the "&" were part of a URL parameter value, say a show title like "Bonnie & Clyde", then it would need to be escaped (as would the spaces).
David

PVR PC: Win2K3, Athlon x2 64 4600+, 1280MB Ram, 40+400 GB HD's, Gigabyte Network
PVR-250, ATSC-110 digital x2, GBPVR v1.3.7 w/SQLite DB
Extras: Addepisode 41, Comskip 79.46, EWA 76, Zaptools

DSM-520 (D-Link Media Lounge) FW 1.04 using TVersity Media Server 0.9.11.4
DSM-320 (D-Link Media Lounge) FW 1.09
MediaMVP

More specs
Hirudo
Offline

Junior Member

Posts: 5
Threads: 0
Joined: Jun 2006
#1,267
2006-08-06, 10:54 PM
David Wrote:When working with URL parameters, separation by a single "&" is fairly standard. Escaping a character with ";&xxx" encoding is for characters embedded in HTML. Escaping characters in the URL should follow the "%xx" format since the "&" character is recognized as a separator. If the "&" were part of a URL parameter value, say a show title like "Bonnie & Clyde", then it would need to be escaped (as would the spaces).

It's standard as in "lots of people do it". It's also Wrong. See http://ppewww.ph.gla.ac.uk/%7Eflavell/ww...byurl.html and http://www.w3.org/TR/html4/appendix/notes.html#h-B.2.2.

Remember that this will automatically be unescaped by the browser before it gets sent to the webserver. So using &amp; in your link will arrive at the server as a plain &. The %-encoding you are talking about will NOT be decoded by the browser and will be sent as is.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1,268
2006-08-06, 11:24 PM
I'll look around when I have time but a lot of the code is generated via the .NET Frameworks componets themselves and when creating URL's we do use the .NET URL Encode methods so what you see is what you get.....Wink

The other thing to keep in mind is we try to ensure that the EWA displays correctly in both IE and Firefox which can be challenging at times.....sometimes you have to implement a less "clean" method of doing something to ensure browser compatability......
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1,269
2006-08-07, 03:50 AM
Build 43 is available for download on the wiki.

Changes:
  • Updated EWA to not show stream button unless VLC is actually installed in the directory specified in the config.
  • Retain scroll position in Episode Search Results when scheduling show to record via Detail Pop-Up.
  • Added the ability to display search results in a TreeView rather than a table.
  • Added the ability to set a configuration setting to show search results in a TreeView or Table View. It is defaulted to TreeView.
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
HtV
Offline

Posting Freak

Posts: 3,470
Threads: 46
Joined: Dec 2005
#1,270
2006-08-07, 08:31 AM
Great workSmile
AMD Athlon 64 3000, HDD: 80, 120, 200 GB, Hauppauge 350 + 150, MVP, Asus 6000L Laptop client, Asus X50sl client,
Fritz!box 7140 modem/router, GBPVR 1.3.7.
« Next Oldest | Next Newest »

Users browsing this thread: 3 Guest(s)

Pages (161): « Previous 1 … 125 126 127 128 129 … 161 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  SQLite GUI-based admin & query building? Braklet 3 1,955 2006-10-30, 02:45 PM
Last Post: Braklet
  Recordings made via the Web Admin interface are at the wrong resolution! mmatheny 9 3,072 2006-08-04, 06:34 PM
Last Post: HtV
  Enhanced Web Admin Hobson 3 2,377 2006-06-09, 07:47 AM
Last Post: Hobson
  Enhanced Web Admin (Time Slice error?) SFX Group 2 1,824 2006-02-04, 08:10 PM
Last Post: normanr
  Web Admin suggested feature babybob 0 1,150 2006-01-31, 10:12 PM
Last Post: babybob
  Enhanced Web Admin Request psycik 1 1,334 2005-10-10, 08:16 PM
Last Post: UncleJohnsBand
  reoccuring + web admin aegisx 0 1,174 2005-01-25, 10:57 PM
Last Post: aegisx
  GBPVR Web Admin KingArgyle 8 4,073 2004-12-15, 03:01 AM
Last Post: KingArgyle

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode