Re: [pdt-dev] Re: Problem Exporting a Plugin with php.core Dependency

2009-02-05 Thread William
Thanks for your suggestion Klaus.

Yes, my manifest does contain an entry for the *php.core* plugin as a
"Require-Bundle":

*Require-Bundle*: org.eclipse.ui,
 org.eclipse.ui.editors;*bundle-version*="3.4.0",
 org.eclipse.core.runtime,
 org.eclipse.core.resources,
 org.eclipse.wst.sse.core;*bundle-version*="1.1.302",
 org.eclipse.jface.text;*bundle-version*="3.4.1",
 org.eclipse.dltk.core;*bundle-version*="1.0.0",
 org.eclipse.dltk.ui;*bundle-version*="1.0.0",
 org.eclipse.php.core;*bundle-version*="2.0.0",
 org.eclipse.php.ui;*bundle-version*="2.0.0"


I also tried using the "Plug-ins and Fragments" import wizard to bring both
PDT dependencies into my workspace. When I do so, my project fails to build
(at all, not just during the "plugin export") due to the following error:

*The project was not built since its build path is incomplete. Cannot find
the class file for org.eclipse.php.core.codeassist.IPHPCompletionRequestor.
Fix the build path then try building this project
*



So to summarize:

   1. When the dependencies are pulled directly from my Eclipse installation
   (i.e. I let Eclipse reference its own set of installed plugins), everything
   works as you would expect.
   2. If I try to build as a plugin, or if I import the plugins as binaries
   into my workspace (and allow those to be the dependencies), I have build
   errors.


(And if it matters, the *php.core* and *php.ui* versions I have are
20081229-1135).


I'm really at a loss regarding this issue.  Its always been my experience
that the solution to these types are problems are pretty simple and obvious,
and I'm always embarrassed by the fact that I didn't figure it out on my
own.  So any other suggestions or help, no matter how obvious it might seem,
would be greatly appreciated.

Thanks again for your time,

William



On Thu, Feb 5, 2009 at 1:33 PM, Klaus Hartlage  wrote:

> Hi
>
> This seems to be obvious, but did you define all "Require-Bundle:" in the
> file:
> /META-INF/MANIFEST.MF
>
> 2009/2/5 William >:
> > Sorry for the interruption again.  I was hoping someone might have some
> > comments regarding my previous email (below).
> >
> > Thanks,
> >
> > William
> >
> > On Wed, Jan 28, 2009 at 11:20 PM, William 
> > >
> wrote:
> >>
> >> Hi All,
> >>
> >> I have a plugin I've been working on that includes, as part of its
> >> dependencies, the following PDT plugins:
> >>
> >> org.eclipse.php.core
> >>
> >> org.eclipse.php.ui
> >>
> >> I have been unable to build my plugin (through the "Export" wizard's
> >> "deployable plugin" or via an "update" site build).  Each time the build
> >> process fails due to multiple errors, all of which are related to:
> >>
> >> The import org.eclipse.php.internal.core cannot be resolved
> >>
> >> The php.ui dependency as well as all others (e.g. dltk.core,
> wst.sse.core,
> >> etc.) do not produce any errors. It is only the php.core plugin.
> >>
> >> I can (of course) debug the plugin just fine within the Eclipse
> >> environment.
> >>
> >> Does anyone have any insights into this issue? Any suggestions for
> >> debugging?
> >>
> >>
> >> Thanks for your time,
> >>
> >> William
> >
> > ___
> > pdt-dev mailing list
> > pdt-dev@eclipse.org
> > https://dev.eclipse.org/mailman/listinfo/pdt-dev
>
>
> --
> Blog: http://blog.klha.de
> ___
> pdt-dev mailing list
> pdt-dev@eclipse.org
> https://dev.eclipse.org/mailman/listinfo/pdt-dev
>
___
pdt-dev mailing list
pdt-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/pdt-dev


Re: [pdt-dev] Re: Problem Exporting a Plugin with php.core Dependency

2009-02-05 Thread Klaus Hartlage
Hi

This seems to be obvious, but did you define all "Require-Bundle:" in the file:
/META-INF/MANIFEST.MF

2009/2/5 William :
> Sorry for the interruption again.  I was hoping someone might have some
> comments regarding my previous email (below).
>
> Thanks,
>
> William
>
> On Wed, Jan 28, 2009 at 11:20 PM, William  wrote:
>>
>> Hi All,
>>
>> I have a plugin I've been working on that includes, as part of its
>> dependencies, the following PDT plugins:
>>
>> org.eclipse.php.core
>>
>> org.eclipse.php.ui
>>
>> I have been unable to build my plugin (through the "Export" wizard's
>> "deployable plugin" or via an "update" site build).  Each time the build
>> process fails due to multiple errors, all of which are related to:
>>
>> The import org.eclipse.php.internal.core cannot be resolved
>>
>> The php.ui dependency as well as all others (e.g. dltk.core, wst.sse.core,
>> etc.) do not produce any errors. It is only the php.core plugin.
>>
>> I can (of course) debug the plugin just fine within the Eclipse
>> environment.
>>
>> Does anyone have any insights into this issue? Any suggestions for
>> debugging?
>>
>>
>> Thanks for your time,
>>
>> William
>
> ___
> pdt-dev mailing list
> pdt-dev@eclipse.org
> https://dev.eclipse.org/mailman/listinfo/pdt-dev


-- 
Blog: http://blog.klha.de
___
pdt-dev mailing list
pdt-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/pdt-dev


Re: [pdt-dev] HTML validation

2009-02-05 Thread beerfan
On Thu, Feb 5, 2009 at 5:16 AM, Marc Weber  wrote:
> On Wed, Feb 04, 2009 at 11:06:55PM -0500, beerfan wrote:
>> Can anyone provide a link or instructions how to disable html
>> validation for php files in Eclipse 3.3.2? I've unchecked the "HTML
>> Syntax Validator" and "HTML Syntax Validator (for PHP Files)" options
>> in the validation settings but html validation is still being done.
>
> Goto the Package Explorer on the left, alt/meta + enter on the project
> folder
> On the left bottom you'll see "Validation". I hope this is what you're
> looking for

alt/meta + enter on the project folder doesn't do anything useful on
my OS but I assume you mean to edit the properties for a project.
Viewing the validation settings for a project I have "Override
validation preferences" checked and ALL validators are unchecked
(disabled).

As I said before though, this has no apparent effect. I receive a ton
of errors and warnings about invalid html in my projects.
___
pdt-dev mailing list
pdt-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/pdt-dev


[pdt-dev] Re: Problem Exporting a Plugin with php.core Dependency

2009-02-05 Thread William
Sorry for the interruption again.  I was hoping someone might have some
comments regarding my previous email (below).

Thanks,

William

On Wed, Jan 28, 2009 at 11:20 PM, William

> wrote:

> Hi All,
>
> I have a plugin I've been working on that includes, as part of its
> dependencies, the following PDT plugins:
>
> *org.eclipse.php.core*
>
> *org.eclipse.php.ui*
>
> I have been unable to build my plugin (through the "Export" wizard's
> "deployable plugin" or via an "update" site build).  Each time the build
> process fails due to multiple errors, all of which are related to:
>
> *The import org.eclipse.php.internal.core cannot be resolved*
>
> The *php.ui* dependency as well as all others (e.g. *dltk.core*, *
> wst.sse.core*, etc.) do not produce any errors. It is only the 
> *php.core*plugin.
>
> I can (of course) debug the plugin just fine within the Eclipse
> environment.
>
> Does anyone have any insights into this issue? Any suggestions for
> debugging?
>
>
> Thanks for your time,
>
> William
___
pdt-dev mailing list
pdt-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/pdt-dev


[pdt-dev] +1 for Kalin

2009-02-05 Thread portal on behalf of Michael Spector
+1
Kalin did very good job! I\'d like to see him inside as well!

Voting summary: http://portal.eclipse.org/


___
pdt-dev mailing list
pdt-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/pdt-dev


[pdt-dev] +1 for Silviya Tancheva

2009-02-05 Thread portal on behalf of Michael Spector
+1
Sylvia provides a huge contribution to the project. I\'ll be happy to see
her on our board!

Voting summary: http://portal.eclipse.org/


___
pdt-dev mailing list
pdt-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/pdt-dev


[pdt-dev] +1 for Kalin

2009-02-05 Thread portal on behalf of Gadi Goldbarg
+1
Key Player

Voting summary: http://portal.eclipse.org/


___
pdt-dev mailing list
pdt-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/pdt-dev


[pdt-dev] +1 for Silviya Tancheva

2009-02-05 Thread portal on behalf of Gadi Goldbarg
+1
Key player

Voting summary: http://portal.eclipse.org/


___
pdt-dev mailing list
pdt-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/pdt-dev


[pdt-dev] Vote for Committer status for Kalin has started

2009-02-05 Thread portal on behalf of Roy Ganor
tools.pdt.bugzilla Committers,
This automatically generated message signals that Roy Ganor has nominated
Kalin as a Committer on the  component of the tools.pdt project. The reason
given is as follows:

Kalin Arahangelov Yanev is a key player in the testing effort of PDT.
Kalin carries great responsibility in reporting the PDT team valuable
issues.

240283, 240295, 240305, 241065, 241106,  251046,  251190,  251233, 251509, 
251522, 251525, 251840, 252757, 252930, 252935, 252957,252968, 253171,
253188, 253191, 253646, 253661, 253715, 253879, 253901,
253921,254420   254461,254577,254579,254580,254582,254730,254733,254740,25502
9,255033,255050,255054,255164,255175,255189,255204,255208,255216,255319,255
341,255365,255482,255483,255485,255489,255491,255497,255645,255776,255780,2
55801,255935,255939,255977,256110,256278,256288,256292,256621,256636,256881
,257096,257201,257488,257491,257681,257685,257859,257860,257866,257883,2580
65,258080,258109,258237,258240,258251,258261,258267,258293,258417,258440,25
8646,258652,258803,258837,258926,258942,258972,259065,259066,259091,259251,
259340,259354,


The vote is being held via the MyFoundation portal: voters *must* use the
portal for the votes to be properly recorded.  The voting will continue
until either all 11 existing Committers have voted or until they have been
given enough time to vote, even if they do not do so (defined as at least
one week). Kalin must receive at least three +1s and no -1s for a
successful election.

Eligible Committers must cast their votes through their My Foundation
portal page (do NOT just reply to this email; your vote will not be
correctly recorded unless you use the portal):

http://portal.eclipse.org/

The project Committers eligible to vote are:

Roy Ganor
Shalom Gibly
Gadi Goldbarg
Guy Gurfinkel
David Kelsey
Eden Klein
Seva Lapsha
Yaron Mazor
Alon Peled
Michael Spector
Keren Stern

*NOTE*: Successful elections are left open for a maximum of 60 days to
allow for processing of paperwork.  After that time the election will be
expired, regardless of its current status.  Should papework processing on
the part of the candidate take more time than allowed, a new election will
have to be held.

If you have any questions, please do not hesitate to contact your project
lead, PMC member, or the EMO 

___
pdt-dev mailing list
pdt-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/pdt-dev


[pdt-dev] Vote for Committer status for Silviya Tancheva has started

2009-02-05 Thread portal on behalf of Roy Ganor
tools.pdt.bugzilla Committers,
This automatically generated message signals that Roy Ganor has nominated
Silviya Tancheva as a Committer on the  component of the tools.pdt project.
The reason given is as follows:

Silviya Krasim. Tancheva is a key player in the testing effort of PDT.

Silviya carries great responsibility in reporting the PDT team valuable
issues.

209200, 209308, 210512, 210527, 211998, 239129, 240127, 240804, 241051,
250433, 251837, 251843, 251845, 252363, 253712, 253719, 253904, 253951,
254411, 254421, 254713, 254717, 254741, 254762, 255041, 255178, 255209,
255364, 255806, 258784, 258818, 258922, 258948, 258955, 259062, 259098,
259436


The vote is being held via the MyFoundation portal: voters *must* use the
portal for the votes to be properly recorded.  The voting will continue
until either all 11 existing Committers have voted or until they have been
given enough time to vote, even if they do not do so (defined as at least
one week). Silviya Tancheva must receive at least three +1s and no -1s for
a successful election.

Eligible Committers must cast their votes through their My Foundation
portal page (do NOT just reply to this email; your vote will not be
correctly recorded unless you use the portal):

http://portal.eclipse.org/

The project Committers eligible to vote are:

Roy Ganor
Shalom Gibly
Gadi Goldbarg
Guy Gurfinkel
David Kelsey
Eden Klein
Seva Lapsha
Yaron Mazor
Alon Peled
Michael Spector
Keren Stern

*NOTE*: Successful elections are left open for a maximum of 60 days to
allow for processing of paperwork.  After that time the election will be
expired, regardless of its current status.  Should papework processing on
the part of the candidate take more time than allowed, a new election will
have to be held.

If you have any questions, please do not hesitate to contact your project
lead, PMC member, or the EMO 

___
pdt-dev mailing list
pdt-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/pdt-dev


Re: [pdt-dev] HTML validation

2009-02-05 Thread Marc Weber
On Wed, Feb 04, 2009 at 11:06:55PM -0500, beerfan wrote:
> Can anyone provide a link or instructions how to disable html
> validation for php files in Eclipse 3.3.2? I've unchecked the "HTML
> Syntax Validator" and "HTML Syntax Validator (for PHP Files)" options
> in the validation settings but html validation is still being done.

Goto the Package Explorer on the left, alt/meta + enter on the project
folder
On the left bottom you'll see "Validation". I hope this is what you're
looking for

Marc
___
pdt-dev mailing list
pdt-dev@eclipse.org
https://dev.eclipse.org/mailman/listinfo/pdt-dev