Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Ivek23

Pages: 1 ... 98 99 100 101 102 [103] 104 105 106 107 108 ... 133
2041
Development / Re: Script for egafd.com
« on: November 27, 2011, 06:09:15 pm »
Quote
Sorry i'm not a developer!

Me neither.
Attempts to examine Rovi script or AllMovie script, if you will do any good.

egafd_mod.psf is attached

[attachment deleted by admin]

2042
Development / Re: Script for egafd.com
« on: November 27, 2011, 11:27:21 am »
Code: [Select]
procedure ParseCast(HTML : String);
var
curPos, endPos : Integer;
TmpStr : String;
Name, Role, URL : String;
begin
curPos := Pos('<div class="tabset-content main-tab-pane">', HTML);
if curPos < 1 then

curPos := Pos('<div class="description-box">', HTML);
if curPos < 1 then
Exit;
 
TmpStr := '';

endPos := curPos;
curPos := PosFrom('http://www.allrovi.com/name/', HTML, curPos);

while (curPos > 0) AND (curPos < PosFrom('</table>', HTML, endPos)) do begin
endPos := PosFrom('">', HTML, curPos);
URL := Copy(HTML, curPos, endPos - curPos);

curPos := endPos + 2;
endPos := PosFrom('</a>', HTML, curPos);
Name := Copy(HTML, curPos, endPos - curPos);

curPos := PosFrom('>', HTML, endPos);
if curPos > 0 then begin
curPos := curPos + 2;
endPos := PosFrom('</td', HTML, curPos);
Role := Copy(Trim(Copy(HTML, curPos + 4, endPos - curPos - 4)), 5, endPos - curPos - 4);
end else begin
Role := '';
curPos := endPos;
end;

if GET_ACTORS then
AddMoviePerson(Name, '', '', URL, ctActors);

if TmpStr <> '' then
TmpStr := TmpStr + #13;
if URL <> '' then
TmpStr := TmpStr + '<link url="' + URL + '">';
TmpStr := TmpStr + Name;
if Role <> '' then
TmpStr := TmpStr + ' • ' + Role;
if URL <> '' then
TmpStr := TmpStr + '</link>';
if curPos > 0 then
curPos := PosFrom('http://www.allrovi.com/name/', HTML, curPos)
else
Exit;
end;

AddCustomFieldValueByName('Cast', TmpStr);

Perhaps you will keep this code something to help, how to integrate TmpStr and then how to continue, is copy that URL, that you want to copy in the database.

2043
Development / Re: Script for egafd.com
« on: November 27, 2011, 10:53:50 am »
Quote
I try <Link="www......">Name</Link> but when i click in, nothing happens!

Code: [Select]
<Link="www......">Name</Link>

This is wrong (not correct), so can not work.

Try something like the following

Code: [Select]
'<link url="' + PeopleURL + '">' + Name + '</link>'

or is this

Code: [Select]
'<link url="' + MovieURL + '">' + Title + '</link>'

or something similar as previously described.

Or, do like code as the code in egafd.psf  for Cast.

I apologize if I did not understand everything correctly on this issue, but I hope that the answer was still helpful.


2044
Development / Re: Script for egafd.com
« on: November 27, 2011, 07:55:16 am »
For egafd.psf

Code: [Select]
//Notes
   curpos := Pos('Notes: ' , HTML);
   EndPos := curPos;
         LogMessage('Notes')
         dbgstrg := TextBetween(HTML, '">', '</td>', False, CurPos);
         LogMessage('Notes :' + dbgstrg);
         AddFieldValue(mfDescription, dbgstrg);

Proposal:
  AddFieldValue(mfDescription, dbgstrg);

Replace this

AddFieldValue(mfTagline, dbgstrg);

You can add yet Notes: (Description) in a similar manner as in people added pfBio

-------------------------------------------------------------------
Here you is an updated egafd_people.psf
Is now added pfbio (films).


Script is attached.




[attachment deleted by admin]

2045
Development / Re: Script for egafd.com
« on: November 26, 2011, 03:31:24 pm »
Quote
I try now with egafd_people, but my script doesn't work!

With pre-made ​​duplicate url script works, but info does not transfer data.
Sorry, but unfortunately you can not help.
It might be good to have a review of the movie scripts and try to maybe do a similar script as the AllMovie script or Rovi script or on the basis of these scripts to make changes, that the script is ready to transfer data from http://www.egafd.com .

2046
Scripts and Templates / Re: Are there anime related skins...
« on: November 26, 2011, 03:08:58 pm »
Hello,
I'm just wondering if anyone has done any anime-related movie skins yet. If not, I'm working on one right now.


What is then the result of the work! Would have been nice to see.

2047
Development / Re: Script for egafd.com
« on: November 25, 2011, 10:39:22 am »
Welcome, pra15

Quote
My problem is to write "notes" in field comment and not in field description!
I tried to declare "mfComment = 16;" but no data are transfered!

As the first "mfComment" not yet exist and does not work yet.
It is a solution ot the PVD settings looking at the attached picture. Now the information in the comment box.

Since the author did not do psf files, egafd.psf is now attached in this reply.

[attachment deleted by admin]

2048
Feature Suggestions / Re: New version? [1.0.0 to be released in 2011]
« on: November 19, 2011, 08:00:38 am »
Very difficult to say, but I will certainly provide one more Beta this year.

And especially promising also good news.

Thanks for Beta version 1.0.2

2049
Support / Re: Posters (No Movie Found)
« on: November 18, 2011, 07:07:21 am »

2050
Support / Re: IMDb plugin maintenance issues
« on: November 18, 2011, 07:05:55 am »

2051
Support / Re: Forum Attacks
« on: November 16, 2011, 06:24:45 pm »
Quote
Personal Video Database - Statistics Center

Nostra,  Thank you very much.

2052
Support / Re: Forum Attacks
« on: November 16, 2011, 03:55:17 pm »
New forum layout is visually interesting (the old look more appealing and pleasing, at least for me it was so), seems to be no longer spam posts, at the same time, the question I have, whether it is now possible to see Personal Video Database - Statistics Center.

2053
Scripts and Templates / Re: PVD Person Tabs Skin
« on: November 06, 2011, 10:24:38 am »
Now the skin is also available via auto-update system.

2054
Feature Suggestions / Re: New version? [1.0.0 to be released in 2011]
« on: October 20, 2011, 07:02:45 pm »
Very difficult to say, but I will certainly provide one more Beta this year.

And especially promising also good news.

2055
Feature Suggestions / Re: New version? [1.0.0 to be released in 2011]
« on: October 20, 2011, 09:05:25 am »
Question:
Nostra, I know you have very little free time, when we can expect the outcome the next beta version.

2056
Support / Re: AllMovie disappeared, Allrovi.com appeared!
« on: October 13, 2011, 12:54:01 pm »
New news about AllRovi.
or this All topics for AllRovi.

Now it is only this notice:

Quote

This community is no longer active.

Please visit www.allrovi.com/feedback for support
or view the archived content.


All topics for AllRovi are now in the archive format (click to view the archived content).

2057
Support / Re: AllMovie disappeared, Allrovi.com appeared!
« on: October 13, 2011, 12:53:40 pm »
I'm sorry.
I accidentally delete this message:

«Reply # 63 on: 10 October 2011, 19:33:59»

For all users, which in addition to other sources for movie information is also used
 AllRovi script for the movie information

The Wayback Machine again functioning normally.

2058
Support / Re: Forum Attacks
« on: October 11, 2011, 03:59:38 pm »
This is now more conducive to see and more realistic number of real users on the forum. Now the mere sight on the forum is really is more beautiful and the easier it is to see if there is anything new on it (at least for me is this a joy).

2059
Support / Re: Forum Attacks
« on: October 09, 2011, 12:53:47 pm »
Quote
would take time and patience for this, to clear the spam accounts and the accounts of all those users,

I don't believe anyone has the patience to delete to delete 60-70 accounts a day, one-at-a-time. It seems there is the ability to select and delete in bulk, but the power to do so may only be available to administrators. I've only commented on what needs to be done, not on whether the tools necessary can be granted to moderators.

OK, thanks for the clarification.

2060
Support / Re: Forum Attacks
« on: October 09, 2011, 10:12:54 am »
The rate at which accounts are being created and spam posted is too great for me to keep up with. So I did little over the past week, in part to see what the result would be. Unfortunately, the spam posts that were in Version 1 [Testing] were deleted before I could count them. But there were lots—pages of new topics, I believe. Only a few were posted to other boards, which I deleted as they happened.

If my memory sun is cheating, it was new spam topics about for two full pages.

I've reviewed the new memberships over this period, and what I find is the same as before. New accounts are being added at about 70 per day. About 3 of these are legitimate users (as indicated by activity after registration) and maybe one of them will post.

This is true, as has been said.
Or return later with spam posts or not active or not at all be more active.

My conclusion is the same as before. We could really use something more effective in preventing spam accounts from being created. And unless that's highly effective, moderators need the ability to identify and mass delete accounts with no activity. If nothing can be done to stop the accounts from being created, deleting them all regularly (i.e., daily) would keep the membership clean and greatly reduce the number of spam posts (most spammers first create an account, then return later to add links and/or post spam).

Excellent expressed a final opinion.

As I've mentioned here

Maybe I should be yet another moderator that would help in cleaning spam posts and spam user accounts.
We may need to make all three active users moderators. ;D

If I had moderator status, established a permit or authorization to edit (delete) user accounts and posts, would be happy to assist in the regulation of the current mess on the forum.

would take time and patience for this, to clear the spam accounts and the accounts of all those users,
Quote
would also delete the legitimate accounts of "lurkers"—real people who have gone to the trouble to register
which until now has never been active (for example - in their account writes the following: (Last active:        Never)).

Pages: 1 ... 98 99 100 101 102 [103] 104 105 106 107 108 ... 133