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
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#811
2006-03-04, 08:38 PM
KingArgyle Wrote:The problem is that those interfaces are pretty low level interfaces tied directly to GBPVR and aren't abstracted really to their functionality. I was thinking of interfaces that worked something like the following:

public bool Once(Program programObject)

public bool ThisTimeSlot(Program programObject)

public bool AnyTimeSlot(Program programObject)

public bool ThisDayOnly(Program programObject)

public bool AnyDay(Program programObject)

public bool SpecificDays(Program programObject, IList DaysOfWeek)

Then within these methods would be the specific code for each scheduler to implement. This allows for the pages to remain the same, and is up to each scheduler to implement the correct interface to the back end system. The program object should contain all the necessary information needed for the type of scheduling being choosen. It keeps the GBPVR specific information out of it, and abstracts it to the task that is trying to be accomplished.

Plus this should make standardizing the coding for scheduling across the different pages more efficient, as the code for actually scheduling is implemented in one place and updates to one will propogate to the others. Right now the Search and the Scheduling pages use different code to schedule a recording.

I think I could toy around with this idea....it won't be in the next release though.....I just shipped the updated code to have the next release put out so that people can start using the new scheduling features and genre filtering that I added...I wouldn't want to hold that up....people have been waiting patiently...Wink

If I have questions I'll PM you...
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
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#812
2006-03-04, 09:03 PM
No problem. I'm holding off on updating for a few more days.
microkid
Offline

Member

Posts: 75
Threads: 18
Joined: Oct 2004
#813
2006-03-05, 05:16 PM
Is there a quick how-to for embedding the web interface into IIS6? I read the topics, created a virtual site, but all I get is errors, like:

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.OleDb.OleDbException: Could not use ''; file already in use.

Source Error:


Line 32: lock (typeof(ScheduleHelper))
Line 33: {
Line 34: ScheduleHelper.getInstance().LoadRecordingSchedule();
Line 35: }
Line 36: }


Source File: C:\Program Files\devnz\gbpvr\web\Global.asax.cs Line: 34
Antec Sonata Solo - Intel DG33TLM - Intel E6550 - 4x1024MB PC800 Transcend - Samsung F1 320GB - 3x Samsung F1 750GB RAID5 - Hauppauge PVR150 - VistaView Saber 2020 - Hauppauge MVP
Aspire Qpack - Gigabyte GA-G33M-DS2R - C2D E8400 - 2x2GB Crucial Ballistix - Samsung F1 320GB - NEC 3540 - Hauppauge PVR250
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#814
2006-03-05, 05:21 PM
If you want to use IIS as the engine for the Web Admin, then migrate to using MSDE (SQL Server) as the database store. There's a thread somewhere in these forums on how to do it.
ggee
Offline

Senior Member

Posts: 313
Threads: 88
Joined: Oct 2005
#815
2006-03-05, 08:53 PM
Can I ask for a small feature? Can you include the version number on one of the pages so I know what I have installed?

1. What version is included in gbpvr 0.96.12?

2. What is the latest version released?

Thanks,
Greg
Server:
GBPVR 1.4.7
Capture: Hauppauge PVR-150MCE

[COLOR="DarkRed"]Clients:
[/COLOR]
Media MVP: 2 wired(default dongle), 1 wireless(mvpmc dongle)
PCH A-100: 1 (mvpmcx2)
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#816
2006-03-05, 09:02 PM
hover over the GB-PVR logo
1. build 30
2. build 31
build 32 should be out very soon, I'm currently reviewing the patches sent me by UJB, and then I'll put out a release.
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#817
2006-03-05, 09:14 PM
KingArgyle Wrote:Plus this should make standardizing the coding for scheduling across the different pages more efficient, as the code for actually scheduling is implemented in one place and updates to one will propogate to the others. Right now the Search and the Scheduling pages use different code to schedule a recording.
Agreed, during the review of the patches I noticed that these pages are so similar that the code duplication is a joke.

You naming convention doesn't work very well, because some of those states can overlap. I think that some sort of 'recording request' object might be the best option here.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#818
2006-03-06, 02:56 AM
normanr Wrote:Agreed, during the review of the patches I noticed that these pages are so similar that the code duplication is a joke.

You naming convention doesn't work very well, because some of those states can overlap. I think that some sort of 'recording request' object might be the best option here.

I have this almost complete.... 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
djtaylor
Offline

Senior Member

Posts: 505
Threads: 48
Joined: Jan 2006
#819
2006-03-06, 09:33 AM
Is it just me or does the web admin fail to report conflicts?

I tried to schedule something and it didn't paint the box red as normal and it took me a while and a bit of digging around to discover that it was because there was a scheduling conflict.

Unless i'm doing something wrong, it would be nice to have a conflict resolution option or even a dialog telling me that it can't schedule due to a conflict rather than just doing nothing.

David.
b00sfuk
Offline

Senior Member

Posts: 319
Threads: 26
Joined: Mar 2005
#820
2006-03-06, 09:53 AM
I noticed this as well. It just does not do anything if the schedule causes a conflict.
Silverstone LC10M with iMON
Gigabyte 780G+4850e, AMD 6570
Blackgold BGT3620, Harmony 555 Remote
Win7 32-bit, SAF
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (161): « Previous 1 … 80 81 82 83 84 … 161 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  SQLite GUI-based admin & query building? Braklet 3 1,978 2006-10-30, 02:45 PM
Last Post: Braklet
  Recordings made via the Web Admin interface are at the wrong resolution! mmatheny 9 3,129 2006-08-04, 06:34 PM
Last Post: HtV
  Enhanced Web Admin Hobson 3 2,394 2006-06-09, 07:47 AM
Last Post: Hobson
  Enhanced Web Admin (Time Slice error?) SFX Group 2 1,847 2006-02-04, 08:10 PM
Last Post: normanr
  Web Admin suggested feature babybob 0 1,163 2006-01-31, 10:12 PM
Last Post: babybob
  Enhanced Web Admin Request psycik 1 1,351 2005-10-10, 08:16 PM
Last Post: UncleJohnsBand
  reoccuring + web admin aegisx 0 1,185 2005-01-25, 10:57 PM
Last Post: aegisx
  GBPVR Web Admin KingArgyle 8 4,105 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