[JBoss JIRA] (TOOLSDOC-288) Missing instructions for simple JSP web application
by Michelle Murray (JIRA)
Michelle Murray created TOOLSDOC-288:
----------------------------------------
Summary: Missing instructions for simple JSP web application
Key: TOOLSDOC-288
URL: https://issues.jboss.org/browse/TOOLSDOC-288
Project: Documentation for JBoss Tools and Developer Studio
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Getting Started Guide
Environment: Fedora 17 x86_64
Reporter: Michelle Murray
Assignee: Isaac Rooskov
About: Guide 5.0.1, Chapter 9 outlines how to develop a simple JSP web application.
Issue: I followed the steps in this chapter without issue up to section 9.2.2. This next section describes the web.xml file. It states that "When you are creating web project the wizard creates the web.xml file for you automatically." But the web.xml file had not been automatically created in my jsphello project.
Workaround: Back in 9.1, Setting Up the Project, an extra step needs to be added to the instructions. The current final bullet point of these instructions should be split into multiple bullets as follow:
Then select Minimal Configuration from the list of possible configurations and click Next twice to move through the Java window to the Web Module Window.
Select the Generate web.xml deployment descriptor and Click Finish.
This additional step creates a web.xml file within the WebContent/WEB_INF directory. It appears that the contents of this web.xml file fits that of the one shown in Figure 9.6.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] (TOOLSDOC-289) Adhering to Red Hat and IBM writing styles
by Michelle Murray (JIRA)
Michelle Murray created TOOLSDOC-289:
----------------------------------------
Summary: Adhering to Red Hat and IBM writing styles
Key: TOOLSDOC-289
URL: https://issues.jboss.org/browse/TOOLSDOC-289
Project: Documentation for JBoss Tools and Developer Studio
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Getting Started Guide
Reporter: Michelle Murray
Assignee: Isaac Rooskov
About: JBDS Getting Started Guide, 5.0.1
Issue: The following do not adhere to the Red Hat or IBM writing styles
[1.1,P2,L2] OS > operating system
[Table1.1,R4,C2] Web pages > web pages
[1.2,P3,L1] just > omit
[3.1.1,P1,L1] you should follow > follow
[3.1.1,B3,L1] Please > omit
[3.1.1,B3,L2] you've > you have
[3.1.1,Note,L3] i.e. > that is
[3.2.2,B2] in a terminal window > on the command line
[3.2.2] you launch JBoss > you start JBoss
[4.2.1,Operating System] reports the Operating System > operating system
[4.2.1,Linux distribution version] as the Operating System > operating system
[5.1,After Fig5.6, P1, L1] go to Section > see Section
[5.2,After Fig5.14,P1,L2] A screen will then appear > A window will then open
[5.2,After Fig5.19,P1,L2] button that appears. > button in the window that opens.
[7.1,After Fig7.3] should now appear > should now be visible
[7.2,B1] right click > right-click the server's name
[7.3,P1,L1] right click > right-click
[7.3,P1,L1] press Stop. > select Stop.
[9,P1,L1] you'll > you will
[9,P2,L1] We'll assume that > It will be assumed that
[9.1,P1,L1] i.e. > that is
[9.1,P1,L2] Thus this section will perform you all necessary steps on how to do this. > omit?
[9.1,After Fig9.1] should appear > should be visible
[9.2,B1] Right click > Right-click
[9.2.1,P1,L1] Let's now make a little change so that a JSP page displays “Hello World!” message. > To edit the JSP page so that it displays the “Hello World!” message, insert the following line inside the <body> </body> tags: ...
[9.2.2,After Fig9.6,P1,L1] Let's add > To add ...:
[9.2.3.1,After Fig9.7] Right click > Right-click
[9.2.3.1,After Fig9.7] select New Archive -> JAR
[9.2.4,B1] e.g. > For example, insert this piece of code
[9.2.5,B2] right click > right-click
[9.2.5,B2] haven't > have not
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] (TOOLSDOC-287) Alternatives command needs a priority number to work
by Michelle Murray (JIRA)
Michelle Murray created TOOLSDOC-287:
----------------------------------------
Summary: Alternatives command needs a priority number to work
Key: TOOLSDOC-287
URL: https://issues.jboss.org/browse/TOOLSDOC-287
Project: Documentation for JBoss Tools and Developer Studio
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Getting Started Guide
Environment: Fedora 17 x86_64
Reporter: Michelle Murray
Assignee: Isaac Rooskov
About: The second Note in 3.1.1 gives information about using the alternatives command to add JDK.
Issue: These instructions did not work for me using alternatives version 1.3.59. I made the assumption that each sudo command should be input separately so perhaps this is where I went wrong. The use of the given commands, with jdk1.6.0_24 changed for update 37, resulted in the instructions for using the alternatives commands being output on the command line as below:
--------------------------------------------------------------------------
{noformat}[mmurray@dhcp-0-244 ~]$ sudo /usr/sbin/alternatives --install "/usr/bin/java" "java" "/usr/java/jdk1.6.0_37/bin/java"
alternatives version 1.3.59 - Copyright (C) 2001 Red Hat, Inc.
This may be freely redistributed under the terms of the GNU Public License.
usage: alternatives --install <link> <name> <path> <priority>
[--initscript <service>]
[--slave <link> <name> <path>]*
alternatives --remove <name> <path>
alternatives --auto <name>
alternatives --config <name>
alternatives --display <name>
alternatives --set <name> <path>
common options: --verbose --test --help --usage --version
--altdir <directory> --admindir <directory>{noformat}
--------------------------------------------------------------------------
Workaround: To get the instructions to work, I added a priority number to the end of each 'alternatives install' command as per the alternatives man page. For example,
{noformat}sudo alternatives --install "/usr/bin/java" "java" "/usr/java/jdk1.6.0_37/bin/java" 2000{noformat}
{noformat}sudo alternatives --install "/usr/bin/javac" "javac" "/usr/java/jdk1.6.0_37/bin/javac" 2000{noformat}
{noformat}sudo alternatives --install "/usr/lib/jvm/java-1.6.0" "java_sdk_1.6.0" "/usr/java/jdk1.6.0_37" 2000{noformat}
I was unsure what number to pick for the priority and randomly put 2000. I ran each sudo command separately.
Also, it appears that the quotation marks are not necessary in the command.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] (JBIDE-12959) JBoss Tools / JBDS Jenkins jobs should not send build notification email to jbosstools-dev@ list
by Nick Boldt (JIRA)
Nick Boldt created JBIDE-12959:
----------------------------------
Summary: JBoss Tools / JBDS Jenkins jobs should not send build notification email to jbosstools-dev@ list
Key: JBIDE-12959
URL: https://issues.jboss.org/browse/JBIDE-12959
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Build/Releng
Affects Versions: 4.0.0.CR1
Reporter: Nick Boldt
Assignee: Nick Boldt
Fix For: 4.0.0.CR1
{quote}
(2012-10-29 16:12:12) maxandersen: nickboldt: now that we are on github could we please stop the mailing of jenkins builds to jbosstools-dev ?
(2012-10-29 16:12:41) maxandersen: nickboldt: even if still svn - the spamming of jbosstools-dev of *all* build failures hurts more than it does good.
{quote}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] (JBIDE-12907) BYOE is enforcing branding
by Max Rydahl Andersen (JIRA)
Max Rydahl Andersen created JBIDE-12907:
-------------------------------------------
Summary: BYOE is enforcing branding
Key: JBIDE-12907
URL: https://issues.jboss.org/browse/JBIDE-12907
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: updatesite
Environment:
Reporter: Max Rydahl Andersen
Assignee: Nick Boldt
Fix For: 4.0.0.Beta1
* Install Eclipse Juno
* Install BYOE feature
ASSERT: on restart that it is still Eclipse Juno
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months