[webkit-dev] regarding Webkit compilation error redefinition; different storage class

2008-04-22 Thread priyanka gupta
Hi All,

This is regarding the previous query which I had posted, the issue has been
resolved partly.
The file CSSValueKeywords.h which was getting generated in the
E:\WebKit3.0\WebKitSVN\WebKitBuild\obj\WebCore\DerivedSources was having
multiple definitions  const int CSSValue  as follows
const int CSSValue
= 22;
const int CSSValue
= 272;
const int CSSValue
 =315;
...etc

Now Webkit is compiling as i have removed the multiple definitions, but a
newly generated CSSValueKeywords.h still has the same erroneous entry.
There might be some issue in the way the file is being generated.

--priyanka
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


[webkit-dev] Webkit PLUGIN test cases/test plan for windows port?

2008-04-17 Thread priyanka gupta
Hi All,

Are there any test cases/test plan available for testing the
features/functionality of Windows port of Webkit Plugins ??

Thanks and Regards,
Priyanka
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] Plugin Questions

2008-04-15 Thread priyanka gupta
On Apr 9, 2008, at 11:19 PM, SON SEOK BAE wrote:

 If I want to show contents (for example, Flash animations) with
 WebKit port, what kind of flash player plugings should I install for
 webkit?
 I mean, will it be Flash player for Safari or Flash player for
 Firefox or something else?
 And are they really pluggable and working well with WebKit ports?
 (I just don't understand why there are different pluggins for
 Safari and Firefox even though they use the same plugin interface --
 NPAPI.)

The plugins are designed based on the platform, not based on the
BrowserEngine.
Whether the BrowserEngine is Safari or Mozilla or Netscape, the same plugin
should work if both the plugin and the  BrowserEngine have followed the
Netscape Gecko NPAPI standards.

Just that there are certain rules for various platforms.
MS WINDOWS :
-- plugins subdirectory, should be the same directory as the browser
application
-- plugin should have its own installer to modify the windows registry keys
-- Plug-ins must have a 8.3 filename beginning with NP and ending with
.DLL

MacOS:
-- On the Mac OS platform, the Plug-ins folder is located in the same folder
as the browser application.
-- Plug-ins are identified by file type NSPL.When the browser starts up, it
searches subfolders of the Plug-ins folder for plug-ins and follows aliases
to folders and NSPL files.
-- Plug-in filenames must begin with NP
-- The MIME types supported by a plug-in are determined by its resources.

Unix:
-- On Unix, the plugins directory is set by the environment variable
${MOZILLA_FIVE_HOME}/plugins.
-- Plug-in filenames must begin with NP and ends with .so
-- To determine the MIME types of the plug-ins, the browser loads each
plug-in library and calls its required NPP_GetMIMEDescription entry point.

Do correct me in case i have mentioned anything wrong.

--Priyanka



On Tue, Apr 15, 2008 at 2:36 AM, [EMAIL PROTECTED]
wrote:

 Send webkit-dev mailing list submissions to
webkit-dev@lists.webkit.org

 To subscribe or unsubscribe via the World Wide Web, visit
http://lists.webkit.org/mailman/listinfo/webkit-dev
 or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]

 You can reach the person managing the list at
[EMAIL PROTECTED]

 When replying, please edit your Subject line so it is more specific
 than Re: Contents of webkit-dev digest...


 Today's Topics:

   1. Re: Plugin Questions (Darin Adler)
   2. Re: Regarding HashSet (Darin Adler)
   3. Re: Patch for compilation error while building with gcc4.x
  compilers on latest nightlies (David Kilzer)
   4. Re: KDE Webkit (Darin Adler)
   5. Re: Patch for compilation error while building with gcc  4.x
  compilers on latest nightlies (Darin Adler)
   6. Re: Re: Adding Javascript object to Webkit (Geoffrey Garen)
   7. Re: Adding Javascript object to Webkit (Mark Rowe)


 --

 Message: 1
 Date: Mon, 14 Apr 2008 08:56:19 -0700
 From: Darin Adler [EMAIL PROTECTED]
 Subject: Re: [webkit-dev] Plugin Questions
 To: SON SEOK BAE [EMAIL PROTECTED]
 Cc: webkit-dev webkit-dev@lists.webkit.org
 Message-ID: [EMAIL PROTECTED]
 Content-Type: text/plain; charset=us-ascii

 On Apr 9, 2008, at 11:19 PM, SON SEOK BAE wrote:

  If I want to show contents (for example, Flash animations) with
  WebKit port, what kind of flash player plugings should I install for
  webkit?
  I mean, will it be Flash player for Safari or Flash player for
  Firefox or something else?
  And are they really pluggable and working well with WebKit ports?
  (I just don't understand why there are different pluggins for
  Safari and Firefox even though they use the same plugin interface --
  NPAPI.)

 There are not different plug-ins for Safari and Firefox on Windows.
 Netscape-style plug-ins like Flash work in both browsers.

 I don't know what the answer is on Linux.

 Sorry I didn't answer all three of your questions, but that's the
 answer to the first.

 -- Darin

 -- next part --
 An HTML attachment was scrubbed...
 URL:
 http://lists.webkit.org/pipermail/webkit-dev/attachments/20080414/e3b7327b/attachment-0001.html

 --

 Message: 2
 Date: Mon, 14 Apr 2008 09:02:52 -0700
 From: Darin Adler [EMAIL PROTECTED]
 Subject: Re: [webkit-dev] Regarding HashSet
 To: priyanka gupta [EMAIL PROTECTED]
 Cc: webkit-dev@lists.webkit.org
 Message-ID: [EMAIL PROTECTED]
 Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes

 On Apr 9, 2008, at 4:01 AM, priyanka gupta wrote:

  I am new to Webkit, but in our project we are using Webkit 3.0 drop
  for application development.
  Is there any documentation available for proper usage of Hashset
  template and its member functions??

 Sorry, there is not.

 I've been thinking of writing some documentation about how to work
 with HashSet and HashMap but this is the first request I've seen for it.

 Note that HashSet

Re: [webkit-dev] Regarding HashSet

2008-04-14 Thread priyanka gupta
Thanks for the response.

Actually I am working on the plugin module of Webcore. Plugins are to be
ported on our proprietary platform . But the procedure of searching for
available plugins on the Platform is different from that of Windows, and I
need to use the Hashset/Hashmap for the same. Any kind of basic
documentation about Hashset/hashmap will be helpful.

Sorry about the confusion on the Webkit 3.0, that name is used only locally
in our team, it is a mid-march SVN code of Webkit.

thanks and regards
--Priyanka


On Mon, Apr 14, 2008 at 9:32 PM, Darin Adler [EMAIL PROTECTED] wrote:

 On Apr 9, 2008, at 4:01 AM, priyanka gupta wrote:

  I am new to Webkit, but in our project we are using Webkit 3.0 drop for
  application development.
  Is there any documentation available for proper usage of Hashset
   template and its member functions??
 

 Sorry, there is not.

 I've been thinking of writing some documentation about how to work with
 HashSet and HashMap but this is the first request I've seen for it.

 Note that HashSet is currently intended for use only inside JavaScriptCore
 and WebCore, not in applications.

 I don't know what Webkit 3.0 drop is, so I'm not sure how that affects
 things.

-- Darin


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev