As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
Is there a comprehensive guide on how to use eclipse with zendframework?
I want to find information about the following:
How to debug the zendframework project.
How to use dojo/jQuery with it.
How to create shortcuts which will make me productive.
How to debug the project Unit testing with Zendstudio
How to step into and step over with the project
How to deploy project once I finished it..
And much more..
I cant find any information. I havent found a single book on Zend Studio.
See the Zend Studio 9 User Guide which is found on the Zend Studio Resources page.
It covers
Creating and debugging ZF projects
Using jQuery in your projects, javascript debugging, and prototype
Setting up and using dojo
Using PHPUnit Testing
Using the debugger, including code stepping
Deploying an application, updating it and managing deploy targets
Beyond that of course the zf reference guide is a good place for information on using the actual ZF libraries like Dojo etc, the user guide just shows you how to get the features into your project, but not much on actually using them.
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I'm about to start small project using play2 and curious if there are any other sample applications available except ones which are coming together with play distribution.
There are a lot sample applications on GitHub. I member just a few ones:
Sample applications from the Play for Scala book
Guardian Website
Using freemarker as template engine with Play 2
example webapp which generates a iOS Passbook Pass using passkit4j and Play! Framework 2.0.4
WebPipe - play2 and command line tools
A friend of mine wrote a little sharing project with play2 and scalate (jade templates), hope this will help you https://github.com/4e6/play2-filesharing
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am little bit new in field of eclipse and I am trying to write a plugin for eclipse
which can provide a main menu with one sub menu NVIDIA VISUAL PROFILER.After clicking
on which it should profile my application. Can anybody suggest some good tutorial or
any such type of PLUGIN which can give me some idea.
As #BenC mentioned, Nsight Eclipse Edition has complete Visual Profiler integrated as a part of the whole IDE experience.
NVIDIA tools team does not provide Visual Profiler as a standalone component that can be integrated in Eclipse products. All that can be done with current Visual Profiler is calling it from the command line (e.g. by using java.lang.ProcessBuilder). You do not even need to create a plugin for this as you may leverage existing "External Tools" facilities.
Please let us know more about specific requirements you have for integrating Visual Profiler in your Eclipse workbench.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm starting using Selenium webdriver to write auto test scripts for an ajax website mainly on Chromedriver by using JAVA. The website is coded by using HTML 5. it's actually a website mainly used on mobile devices like iphone, android.
I don't know which framework to choose. I saw TestNG, JUnit. And someone suggested me to use Fitness.
I'm confused on choosing a proper framework.
Can anyone give me some suggestions? thanks in advance.
This is a question on opinions, there's no definite answer. You should go with the framework that fits you best.
JUnit is generally (from my point of view) considered more standard to Java testing and is usually integrated to Java IDEs, but TestNG has some advanced features one might like (and its integration is usually very easy, too). FitNesse is a different story, the tests in it are written quite differently. In JUnit and TestNG, you write the test cases in plain Java, but FitNesse works ... different. And it's by far the least common.
All those frameworks work well with Selenium, you can find examples on all of them all over the internet.
If you're really just starting with WebDriver and Java, go for JUnit, as it's usage won't limit you for a very long time and it's quite easy to begin with.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
My friend thinks that Drupal is a much better framework than Zend, I however, think it's an unfair comparison. What are your thoughts?
They are two different products altogether. Drupal is not a framework, it is a Content Management System. This allows for distributed publishing, workflow and much more. It can be extended through plugins to provide additional functionality.
Zend Framework is a web application framework. It gives a common set of tools, services and code that can be used to build a site. It does not give you a site unless you put these items to some use first.
Think of it this way:
If you wanted to build a Content Management System like Drupal from scratch, you would use a Web Application Framework like Zend Framework to shortcut a lot of the standard elements you would need such as session management, email, database abstraction layer etc.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I just downloaded a demo of Zend Studio and it looks remarkably like Eclipse. I was wondering if they were built on top of the same libraries or if the developers just stole the look and feel to make it more user friendly on developers familiar with Eclipse.
If they are built off the same libraries or framework, which ones? I ask cause I'm interested if their is an IDE builder. A way to quickly create your own IDEs for instance. Thanks
Zend Studio is built off of Eclipse, that's why it looks similar. From the Zend Studio website:
Zend Studio is the most up-to-date PHP
IDE that supports the latest
technologies such as PHP 5.3, Zend
Framework, and the latest Eclipse
Platform (Helios) ensuring your
environment is always up to date with
the latest advancements. You can also
use Zend Studio to easily build rich
PHP-based Ajax applications thanks to
extensive JavaScript support.
You can find a list of other Eclipse-based software on Wikipedia.