JBoss Tools SVN: r29264 - trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n.
by jbosstools-commits@lists.jboss.org
Author: mareshkau
Date: 2011-02-22 11:30:44 -0500 (Tue, 22 Feb 2011)
New Revision: 29264
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidator.java
Log:
https://issues.jboss.org/browse/JBIDE-8459
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java 2011-02-22 15:00:17 UTC (rev 29263)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java 2011-02-22 16:30:44 UTC (rev 29264)
@@ -35,7 +35,7 @@
*/
public class I18nMarkerResolution implements IMarkerResolution {
- private String invalidString="";
+ private String invalidString=""; //$NON-NLS-1$
public I18nMarkerResolution(IMarker marker) {
try {
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidator.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidator.java 2011-02-22 15:00:17 UTC (rev 29263)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidator.java 2011-02-22 16:30:44 UTC (rev 29264)
@@ -10,23 +10,30 @@
******************************************************************************/
package org.jboss.tools.jsf.web.validation.i18n;
+import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
-
+import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IRegion;
import org.eclipse.wst.sse.ui.internal.reconcile.validator.ISourceValidator;
+import org.eclipse.wst.validation.ValidationResult;
+import org.eclipse.wst.validation.ValidationState;
import org.eclipse.wst.validation.internal.core.Message;
import org.eclipse.wst.validation.internal.core.ValidationException;
import org.eclipse.wst.validation.internal.provisional.core.IReporter;
import org.eclipse.wst.validation.internal.provisional.core.IValidationContext;
import org.eclipse.wst.validation.internal.provisional.core.IValidator;
-import org.eclipse.wst.xml.core.internal.validation.eclipse.Validator;
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocument;
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMText;
+import org.eclipse.wst.xml.core.internal.validation.XMLValidationInfo;
+import org.eclipse.wst.xml.core.internal.validation.core.NestedValidatorContext;
+import org.eclipse.wst.xml.core.internal.validation.core.ValidationReport;
+import org.eclipse.wst.xml.core.internal.validation.eclipse.Validator;
import org.jboss.tools.jsf.JSFModelPlugin;
import org.jboss.tools.jsf.jsf2.model.JSF2ComponentModelManager;
import org.jboss.tools.jsf.jsf2.util.JSF2ResourceUtil;
@@ -46,6 +53,8 @@
@SuppressWarnings("restriction")
public class I18nValidator extends Validator implements ISourceValidator, IValidator{
private IDOMDocument document;
+
+
public void connect(IDocument document) {
this.document=JSF2ComponentModelManager
.getReadableDOMDocument(document);
@@ -64,17 +73,37 @@
// TODO Auto-generated method stub
}
-
+ @Override
+ public ValidationResult validate(IResource resource, int kind, ValidationState state, IProgressMonitor monitor){
+ if(resource instanceof IFile)
+ this.document= JSF2ComponentModelManager
+ .getReadableDOMDocument((IFile) resource);
+ return super.validate(resource, kind, state, monitor);
+ }
+
+ @Override
+ public ValidationReport validate(String uri, InputStream inputstream,
+ NestedValidatorContext context, ValidationResult result) {
+ XMLValidationInfo xmlValidationInfo = new XMLValidationInfo(uri);
+ List<IJSFValidationComponent> jsfnonValComponents = new ArrayList<IJSFValidationComponent>();
+ validateDOM(document, jsfnonValComponents);
+ for (IJSFValidationComponent ijsfValidationComponent : jsfnonValComponents) {
+ xmlValidationInfo.addWarning(ijsfValidationComponent.getValidationMessage(),
+ ijsfValidationComponent.getLine(), 0, uri, null, ijsfValidationComponent.getMessageParams());
+ }
+ return xmlValidationInfo;
+ }
+ @Override
public void validate(IValidationContext helper, IReporter reporter)
throws ValidationException {
List<IJSFValidationComponent> jsfnonValComponents = new ArrayList<IJSFValidationComponent>();
validateDOM(document, jsfnonValComponents);
- reportProblems(helper, reporter, jsfnonValComponents);
+ IResource resource = JSF2ResourceUtil.getValidatingResource(helper);
+ reportProblems(resource, reporter, jsfnonValComponents);
}
- private void reportProblems(IValidationContext helper, IReporter reporter,
+ private void reportProblems(IResource resource, IReporter reporter,
List<IJSFValidationComponent> jsfValComponents ) {
- IResource resource = JSF2ResourceUtil.getValidatingResource(helper);
if(resource==null) return;
try {
resource.deleteMarkers(I18nValidationComponent.PROBLEM_ID, false, IResource.DEPTH_INFINITE);
13 years, 10 months
JBoss Tools SVN: r29263 - in trunk/forge/plugins/org.jboss.tools.seam.forge: src/org/jboss/tools/seam/forge and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2011-02-22 10:00:17 -0500 (Tue, 22 Feb 2011)
New Revision: 29263
Added:
trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/CommandRecorder.java
trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/importer/
trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/importer/ProjectImporter.java
trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/importer/ProjectRecord.java
Modified:
trunk/forge/plugins/org.jboss.tools.seam.forge/META-INF/MANIFEST.MF
trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/Console.java
trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/StreamListener.java
Log:
work on import project
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/META-INF/MANIFEST.MF
===================================================================
--- trunk/forge/plugins/org.jboss.tools.seam.forge/META-INF/MANIFEST.MF 2011-02-22 14:31:53 UTC (rev 29262)
+++ trunk/forge/plugins/org.jboss.tools.seam.forge/META-INF/MANIFEST.MF 2011-02-22 15:00:17 UTC (rev 29263)
@@ -11,7 +11,8 @@
org.eclipse.jdt.launching;bundle-version="3.5.100",
org.eclipse.core.variables;bundle-version="3.2.400",
org.eclipse.ui.editors;bundle-version="3.6.1",
- org.eclipse.ui.ide;bundle-version="3.6.1"
+ org.eclipse.ui.ide;bundle-version="3.6.1",
+ org.maven.ide.eclipse;bundle-version="0.12.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ActivationPolicy: lazy
Bundle-Activator: org.jboss.tools.seam.forge.Activator
Added: trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/CommandRecorder.java
===================================================================
--- trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/CommandRecorder.java (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/CommandRecorder.java 2011-02-22 15:00:17 UTC (rev 29263)
@@ -0,0 +1,70 @@
+package org.jboss.tools.seam.forge.console;
+
+import org.eclipse.jface.text.DocumentEvent;
+import org.eclipse.jface.text.IDocumentListener;
+
+public class CommandRecorder implements IDocumentListener {
+
+ private StringBuffer buffer = new StringBuffer();
+ private String beforePrompt = null;
+ private String currentPrompt = null;
+ private String currentCommand = null;
+
+ @Override
+ public void documentAboutToBeChanged(DocumentEvent event) {
+ }
+
+ @Override
+ public void documentChanged(DocumentEvent event) {
+ if (event.getLength() == 1 && "".equals(event.getText())) {
+ buffer.setLength(buffer.length() - 1);
+ } else {
+ buffer.append(event.getText());
+ String newPrompt = getNewPrompt();
+ if (newPrompt != null) {
+ currentPrompt = newPrompt;
+ beforePrompt = buffer.substring(0, buffer.length() - newPrompt.length());
+ buffer.setLength(0);
+ if (currentCommand != null) {
+ postProcessCurrentCommand();
+ currentCommand = null;
+ }
+ } else {
+ if (currentPrompt != null) {
+ String newCommand = getNewCommand();
+ if (newCommand != null) {
+ currentCommand = newCommand;
+ }
+ }
+ }
+ }
+ }
+
+ private String getNewPrompt() {
+ int lastLineBreak = buffer.lastIndexOf("\n");
+ if (lastLineBreak == -1) return null;
+ String lastLine = buffer.substring(lastLineBreak + 1);
+ if (lastLine.length() == 0) return null;
+ if (lastLine.charAt(0) != '[') return null;
+ int rightBracketIndex = lastLine.indexOf(']');
+ if (rightBracketIndex == -1) return null;
+ return lastLine.endsWith("$ ") ? lastLine : null;
+ }
+
+ private String getNewCommand() {
+ String candidateCommand = buffer.toString();
+ if ("pwd".equals(candidateCommand)) {
+ return "pwd";
+ } else if ("new-project".equals(candidateCommand)) {
+ return "new-project";
+ } else {
+ return null;
+ }
+ }
+
+ private void postProcessCurrentCommand() {
+ System.out.println("post processing current command : " + currentCommand);
+ System.out.println("beforePrompt :\n" + beforePrompt);
+ }
+
+}
Property changes on: trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/CommandRecorder.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/Console.java
===================================================================
--- trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/Console.java 2011-02-22 14:31:53 UTC (rev 29262)
+++ trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/Console.java 2011-02-22 15:00:17 UTC (rev 29263)
@@ -29,10 +29,15 @@
this.process = process;
initInputStream();
initPartitioner();
+ initCommandRecorder();
initOutputStream();
initInputReadJob();
}
+ private void initCommandRecorder() {
+ getDocument().addDocumentListener(new CommandRecorder());
+ }
+
private void initInputStream() {
inputStream = new ConsoleInputStream();
}
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/StreamListener.java
===================================================================
--- trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/StreamListener.java 2011-02-22 14:31:53 UTC (rev 29262)
+++ trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/StreamListener.java 2011-02-22 15:00:17 UTC (rev 29263)
@@ -9,6 +9,8 @@
class StreamListener implements IStreamListener {
private ConsoleOutputStream stream;
+ private StringBuffer buffer = new StringBuffer();
+ private boolean creatingProject = false;
StreamListener(ConsoleOutputStream stream) {
this.stream = stream;
@@ -16,11 +18,27 @@
public void streamAppended(String text, IStreamMonitor streamMonitor) {
try {
+ buffer.append(text);
+ if (buffer.indexOf("new-project") != -1) {
+ creatingProject = true;
+ }
stream.write(text);
+ if (creatingProject
+ && (text.indexOf('\n') != -1)
+ && (buffer.indexOf("Created project [") != -1)
+ && (buffer.indexOf("] in new working directory [") != -1)) {
+ postProcessCreatedProject(buffer.toString());
+ creatingProject = false;
+ buffer = new StringBuffer();
+ }
} catch (IOException e) {
Activator.log(e);
}
}
+
+ private void postProcessCreatedProject(String command) {
+ System.out.println("processing created project: \n" + command);
+ }
}
Added: trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/importer/ProjectImporter.java
===================================================================
--- trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/importer/ProjectImporter.java (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/importer/ProjectImporter.java 2011-02-22 15:00:17 UTC (rev 29263)
@@ -0,0 +1,26 @@
+package org.jboss.tools.seam.forge.importer;
+
+import java.io.File;
+
+import org.eclipse.core.runtime.jobs.Job;
+import org.maven.ide.eclipse.MavenPlugin;
+import org.maven.ide.eclipse.project.LocalProjectScanner;
+
+
+public class ProjectImporter {
+
+ LocalProjectScanner localProjectScanner;
+
+ File workspaceRoot;
+
+
+ public void importProject() {
+
+ MavenPlugin mavenPlugin = MavenPlugin.getDefault();
+
+// Job job = new org.maven.ide.eclipse.internal.project.
+
+// localProjectScanner = new LocalProjectScanner
+ }
+
+}
Property changes on: trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/importer/ProjectImporter.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/importer/ProjectRecord.java
===================================================================
--- trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/importer/ProjectRecord.java (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/importer/ProjectRecord.java 2011-02-22 15:00:17 UTC (rev 29263)
@@ -0,0 +1,77 @@
+package org.jboss.tools.seam.forge.importer;
+
+import java.io.File;
+
+import org.eclipse.core.resources.IProjectDescription;
+import org.eclipse.core.resources.ResourcesPlugin;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IPath;
+import org.eclipse.core.runtime.Path;
+import org.eclipse.core.runtime.Platform;
+
+public class ProjectRecord {
+
+ File projectFile;
+
+ String projectName;
+
+ IProjectDescription description;
+
+ /**
+ * Create a record for a project based on the info in the file.
+ *
+ * @param file
+ */
+ ProjectRecord(File file) {
+ projectFile = file;
+ setProjectName();
+ }
+
+ /**
+ * Set the name of the project based on the projectFile.
+ */
+ private void setProjectName() {
+ IProjectDescription newDescription = null;
+ try {
+ IPath path = new Path(projectFile.getPath());
+ // if the file is in the default location, use the directory
+ // name as the project name
+ newDescription = ResourcesPlugin.getWorkspace().loadProjectDescription(path);
+
+ if(isDefaultLocation(path)) {
+ // projectName = path.segment(path.segmentCount() - 2);
+ // newDescription = ResourcesPlugin.getWorkspace().newProjectDescription(projectName);
+ }
+ } catch(CoreException e) {
+ // no good couldn't get the name
+ }
+
+ if(newDescription == null) {
+ this.description = null;
+ projectName = ""; //$NON-NLS-1$
+ } else {
+ this.description = newDescription;
+ projectName = this.description.getName();
+ }
+ }
+
+ /**
+ * Returns whether the given project description file path is in the default location for a project
+ *
+ * @param path The path to examine
+ * @return Whether the given path is the default location for a project
+ */
+ private boolean isDefaultLocation(IPath path) {
+ // The project description file must at least be within the project, which is within the workspace location
+ return path.segmentCount() > 1 && path.removeLastSegments(2).toFile().equals(Platform.getLocation().toFile());
+ }
+
+ /**
+ * Get the name of the project
+ *
+ * @return String
+ */
+ public String getProjectName() {
+ return projectName;
+ }
+}
Property changes on: trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/importer/ProjectRecord.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
13 years, 10 months
JBoss Tools SVN: r29262 - trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/action.
by jbosstools-commits@lists.jboss.org
Author: dmaliarevich
Date: 2011-02-22 09:31:53 -0500 (Tue, 22 Feb 2011)
New Revision: 29262
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/action/CreateJSF2CompositeAction.java
Log:
https://issues.jboss.org/browse/JBIDE-6267 , required taglibs were added to the composite file.
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/action/CreateJSF2CompositeAction.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/action/CreateJSF2CompositeAction.java 2011-02-22 10:25:25 UTC (rev 29261)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/action/CreateJSF2CompositeAction.java 2011-02-22 14:31:53 UTC (rev 29262)
@@ -12,8 +12,13 @@
import java.io.ByteArrayInputStream;
import java.io.IOException;
+import java.util.HashMap;
+import java.util.HashSet;
import java.util.List;
+import java.util.Map;
import java.util.Properties;
+import java.util.Set;
+import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.eclipse.core.resources.IFile;
@@ -32,6 +37,7 @@
import org.eclipse.jface.window.Window;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.part.FileEditorInput;
import org.eclipse.wst.sse.core.StructuredModelManager;
import org.eclipse.wst.sse.core.internal.provisional.IModelManager;
import org.eclipse.wst.sse.core.internal.provisional.IStructuredModel;
@@ -49,9 +55,9 @@
import org.jboss.tools.jst.jsp.jspeditor.dnd.PaletteTaglibInserter;
import org.jboss.tools.jst.web.tld.TaglibData;
import org.jboss.tools.jst.web.tld.URIConstants;
-import org.w3c.dom.Node;
+import org.w3c.dom.Element;
+import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.NodeList;
-import org.w3c.dom.Text;
public class CreateJSF2CompositeAction extends Action {
@@ -171,11 +177,55 @@
* Add required taglibs to the composite file
*/
IVisualContext context = editor.getJspEditor().getPageContext();
- List<TaglibData> taglibs = null;
+ List<TaglibData> tl = null;
if (context instanceof SourceEditorPageContext) {
SourceEditorPageContext sourcePageContext = (SourceEditorPageContext) context;
- taglibs = sourcePageContext.getTagLibs();
+ /*
+ * Get taglibs from the source file
+ */
+ tl = sourcePageContext.getTagLibs();
+ Map<String, String> sourceTaglibs = new HashMap<String, String>();
+ Map<String, String> requiredTaglibs = new HashMap<String, String>();
+ Set<String> compositeTaglibs = new HashSet<String>();
+ for (TaglibData taglibData : tl) {
+ sourceTaglibs.put(taglibData.getPrefix(), taglibData.getUri());
+ }
+ /*
+ * Parse selected fragment to find used taglibs
+ */
+ Pattern p = Pattern.compile("<([a-zA-Z]+\\d*)+:"); //$NON-NLS-1$
+ Matcher m = p.matcher(text);
+ while (m.find()) {
+ if (sourceTaglibs.keySet().contains(m.group(1))
+ && !requiredTaglibs.keySet().contains(m.group(1))) {
+ requiredTaglibs.put(m.group(1), sourceTaglibs.get(m.group(1)));
+ }
+ }
+ /*
+ * Get the <html> tag of the created file
+ */
+ list = document.getElementsByTagName("html"); //$NON-NLS-1$
+ if (list.getLength() == 1) {
+ Element html = ((Element)list.item(0));
+ NamedNodeMap map = html.getAttributes();
+ for (int i = 0; i < map.getLength(); i++) {
+ compositeTaglibs.add(map.item(i).getNodeName());
+ }
+ for (String key : requiredTaglibs.keySet()) {
+ String xmlns = "xmlns:"+key; //$NON-NLS-1$
+ if (!compositeTaglibs.contains(xmlns)) {
+ html.setAttribute(xmlns, requiredTaglibs.get(key));
+ }
+ }
+ }
}
+ /*
+ * Open created file
+ */
+ FileEditorInput input = new FileEditorInput(createdFile);
+ JSPMultiPageEditor part = (JSPMultiPageEditor) PlatformUI
+ .getWorkbench().getActiveWorkbenchWindow().getActivePage()
+ .openEditor(input, "org.jboss.tools.jst.jsp.jspeditor.JSPTextEditor", true); //$NON-NLS-1$
}
}
} catch (CoreException e) {
13 years, 10 months
JBoss Tools SVN: r29261 - in trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation: i18n and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: mareshkau
Date: 2011-02-22 05:25:25 -0500 (Tue, 22 Feb 2011)
New Revision: 29261
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/LocalizedMessage.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidationComponent.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/util/JSF2ValidatorConstants.java
Log:
https://issues.jboss.org/browse/JBIDE-7003, quick fix has been added
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/LocalizedMessage.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/LocalizedMessage.java 2011-02-22 09:15:40 UTC (rev 29260)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/LocalizedMessage.java 2011-02-22 10:25:25 UTC (rev 29261)
@@ -80,6 +80,8 @@
i18nLocMessage.setAttribute(IMarker.SEVERITY, 1);
i18nLocMessage.setAttribute(ValidatorMessage.ValidationId, "org.jboss.tools.jsf.i18n.source"); //$NON-NLS-1$
i18nLocMessage.setAttribute(IMarker.MESSAGE,i18nLocMessage.getText());
+ i18nLocMessage.setAttribute(JSF2ValidatorConstants.PROBLEM_LENGHT, i18nLocMessage.getLength());
+ i18nLocMessage.setAttribute(JSF2ValidatorConstants.PROBLEM_OFFSET, i18nLocMessage.getOffset());
if(ijsfValidationComponent instanceof I18nValidationComponent){
i18nLocMessage.setAttribute(JSF2ValidatorConstants.INVALID_STRING_KEY,
((I18nValidationComponent)ijsfValidationComponent).getInValidString());
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java 2011-02-22 09:15:40 UTC (rev 29260)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java 2011-02-22 10:25:25 UTC (rev 29261)
@@ -14,10 +14,19 @@
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.runtime.CoreException;
+import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.IMarkerResolution;
+import org.eclipse.ui.PartInitException;
+import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.ide.IDE;
+import org.eclipse.ui.texteditor.ITextEditor;
+import org.eclipse.wst.sse.ui.StructuredTextEditor;
import org.jboss.tools.jsf.JSFModelPlugin;
import org.jboss.tools.jsf.messages.JSFUIMessages;
import org.jboss.tools.jsf.web.validation.jsf2.util.JSF2ValidatorConstants;
+import org.jboss.tools.jst.jsp.i18n.ExternalizeStringsDialog;
+import org.jboss.tools.jst.jsp.i18n.ExternalizeStringsWizard;
+import org.jboss.tools.jst.jsp.jspeditor.JSPMultiPageEditor;
/**
*
@@ -40,7 +49,22 @@
return MessageFormat.format(JSFUIMessages.NonExternalizedStringMarkerLabel,invalidString);
}
- public void run(IMarker marker) {
-
+ public void run(final IMarker marker) {
+ try {
+ IEditorPart editorPart = IDE.openEditor(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(), marker);
+ if(editorPart instanceof JSPMultiPageEditor){
+ StructuredTextEditor textEditor = ((JSPMultiPageEditor)editorPart).getSourceEditor();
+ textEditor.getTextViewer().setSelectedRange((Integer)marker.getAttribute(JSF2ValidatorConstants.PROBLEM_OFFSET),(Integer) marker.getAttribute(JSF2ValidatorConstants.PROBLEM_LENGHT));
+ ExternalizeStringsDialog dlg = new ExternalizeStringsDialog(
+ PlatformUI.getWorkbench().getDisplay().getActiveShell(),
+ new ExternalizeStringsWizard((ITextEditor)editorPart,
+ null));
+ dlg.open();
+ }
+ } catch (PartInitException e) {
+ JSFModelPlugin.getPluginLog().logError(e);
+ } catch (CoreException e) {
+ JSFModelPlugin.getPluginLog().logError(e);
+ }
}
}
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidationComponent.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidationComponent.java 2011-02-22 09:15:40 UTC (rev 29260)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidationComponent.java 2011-02-22 10:25:25 UTC (rev 29261)
@@ -14,7 +14,6 @@
import org.jboss.tools.jsf.JSFModelPlugin;
import org.jboss.tools.jsf.messages.JSFUIMessages;
import org.jboss.tools.jsf.web.validation.JSFAbstractValidationComponent;
-import org.w3c.dom.Node;
/**
* @author mareshkau
@@ -44,13 +43,11 @@
public String getType() {
- // TODO Auto-generated method stub
return null;
}
public String getComponentResourceLocation() {
- // TODO Auto-generated method stub
return null;
}
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/util/JSF2ValidatorConstants.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/util/JSF2ValidatorConstants.java 2011-02-22 09:15:40 UTC (rev 29260)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/util/JSF2ValidatorConstants.java 2011-02-22 10:25:25 UTC (rev 29261)
@@ -36,4 +36,8 @@
public static final String JSF2_URI_TYPE = "JSF2_URI_TYPE"; //$NON-NLS-1$
public static final String INVALID_STRING_KEY = "INVALID_STRING_KEY"; //$NON-NLS-1$
+
+ public static final String PROBLEM_OFFSET="PROBLEM_OFFSET"; //$NON-NLS-1$
+
+ public static final String PROBLEM_LENGHT="PROBLEM_LENGHT"; //$NON-NLS-1$
}
13 years, 10 months
JBoss Tools SVN: r29260 - in trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test: editor/tags and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2011-02-22 04:15:40 -0500 (Tue, 22 Feb 2011)
New Revision: 29260
Added:
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ColumnsTagTest.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ComboBoxTagTest.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/FileUploadTagTest.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/InplaceInputTagTest.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/InplaceSelectInputTagTest.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/PickListTagTest.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ProgressTagTest.java
Modified:
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAllBotTests.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAutoTestCase.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/RichFacesTagsTest.java
Log:
Added RichFaces tags tests
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAllBotTests.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAllBotTests.java 2011-02-21 22:22:27 UTC (rev 29259)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAllBotTests.java 2011-02-22 09:15:40 UTC (rev 29260)
@@ -33,9 +33,15 @@
import org.jboss.tools.vpe.ui.bot.test.editor.preferences.ShowResourceBundlesUsageasELexpressionsTest;
import org.jboss.tools.vpe.ui.bot.test.editor.preferences.ShowSelectionTagBarTest;
import org.jboss.tools.vpe.ui.bot.test.editor.selectionbar.SelectionBarTest;
+import org.jboss.tools.vpe.ui.bot.test.editor.tags.ColumnsTagTest;
+import org.jboss.tools.vpe.ui.bot.test.editor.tags.ComboBoxTagTest;
import org.jboss.tools.vpe.ui.bot.test.editor.tags.CoreHTMLTagsTest;
+import org.jboss.tools.vpe.ui.bot.test.editor.tags.FileUploadTagTest;
+import org.jboss.tools.vpe.ui.bot.test.editor.tags.InplaceInputTagTest;
+import org.jboss.tools.vpe.ui.bot.test.editor.tags.InplaceSelectInputTagTest;
import org.jboss.tools.vpe.ui.bot.test.editor.tags.JSFTagsTest;
-import org.jboss.tools.vpe.ui.bot.test.editor.tags.RichFacesTagsTest;
+import org.jboss.tools.vpe.ui.bot.test.editor.tags.PickListTagTest;
+import org.jboss.tools.vpe.ui.bot.test.editor.tags.ProgressTagTest;
import org.jboss.tools.vpe.ui.bot.test.jbide.JBIDE4556Test;
import org.jboss.tools.vpe.ui.bot.test.palette.CancelTagLibDefenitionTest;
import org.jboss.tools.vpe.ui.bot.test.palette.ImportTagsFromTLDFileTest;
@@ -100,7 +106,13 @@
suite.addTestSuite(TextSelectionTest.class);
suite.addTestSuite(CoreHTMLTagsTest.class);
suite.addTestSuite(JSFTagsTest.class);
- suite.addTestSuite(RichFacesTagsTest.class);
+ suite.addTestSuite(ColumnsTagTest.class);
+ suite.addTestSuite(ComboBoxTagTest.class);
+ suite.addTestSuite(FileUploadTagTest.class);
+ suite.addTestSuite(InplaceInputTagTest.class);
+ suite.addTestSuite(InplaceSelectInputTagTest.class);
+ suite.addTestSuite(PickListTagTest.class);
+ suite.addTestSuite(ProgressTagTest.class);
suite.addTestSuite(XhtmlFilePerformanceTest.class);
return new TestSetup(suite);
}
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAutoTestCase.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAutoTestCase.java 2011-02-21 22:22:27 UTC (rev 29259)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAutoTestCase.java 2011-02-22 09:15:40 UTC (rev 29260)
@@ -17,6 +17,7 @@
import org.eclipse.swtbot.swt.finder.exceptions.WidgetNotFoundException;
import org.eclipse.swtbot.swt.finder.finders.UIThreadRunnable;
import org.eclipse.swtbot.swt.finder.results.VoidResult;
+import org.eclipse.swtbot.swt.finder.widgets.SWTBotCheckBox;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTree;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem;
import org.jboss.tools.jst.jsp.jspeditor.JSPMultiPageEditor;
@@ -566,4 +567,36 @@
}
});
}
+ /**
+ * Creates new empty xhtml page within test project
+ * @param pageName
+ * @param subDirs - complete path to page location within workspace
+ */
+ protected void createXhtmlPage (String pageName , String... subDirs){
+ SWTBotTreeItem tiPageParent = null;
+ if (subDirs == null || subDirs.length == 0) {
+ tiPageParent = packageExplorer.selectTreeItem("pages", new String[] {VPEAutoTestCase.JBT_TEST_PROJECT_NAME,"WebContent"});
+ }
+ else{
+ String[] subPath = Arrays.copyOfRange(subDirs, 0, subDirs.length - 1);
+ tiPageParent = packageExplorer.selectTreeItem(subDirs[subDirs.length - 1], subPath);
+ }
+ tiPageParent.expand();
+ try {
+ tiPageParent.getNode(pageName).doubleClick();
+ } catch (WidgetNotFoundException e) {
+ open.newObject(ActionItem.NewObject.JBossToolsWebXHTMLFile.LABEL);
+ bot.shell(IDELabel.Shell.NEW_XHTML_FILE).activate();
+ bot.textWithLabel(ActionItem.NewObject.JBossToolsWebXHTMLFile.TEXT_FILE_NAME).setText(pageName);
+ bot.button(IDELabel.Button.NEXT).click();
+ SWTBotCheckBox cbUseTemplate = bot.checkBox(IDELabel.NewXHTMLFileDialog.USE_XHTML_TEMPLATE_CHECK_BOX);
+ if (cbUseTemplate.isChecked()){
+ cbUseTemplate.deselect();
+ }
+ bot.button(IDELabel.Button.FINISH).click();
+ }
+ bot.sleep(Timing.time2S());
+
+ }
+
}
Added: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ColumnsTagTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ColumnsTagTest.java (rev 0)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ColumnsTagTest.java 2011-02-22 09:15:40 UTC (rev 29260)
@@ -0,0 +1,81 @@
+/*******************************************************************************
+
+ * Copyright (c) 2007-2011 Exadel, Inc. and Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.vpe.ui.bot.test.editor.tags;
+
+/**
+ * Tests Rich Faces Columns Tag behavior
+ * @author vlado pakan
+ *
+ */
+public class ColumnsTagTest extends RichFacesTagsTest{
+ private static final String columnHeader = "Column Header";
+ private static final String columnValue = "Column Value";
+
+ @Override
+ protected void initPageContent() {
+ xhtmlEditor.setText("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n" +
+ "<ui:composition xmlns=\"http://www.w3.org/1999/xhtml\"\n" +
+ " xmlns:ui=\"http://java.sun.com/jsf/facelets\"\n" +
+ " xmlns:h=\"http://java.sun.com/jsf/html\"\n" +
+ " xmlns:f=\"http://java.sun.com/jsf/core\"\n" +
+ " xmlns:rich=\"http://richfaces.org/rich\"\n" +
+ " xmlns:a4j=\"http://richfaces.org/a4j\">\n" +
+ "<html>\n" +
+ " <head>\n" +
+ " </head>\n" +
+ " <body>\n" +
+ " <f:view>\n" +
+ " <rich:dataTable value=\"\" var=\"model\" width=\"750\">\n" +
+ " <rich:columns value=\"\" var=\"columns\" index=\"ind\">\n" +
+ " <f:facet name=\"header\">\n" +
+ " <h:outputText value=\"" + columnHeader + "\" />\n" +
+ " </f:facet>\n" +
+ " <h:outputText value=\"" + columnValue + "\"/> \n" +
+ " </rich:columns>\n" +
+ " </rich:dataTable>\n" +
+ " </f:view>\n" +
+ " </body>\n" +
+ "</html>\n" +
+ "</ui:composition>");
+ }
+
+ @Override
+ protected void verifyTag() {
+ assertVisualEditorContainsNodeWithValue(xhtmlWebBrowser,
+ columnHeader,
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ assertVisualEditorContainsNodeWithValue(xhtmlWebBrowser,
+ columnValue,
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ assertVisualEditorContains(xhtmlWebBrowser,
+ "TR",
+ new String[]{"class"},
+ new String[]{"dr-table-subheader rich-table-subheader"},
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ assertVisualEditorContains(xhtmlWebBrowser,
+ "TD",
+ new String[]{"class"},
+ new String[]{"dr-table-subheadercell rich-table-subheadercell"},
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ assertVisualEditorContains(xhtmlWebBrowser,
+ "TR",
+ new String[]{"class"},
+ new String[]{"dr-table-firstrow rich-table-firstrow"},
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ assertVisualEditorContains(xhtmlWebBrowser,
+ "TD",
+ new String[]{"class"},
+ new String[]{"dr-table-cell rich-table-cell"},
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ }
+
+}
Property changes on: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ColumnsTagTest.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ComboBoxTagTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ComboBoxTagTest.java (rev 0)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ComboBoxTagTest.java 2011-02-22 09:15:40 UTC (rev 29260)
@@ -0,0 +1,81 @@
+/*******************************************************************************
+
+ * Copyright (c) 2007-2011 Exadel, Inc. and Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.vpe.ui.bot.test.editor.tags;
+
+import org.jboss.tools.ui.bot.ext.Timing;
+
+/**
+ * Tests Rich Faces ComboBox Tag behavior
+ * @author vlado pakan
+ *
+ */
+public class ComboBoxTagTest extends RichFacesTagsTest{
+ private static final String defaultLabel = "DefaultLabel";
+
+ @Override
+ protected void initPageContent() {
+ jspEditor.setText("<%@ taglib uri=\"http://java.sun.com/jsf/html\" prefix=\"h\" %>\n" +
+ "<%@ taglib uri=\"http://java.sun.com/jsf/core\" prefix=\"f\" %>\n" +
+ "<%@ taglib uri=\"http://richfaces.org/rich\" prefix=\"rich\" %>\n" +
+ "<html>\n" +
+ " <head>\n" +
+ " </head>\n" +
+ " <body>\n" +
+ " <f:view>\n" +
+ " <h:form>\n" +
+ " <rich:comboBox id=\"comboBox\" defaultLabel=\"" + defaultLabel + "\">\n" +
+ " <f:selectItem itemValue=\"item 1\"/>\n" +
+ " <f:selectItem itemValue=\"item 2\"/>\n" +
+ " </rich:comboBox>\n" +
+ " </h:form>\n" +
+ " </f:view>\n" +
+ " </body>\n" +
+ "</html>");
+ }
+
+ @Override
+ protected void verifyTag() {
+ assertVisualEditorContains(jspWebBrowser,
+ "INPUT",
+ new String[]{"type","class","value"},
+ new String[]{"text","rich-combobox-font-disabled rich-combobox-input-inactive",defaultLabel},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContains(jspWebBrowser,
+ "INPUT",
+ new String[]{"type","class"},
+ new String[]{"text","rich-combobox-font-inactive rich-combobox-button-background rich-combobox-button-inactive"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContains(jspWebBrowser,
+ "INPUT",
+ new String[]{"type","class"},
+ new String[]{"text","rich-combobox-font-inactive rich-combobox-button-icon-inactive rich-combobox-button-inactive"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContains(jspWebBrowser,
+ "DIV",
+ new String[]{"class"},
+ new String[]{"rich-combobox-strut rich-combobox-font"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ // check tag selection
+ jspWebBrowser.selectDomNode(jspWebBrowser.getDomNodeByTagName("INPUT"), 0);
+ bot.sleep(Timing.time3S());
+ String selectedText = jspEditor.getSelection();
+ final String hasToStartWith = "<rich:comboBox";
+ assertTrue("Selected text in Source Pane has to start with '" + hasToStartWith + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().startsWith(hasToStartWith));
+ final String hasToEndWith = "</rich:comboBox>";
+ assertTrue("Selected text in Source Pane has to end with '" + hasToEndWith + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().endsWith(hasToEndWith));
+ }
+
+}
Property changes on: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ComboBoxTagTest.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/FileUploadTagTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/FileUploadTagTest.java (rev 0)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/FileUploadTagTest.java 2011-02-22 09:15:40 UTC (rev 29260)
@@ -0,0 +1,93 @@
+/*******************************************************************************
+
+ * Copyright (c) 2007-2011 Exadel, Inc. and Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.vpe.ui.bot.test.editor.tags;
+
+import org.jboss.tools.ui.bot.ext.Timing;
+
+/**
+ * Tests Rich Faces FileUpload Tag behavior
+ * @author vlado pakan
+ *
+ */
+public class FileUploadTagTest extends RichFacesTagsTest{
+ @Override
+ protected void initPageContent() {
+ jspEditor.setText("<%@ taglib uri=\"http://java.sun.com/jsf/html\" prefix=\"h\" %>\n" +
+ "<%@ taglib uri=\"http://java.sun.com/jsf/core\" prefix=\"f\" %>\n" +
+ "<%@ taglib uri=\"http://richfaces.org/rich\" prefix=\"rich\" %>\n" +
+ "<html>\n" +
+ " <head>\n" +
+ " </head>\n" +
+ " <body>\n" +
+ " <f:view>\n" +
+ " <rich:fileUpload fileUploadListener=\"\"\n"+
+ " maxFilesQuantity=\"1\" id=\"upload\"\n" +
+ " immediateUpload=\"false\"\n" +
+ " acceptedTypes=\"jpg\" style=\"width:500; height:500\">\n" +
+ " </rich:fileUpload>\n" +
+ " </f:view>\n" +
+ " </body>\n" +
+ "</html>");
+ }
+
+ @Override
+ protected void verifyTag() {
+ assertVisualEditorContains(jspWebBrowser,
+ "B",
+ new String[]{"title"},
+ new String[]{"rich:fileUpload fileUploadListener: maxFilesQuantity: 1 id: upload immediateUpload: false acceptedTypes: jpg style: width:500; height:500"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContains(jspWebBrowser,
+ "DIV",
+ new String[]{"class"},
+ new String[]{"rich-fileupload-list-decor"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContains(jspWebBrowser,
+ "DIV",
+ new String[]{"class"},
+ new String[]{"rich-fileupload-button-border"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContains(jspWebBrowser,
+ "DIV",
+ new String[]{"class"},
+ new String[]{"rich-fileupload-button rich-fileupload-font"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContains(jspWebBrowser,
+ "DIV",
+ new String[]{"class"},
+ new String[]{"rich-fileupload-button-content rich-fileupload-font rich-fileupload-ico rich-fileupload-ico-add"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContains(jspWebBrowser,
+ "DIV",
+ new String[]{"class"},
+ new String[]{"rich-fileupload-button-content rich-fileupload-font rich-fileupload-ico rich-fileupload-ico-start"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContains(jspWebBrowser,
+ "DIV",
+ new String[]{"class"},
+ new String[]{"rich-fileupload-button-content rich-fileupload-font rich-fileupload-ico rich-fileupload-ico-clear"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ // check tag selection
+ jspWebBrowser.selectDomNode(jspWebBrowser.getDomNodeByTagName("B",0), 0);
+ bot.sleep(Timing.time3S());
+ String selectedText = jspEditor.getSelection();
+ final String hasToStartWith = "<rich:fileUpload";
+ assertTrue("Selected text in Source Pane has to start with '" + hasToStartWith + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().startsWith(hasToStartWith));
+ final String hasEndWith = "</rich:fileUpload>";
+ assertTrue("Selected text in Source Pane has to end with '" + hasToStartWith + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().endsWith(hasEndWith));
+ }
+
+}
Property changes on: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/FileUploadTagTest.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/InplaceInputTagTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/InplaceInputTagTest.java (rev 0)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/InplaceInputTagTest.java 2011-02-22 09:15:40 UTC (rev 29260)
@@ -0,0 +1,76 @@
+/*******************************************************************************
+
+ * Copyright (c) 2007-2011 Exadel, Inc. and Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.vpe.ui.bot.test.editor.tags;
+
+import org.jboss.tools.ui.bot.ext.Timing;
+
+/**
+ * Tests Rich Faces InplaceInput Tag behavior
+ * @author vlado pakan
+ *
+ */
+public class InplaceInputTagTest extends RichFacesTagsTest{
+ private static final String defaultLabel = "DefaultLabel";
+ @Override
+ protected void initPageContent() {
+ jspEditor.setText("<%@ taglib uri=\"http://java.sun.com/jsf/html\" prefix=\"h\" %>\n" +
+ "<%@ taglib uri=\"http://java.sun.com/jsf/core\" prefix=\"f\" %>\n" +
+ "<%@ taglib uri=\"http://richfaces.org/rich\" prefix=\"rich\" %>\n" +
+ "<html>\n" +
+ " <head>\n" +
+ " </head>\n" +
+ " <body>\n" +
+ " <f:view>\n" +
+ " <rich:inplaceInput defaultLabel=\"" + defaultLabel+ "\"/>\n" +
+ " </f:view>\n" +
+ " </body>\n" +
+ "</html>");
+ }
+
+ @Override
+ protected void verifyTag() {
+ assertVisualEditorContains(jspWebBrowser,
+ "SPAN",
+ new String[]{"vpe-user-toggle-id","title","class"},
+ new String[]{"false","rich:inplaceInput defaultLabel: " + defaultLabel,"rich-inplace rich-inplace-view"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContainsNodeWithValue(jspWebBrowser,
+ defaultLabel,
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ // check tag selection
+ jspWebBrowser.selectDomNode(jspWebBrowser.getDomNodeByTagName("SPAN",2), 0);
+ bot.sleep(Timing.time3S());
+ String selectedText = jspEditor.getSelection();
+ final String expectedSelectedText = "<rich:inplaceInput defaultLabel=\"" + defaultLabel+ "\"/>";
+ assertTrue("Selected text in Source Pane has to be '" + expectedSelectedText + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().equals(expectedSelectedText));
+ jspWebBrowser.mouseClickOnNode(jspWebBrowser.getDomNodeByTagName("SPAN",2));
+ bot.sleep(Timing.time3S());
+ selectedText = jspEditor.getSelection();
+ assertVisualEditorContains(jspWebBrowser,
+ "SPAN",
+ new String[]{"vpe-user-toggle-id","class"},
+ new String[]{"true","rich-inplace rich-inplace-edit"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContains(jspWebBrowser,
+ "INPUT",
+ new String[]{"type","class","value"},
+ new String[]{"text","rich-inplace-field",defaultLabel},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertTrue("Selected text in Source Pane has to be '" + expectedSelectedText + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().equals(expectedSelectedText));
+
+ }
+
+}
Property changes on: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/InplaceInputTagTest.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/InplaceSelectInputTagTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/InplaceSelectInputTagTest.java (rev 0)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/InplaceSelectInputTagTest.java 2011-02-22 09:15:40 UTC (rev 29260)
@@ -0,0 +1,93 @@
+/*******************************************************************************
+
+ * Copyright (c) 2007-2011 Exadel, Inc. and Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.vpe.ui.bot.test.editor.tags;
+
+import org.jboss.tools.ui.bot.ext.Timing;
+
+/**
+ * Tests Rich Faces InplaceSelectInput Tag behavior
+ * @author vlado pakan
+ *
+ */
+public class InplaceSelectInputTagTest extends RichFacesTagsTest{
+ private static final String defaultLabel = "DefaultLabel";
+ private static final String option1 = "Option 1";
+ private static final String option2 = "Option 2";
+ @Override
+ protected void initPageContent() {
+ jspEditor.setText("<%@ taglib uri=\"http://java.sun.com/jsf/html\" prefix=\"h\" %>\n" +
+ "<%@ taglib uri=\"http://java.sun.com/jsf/core\" prefix=\"f\" %>\n" +
+ "<%@ taglib uri=\"http://richfaces.org/rich\" prefix=\"rich\" %>\n" +
+ "<html>\n" +
+ " <head>\n" +
+ " </head>\n" +
+ " <body>\n" +
+ " <f:view>\n" +
+ " <rich:inplaceSelect value=\"0\" defaultLabel=\"" + defaultLabel + "\">\n"+
+ " <f:selectItem itemValue=\"0\" itemLabel=\"" + option1 +"\" />\n" +
+ " <f:selectItem itemValue=\"1\" itemLabel=\"" + option2 +"\" />\n" +
+ " </rich:inplaceSelect>\n" +
+ " </f:view>\n" +
+ " </body>\n" +
+ "</html>");
+ }
+
+ @Override
+ protected void verifyTag() {
+ assertVisualEditorContains(jspWebBrowser,
+ "SPAN",
+ new String[]{"vpe-user-toggle-id","title","class"},
+ new String[]{"false","rich:inplaceSelect value: 0 defaultLabel: " + defaultLabel,"rich-inplace-select rich-inplace-select-view"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContainsNodeWithValue(jspWebBrowser,
+ defaultLabel,
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ // check tag selection
+ jspWebBrowser.selectDomNode(jspWebBrowser.getDomNodeByTagName("SPAN",2), 0);
+ bot.sleep(Timing.time3S());
+ String selectedText = jspEditor.getSelection();
+ final String hasToStartWith = "<rich:inplaceSelect value=\"0\" defaultLabel=\"" + defaultLabel + "\">";
+ assertTrue("Selected text in Source Pane has to start with '" + hasToStartWith + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().startsWith(hasToStartWith));
+ final String hasEndWith = "</rich:inplaceSelect>";
+ assertTrue("Selected text in Source Pane has to end with '" + hasToStartWith + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().endsWith(hasEndWith));
+ // Click on tag and check correct tag displaying
+ jspWebBrowser.mouseClickOnNode(jspWebBrowser.getDomNodeByTagName("SPAN",2));
+ bot.sleep(Timing.time3S());
+ assertVisualEditorContains(jspWebBrowser,
+ "SPAN",
+ new String[]{"vpe-user-toggle-id","class"},
+ new String[]{"true","rich-inplace-select rich-inplace-select-edit"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContainsNodeWithValue(jspWebBrowser,
+ option1,
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorContainsNodeWithValue(jspWebBrowser,
+ option2,
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ assertVisualEditorNotContainNodeWithValue(jspWebBrowser,
+ defaultLabel,
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ selectedText = jspEditor.getSelection();
+ // check tag selection
+ assertTrue("Selected text in Source Pane has to start with '" + hasToStartWith + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().startsWith(hasToStartWith));
+ assertTrue("Selected text in Source Pane has to end with '" + hasToStartWith + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().endsWith(hasEndWith));
+ }
+
+}
Property changes on: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/InplaceSelectInputTagTest.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/PickListTagTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/PickListTagTest.java (rev 0)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/PickListTagTest.java 2011-02-22 09:15:40 UTC (rev 29260)
@@ -0,0 +1,151 @@
+/*******************************************************************************
+
+ * Copyright (c) 2007-2011 Exadel, Inc. and Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.vpe.ui.bot.test.editor.tags;
+
+import org.jboss.tools.ui.bot.ext.Timing;
+
+/**
+ * Tests Rich Faces Pick List Tag behavior
+ * @author vlado pakan
+ *
+ */
+public class PickListTagTest extends RichFacesTagsTest{
+ private static final String[] options = new String[] {"Option0","Option1","Option2","Option3"};
+
+ @Override
+ protected void initPageContent() {
+ StringBuffer sbOptions = new StringBuffer("");
+ int index = 0;
+ for (String option : options){
+ sbOptions.append(" <f:selectItem itemLabel=\"");
+ sbOptions.append(option);
+ sbOptions.append("\" itemValue=\"");
+ sbOptions.append(index);
+ sbOptions.append("\" id=\"");
+ sbOptions.append("id" + index);
+ sbOptions.append("\"/>\n");
+ index++;
+ }
+ xhtmlEditor.setText("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n" +
+ "<ui:composition xmlns=\"http://www.w3.org/1999/xhtml\"\n" +
+ " xmlns:ui=\"http://java.sun.com/jsf/facelets\"\n" +
+ " xmlns:f=\"http://java.sun.com/jsf/core\"\n" +
+ " xmlns:rich=\"http://richfaces.org/rich\"\n" +
+ " xmlns:a4j=\"http://richfaces.org/a4j\">\n" +
+ "<html>\n" +
+ " <head>\n" +
+ " </head>\n" +
+ " <body>\n" +
+ " <f:view>\n" +
+ " <rich:pickList value=\"\">\n" +
+ sbOptions.toString() +
+ " </rich:pickList>\n" +
+ " </f:view>\n" +
+ " </body>\n" +
+ "</html>\n" +
+ "</ui:composition>");
+ }
+
+ @Override
+ protected void verifyTag() {
+ assertVisualEditorContainsNodeWithValue(xhtmlWebBrowser,
+ "Copy all",
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ assertVisualEditorContainsNodeWithValue(xhtmlWebBrowser,
+ "Copy",
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ assertVisualEditorContainsNodeWithValue(xhtmlWebBrowser,
+ "Remove All",
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ assertVisualEditorContainsNodeWithValue(xhtmlWebBrowser,
+ "Remove",
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ assertVisualEditorContains(xhtmlWebBrowser,
+ "TABLE",
+ new String[]{"class"},
+ new String[]{"rich-list-picklist"},
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ assertVisualEditorContains(xhtmlWebBrowser,
+ "TABLE",
+ new String[]{"class"},
+ new String[]{"rich-picklist-body"},
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ assertVisualEditorContains(xhtmlWebBrowser,
+ "TABLE",
+ new String[]{"class"},
+ new String[]{"rich-picklist-internal-tab"},
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ assertVisualEditorContains(xhtmlWebBrowser,
+ "TBODY",
+ null,
+ null,
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ int index = 0;
+ for (String option : options ){
+ assertVisualEditorContainsNodeWithValue(xhtmlWebBrowser,
+ option,
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ StringBuffer sbTitle = new StringBuffer("");
+ sbTitle.append("f:selectItem itemLabel: ");
+ sbTitle.append(option);
+ sbTitle.append(" itemValue: ");
+ sbTitle.append(index);
+ sbTitle.append(" id: id");
+ sbTitle.append(index);
+ assertVisualEditorContains(xhtmlWebBrowser,
+ "OPTION",
+ new String[]{"title"},
+ new String[]{sbTitle.toString()},
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ index++;
+ }
+ // check tag selection
+ xhtmlWebBrowser.selectDomNode(xhtmlWebBrowser.getDomNodeByTagName("TABLE",1), 0);
+ bot.sleep(Timing.time3S());
+ String selectedText = xhtmlEditor.getSelection();
+ String hasToStartWith = "<rich:pickList value=\"\">";
+ assertTrue("Selected text in Source Pane has to start with '" + hasToStartWith + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().startsWith(hasToStartWith));
+ String hasEndWith = "</rich:pickList>";
+ assertTrue("Selected text in Source Pane has to end with '" + hasToStartWith + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().endsWith(hasEndWith));
+ // select first item in VPE
+ xhtmlWebBrowser.selectDomNode(xhtmlWebBrowser.getDomNodeByTagName("OPTION",0), 0);
+ bot.sleep(Timing.time3S());
+ String currentLineText = xhtmlEditor.getTextOnCurrentLine();
+ StringBuffer sbOption = new StringBuffer("");
+ sbOption.append("<f:selectItem itemLabel=\"");
+ sbOption.append(options[0]);
+ sbOption.append("\" itemValue=\"0\" id=\"id0\"/>");
+ assertTrue("Current Line text in Source Pane has to be '" + sbOption.toString() + "'" +
+ "\nbut it is '" + currentLineText + "'",
+ currentLineText.trim().equals(sbOption.toString()));
+ // select second item in Source Editor
+ xhtmlEditor.setFocus();
+ xhtmlEditor.selectRange(xhtmlEditor.cursorPosition().line + 1,xhtmlEditor.cursorPosition().column,0);
+ bot.sleep(Timing.time3S());
+ xhtmlWebBrowser.setFocus();
+ bot.sleep(Timing.time3S());
+ StringBuffer sbOptionTitle = new StringBuffer("");
+ sbOptionTitle.append("f:selectItem itemLabel: ");
+ sbOptionTitle.append(options[1]);
+ sbOptionTitle.append(" itemValue: 1 id: id1");
+ assertVisualEditorContains(xhtmlWebBrowser,
+ "OPTION",
+ new String[]{"title","style"},
+ new String[]{sbOptionTitle.toString(),"border: 2px solid rgb(0, 0, 255) ! important;"},
+ RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ }
+
+}
Property changes on: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/PickListTagTest.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ProgressTagTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ProgressTagTest.java (rev 0)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ProgressTagTest.java 2011-02-22 09:15:40 UTC (rev 29260)
@@ -0,0 +1,60 @@
+/*******************************************************************************
+
+ * Copyright (c) 2007-2011 Exadel, Inc. and Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.vpe.ui.bot.test.editor.tags;
+
+import org.jboss.tools.ui.bot.ext.Timing;
+
+/**
+ * Tests Rich Faces Progress Tag behavior
+ * @author vlado pakan
+ *
+ */
+public class ProgressTagTest extends RichFacesTagsTest{
+ @Override
+ protected void initPageContent() {
+ jspEditor.setText("<%@ taglib uri=\"http://java.sun.com/jsf/html\" prefix=\"h\" %>\n" +
+ "<%@ taglib uri=\"http://java.sun.com/jsf/core\" prefix=\"f\" %>\n" +
+ "<%@ taglib uri=\"http://richfaces.org/rich\" prefix=\"rich\" %>\n" +
+ "<html>\n" +
+ " <head>\n" +
+ " </head>\n" +
+ " <body>\n" +
+ " <f:view>\n" +
+ " <rich:progressBar mode=\"client\" id=\"progressBar\">\n" +
+ " </rich:progressBar>\n" +
+ " </f:view>\n" +
+ " </body>\n" +
+ "</html>");
+ }
+
+ @Override
+ protected void verifyTag() {
+ assertVisualEditorContains(jspWebBrowser,
+ "DIV",
+ new String[]{"title","class"},
+ new String[]{"rich:progressBar mode: client id: progressBar","rich-progress-bar-block rich-progress-bar-width rich-progress-bar-shell"},
+ RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ // check tag selection
+ jspWebBrowser.selectDomNode(jspWebBrowser.getDomNodeByTagName("DIV",4), 0);
+ bot.sleep(Timing.time3S());
+ String selectedText = jspEditor.getSelection();
+ final String hasToStartWith = "<rich:progressBar";
+ assertTrue("Selected text in Source Pane has to start with '" + hasToStartWith + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().startsWith(hasToStartWith));
+ final String hasEndWith = "</rich:progressBar>";
+ assertTrue("Selected text in Source Pane has to end with '" + hasToStartWith + "'" +
+ "\nbut it is '" + selectedText + "'",
+ selectedText.trim().endsWith(hasEndWith));
+ }
+
+}
Property changes on: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ProgressTagTest.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/RichFacesTagsTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/RichFacesTagsTest.java 2011-02-21 22:22:27 UTC (rev 29259)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/RichFacesTagsTest.java 2011-02-22 09:15:40 UTC (rev 29260)
@@ -21,13 +21,16 @@
* @author vlado pakan
*
*/
-public class RichFacesTagsTest extends VPEEditorTestCase {
+public abstract class RichFacesTagsTest extends VPEEditorTestCase {
- private static final String TEST_PAGE_NAME = "RichFacesTagsTest.jsp";
+ protected static final String TEST_PAGE_NAME_JSP = "RichFacesTagsTest.jsp";
+ protected static final String TEST_PAGE_NAME_XHTML = "RichFacesTagsTest.xhtml";
- private SWTBotEditorExt jspEditor;
- private SWTBotWebBrowser webBrowser;
- private SWTBotExt botExt;
+ protected SWTBotEditorExt jspEditor;
+ protected SWTBotEditorExt xhtmlEditor;
+ protected SWTBotWebBrowser jspWebBrowser;
+ protected SWTBotWebBrowser xhtmlWebBrowser;
+ protected SWTBotExt botExt;
public RichFacesTagsTest() {
super();
@@ -37,9 +40,13 @@
protected void setUp() throws Exception {
super.setUp();
eclipse.maximizeActiveShell();
- createJspPage(RichFacesTagsTest.TEST_PAGE_NAME);
- jspEditor = botExt.swtBotEditorExtByTitle(RichFacesTagsTest.TEST_PAGE_NAME);
- webBrowser = new SWTBotWebBrowser(RichFacesTagsTest.TEST_PAGE_NAME,botExt);
+ createJspPage(RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ jspEditor = botExt.swtBotEditorExtByTitle(RichFacesTagsTest.TEST_PAGE_NAME_JSP);
+ jspWebBrowser = new SWTBotWebBrowser(RichFacesTagsTest.TEST_PAGE_NAME_JSP,botExt);
+ createXhtmlPage(RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ xhtmlEditor = botExt.swtBotEditorExtByTitle(RichFacesTagsTest.TEST_PAGE_NAME_XHTML);
+ xhtmlWebBrowser = new SWTBotWebBrowser(RichFacesTagsTest.TEST_PAGE_NAME_XHTML,botExt);
+
}
@Override
@@ -54,117 +61,42 @@
@Override
protected void tearDown() throws Exception {
jspEditor.close();
+ xhtmlEditor.close();
super.tearDown();
}
/**
- * Tests rich:comboBox Tag
+ * Runs Tag Testing
*/
- public void testComboBoxTag(){
- final String defaultLabel = "DefaultLabel";
- jspEditor.setText("<%@ taglib uri=\"http://java.sun.com/jsf/html\" prefix=\"h\" %>\n" +
- "<%@ taglib uri=\"http://java.sun.com/jsf/core\" prefix=\"f\" %>\n" +
- "<%@ taglib uri=\"http://richfaces.org/rich\" prefix=\"rich\" %>\n" +
- "<html>\n" +
- " <head>\n" +
- " </head>\n" +
- " <body>\n" +
- " <f:view>\n" +
- " <h:form>\n" +
- " <rich:comboBox id=\"comboBox\" defaultLabel=\"" + defaultLabel + "\">\n" +
- " <f:selectItem itemValue=\"item 1\"/>\n" +
- " <f:selectItem itemValue=\"item 2\"/>\n" +
- " </rich:comboBox>\n" +
- " </h:form>\n" +
- " </f:view>\n" +
- " </body>\n" +
- "</html>");
- jspEditor.save();
- bot.sleep(Timing.time3S());
- assertVisualEditorContains(webBrowser,
- "INPUT",
- new String[]{"type","class","value"},
- new String[]{"text","rich-combobox-font-disabled rich-combobox-input-inactive",defaultLabel},
- RichFacesTagsTest.TEST_PAGE_NAME);
- assertVisualEditorContains(webBrowser,
- "INPUT",
- new String[]{"type","class"},
- new String[]{"text","rich-combobox-font-inactive rich-combobox-button-background rich-combobox-button-inactive"},
- RichFacesTagsTest.TEST_PAGE_NAME);
- assertVisualEditorContains(webBrowser,
- "INPUT",
- new String[]{"type","class"},
- new String[]{"text","rich-combobox-font-inactive rich-combobox-button-icon-inactive rich-combobox-button-inactive"},
- RichFacesTagsTest.TEST_PAGE_NAME);
- assertVisualEditorContains(webBrowser,
- "DIV",
- new String[]{"class"},
- new String[]{"rich-combobox-strut rich-combobox-font"},
- RichFacesTagsTest.TEST_PAGE_NAME);
- // check tag selection
- webBrowser.selectDomNode(webBrowser.getDomNodeByTagName("INPUT"), 0);
- bot.sleep(Timing.time3S());
- String selectedText = jspEditor.getSelection();
- final String hasToStartWith = "<rich:comboBox";
- assertTrue("Selected text in Source Pane has to start with '" + hasToStartWith + "'" +
- "\nbut it is '" + selectedText + "'",
- selectedText.trim().startsWith(hasToStartWith));
- final String hasToEndWith = "</rich:comboBox>";
- assertTrue("Selected text in Source Pane has to end with '" + hasToEndWith + "'" +
- "\nbut it is '" + selectedText + "'",
- selectedText.trim().endsWith(hasToEndWith));
-
+ public void testTag (){
+ initPageContent ();
+ savePageContent ();
+ verifyTag();
}
/**
- * Tests rich:comboBox Tag
+ * Initialize proper page content
*/
- public void testInplaceInputTag(){
- final String defaultLabel = "DefaultLabel";
- jspEditor.setText("<%@ taglib uri=\"http://java.sun.com/jsf/html\" prefix=\"h\" %>\n" +
- "<%@ taglib uri=\"http://java.sun.com/jsf/core\" prefix=\"f\" %>\n" +
- "<%@ taglib uri=\"http://richfaces.org/rich\" prefix=\"rich\" %>\n" +
- "<html>\n" +
- " <head>\n" +
- " </head>\n" +
- " <body>\n" +
- " <f:view>\n" +
- " <rich:inplaceInput defaultLabel=\"" + defaultLabel+ "\"/>\n" +
- " </f:view>\n" +
- " </body>\n" +
- "</html>");
- jspEditor.save();
- bot.sleep(Timing.time3S());
- assertVisualEditorContains(webBrowser,
- "SPAN",
- new String[]{"vpe-user-toggle-id","title","class"},
- new String[]{"false","rich:inplaceInput defaultLabel: DefaultLabel","rich-inplace rich-inplace-view"},
- RichFacesTagsTest.TEST_PAGE_NAME);
- assertVisualEditorContainsNodeWithValue(webBrowser,
- defaultLabel,
- RichFacesTagsTest.TEST_PAGE_NAME);
- // check tag selection
- webBrowser.selectDomNode(webBrowser.getDomNodeByTagName("SPAN",2), 0);
- bot.sleep(Timing.time3S());
- String selectedText = jspEditor.getSelection();
- final String expectedSelectedText = "<rich:inplaceInput defaultLabel=\"" + defaultLabel+ "\"/>";
- assertTrue("Selected text in Source Pane has to be '" + expectedSelectedText + "'" +
- "\nbut it is '" + selectedText + "'",
- selectedText.trim().equals(expectedSelectedText));
- webBrowser.mouseClickOnNode(webBrowser.getDomNodeByTagName("SPAN",2));
- bot.sleep(Timing.time3S());
- selectedText = jspEditor.getSelection();
- assertVisualEditorContains(webBrowser,
- "SPAN",
- new String[]{"vpe-user-toggle-id","class"},
- new String[]{"true","rich-inplace rich-inplace-edit"},
- RichFacesTagsTest.TEST_PAGE_NAME);
- assertVisualEditorContains(webBrowser,
- "INPUT",
- new String[]{"type","class","value"},
- new String[]{"text","rich-inplace-field",defaultLabel},
- RichFacesTagsTest.TEST_PAGE_NAME);
- assertTrue("Selected text in Source Pane has to be '" + expectedSelectedText + "'" +
- "\nbut it is '" + selectedText + "'",
- selectedText.trim().equals(expectedSelectedText));
-
+ protected abstract void initPageContent ();
+ /**
+ * Verify tag
+ */
+ protected abstract void verifyTag ();
+ /**
+ * Saves Page Content if it was changed and shows changed editor
+ */
+ protected void savePageContent(){
+ boolean wasSaved = false;
+ if (jspEditor.isDirty()){
+ jspEditor.save();
+ jspEditor.show();
+ wasSaved = true;
+ }
+ if (xhtmlEditor.isDirty()){
+ xhtmlEditor.save();
+ xhtmlEditor.show();
+ wasSaved = true;
+ }
+ if (wasSaved){
+ bot.sleep(Timing.time3S());
+ }
}
}
13 years, 10 months
JBoss Tools SVN: r29259 - trunk/workingset/docs/reference.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-02-21 17:22:27 -0500 (Mon, 21 Feb 2011)
New Revision: 29259
Modified:
trunk/workingset/docs/reference/pom.xml
Log:
Updated pom.xml to fix Maven compile issues
Modified: trunk/workingset/docs/reference/pom.xml
===================================================================
--- trunk/workingset/docs/reference/pom.xml 2011-02-21 22:05:26 UTC (rev 29258)
+++ trunk/workingset/docs/reference/pom.xml 2011-02-21 22:22:27 UTC (rev 29259)
@@ -2,158 +2,238 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
-
<groupId>org.jboss.tools</groupId>
- <artifactId>workingset-ref-guide-${translation}</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <artifactId>${docname}-${translation}</artifactId>
+ <version>1.0</version>
<packaging>jdocbook</packaging>
- <name>Workingset_Reference_Guide</name>
+ <name>${bookname}-(${translation})</name>
+
+ <properties>
+ <translation>en-US</translation>
+ <docname>WS_Reference_Guide</docname>
+ <bookname>WS Reference Guide</bookname>
+ </properties>
- <profiles>
+<profiles>
+
+ <!-- mvn compile -->
<profile>
- <id>release</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/org/jboss/tools/xhtml-single-release.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/org/jboss/tools/xhtml-release.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/org/jboss/tools/pdf.xsl</xsl-pdf>
- </properties>
+ <id>all</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.4</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <options>
+ <useRelativeImageUris>true</useRelativeImageUris>
+ </options>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</profile>
+
+ <!-- mvn compile -Phtml -->
<profile>
- <id>releaseJBDS</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/com/jboss/tools/xhtml-single-release.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/com/jboss/tools/xhtml-release.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/com/jboss/tools/pdf.xsl</xsl-pdf>
- <cssdir>../../../documentation/jbosstools-jdocbook-style/src/main/com/css/</cssdir>
- </properties>
+ <id>html</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</profile>
+
+ <!-- mvn compile -Phtml-single -->
<profile>
- <id>diffmk</id>
- <properties>
- <master>master_output.xml</master>
- <xsl-single>classpath:/xslt/org/jboss/tools/xhtml-single-diff.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/org/jboss/tools/xhtml-diff.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/org/jboss/tools/pdf-diff.xsl</xsl-pdf>
- </properties>
+ <id>html-single</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ </plugin>
+ </plugins>
+ </build>
</profile>
+
+ <!-- mvn compile -Ppdf -->
+ <profile>
+ <id>pdf</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${docname}.pdf</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <!-- mvn compile -Peclipse -->
+ <profile>
+ <id>eclipse</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <configuration>
+ <formats>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
</profiles>
-
<build>
- <plugins>
- <plugin>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.3.4</version>
-
- <extensions>true</extensions>
- <dependencies>
- <dependency>
- <groupId>com.jboss</groupId>
- <artifactId>jbossent-docbook-xslt</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.jboss</groupId>
- <artifactId>jbossent-jdocbook-style</artifactId>
- <version>1.0.0</version>
- <type>jdocbook-style</type>
- </dependency>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jbossorg-docbook-xslt</artifactId>
- <version>1.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jbossorg-jdocbook-style</artifactId>
- <version>1.1.0</version>
- <type>jdocbook-style</type>
- </dependency>
- <dependency>
- <groupId>org.jboss.tools</groupId>
- <artifactId>jbosstools-docbook-xslt</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.apache.xmlgraphics</groupId>
- <artifactId>fop</artifactId>
- <version>0.95</version>
- </dependency>
- </dependencies>
-
- <configuration>
- <sourceDocumentName>${master}</sourceDocumentName>
- <sourceDirectory>${pom.basedir}/en-US</sourceDirectory>
- <imageResource>
- <directory>${pom.basedir}/en-US</directory>
- <includes>
- <include>images/**/*</include>
- </includes>
- </imageResource>
- <cssResource>
- <directory>${pom.basedir}/${cssdir}</directory>
- </cssResource>
-
- <formats>
- <format>
- <formatName>pdf</formatName>
- <stylesheetResource>${xsl-pdf}</stylesheetResource>
- <finalName>${pom.name}.pdf</finalName>
- </format>
- <format>
- <formatName>html</formatName>
- <stylesheetResource>${xsl-chunked}</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>${xsl-single}</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <format>
- <formatName>eclipse</formatName>
- <stylesheetResource>file:${pom.basedir}/${stylesdir}/xslt/org/jboss/tools/eclipse.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- </formats>
-
- <options>
- <xincludeSupported>true</xincludeSupported>
- <xmlTransformerType>saxon</xmlTransformerType>
- <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
- <!-- could also locate the docbook dependency and inspect its version... -->
- <docbookVersion>1.72.0</docbookVersion>
- <useRelativeImageUris>true</useRelativeImageUris>
- </options>
- </configuration>
- </plugin>
- </plugins>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.3</version>
+ <extensions>true</extensions>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.pressgang</groupId>
+ <artifactId>pressgang-xslt</artifactId>
+ <version>1.2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-jdocbook-style</artifactId>
+ <version>1.1.1</version>
+ <type>jdocbook-style</type>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <sourceDirectory>${project.basedir}</sourceDirectory>
+ <!-- <sourceDocumentName>${docname}.xml</sourceDocumentName> -->
+ <sourceDocumentName>master.xml</sourceDocumentName>
+ <masterTranslation>en-US</masterTranslation>
+ <imageResource>
+ <directory>${project.basedir}/en-US</directory>
+ <includes>
+ <include>images/**/*</include>
+ </includes>
+ </imageResource>
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>${pdf.name}</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>saxon</xmlTransformerType>
+ <docbookVersion>1.72.0</docbookVersion>
+ <localeSeparator>-</localeSeparator>
+ <transformerParameters>
+ <property>
+ <name>javax.xml.parsers.DocumentBuilderFactory</name>
+ <value>org.apache.xerces.jaxp.DocumentBuilderFactoryImpl</value>
+ </property>
+ <property>
+ <name>javax.xml.parsers.SAXParserFactory</name>
+ <value>org.apache.xerces.jaxp.SAXParserFactoryImpl</value>
+ </property>
+ </transformerParameters>
+ </options>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
</build>
-
- <distributionManagement>
- <repository>
- <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
- <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
- <!-- todo : replace this with direct svn access once the svnkit providers are available -->
- <id>repository.jboss.org</id>
- <url>file://${maven.repository.root}</url>
- </repository>
- <snapshotRepository>
- <id>snapshots.jboss.org</id>
- <name>JBoss Snapshot Repository</name>
- <url>dav:https://snapshots.jboss.org/maven2</url>
- </snapshotRepository>
- </distributionManagement>
-
- <properties>
- <stylesdir>../../../documentation/jbosstools-docbook-xslt/src/main/resources/</stylesdir>
- <xsl-single>classpath:/xslt/org/jboss/tools/xhtml-single.xsl</xsl-single>
- <xsl-chunked>classpath:/xslt/org/jboss/tools/xhtml.xsl</xsl-chunked>
- <xsl-pdf>classpath:/xslt/org/jboss/tools/pdf.xsl</xsl-pdf>
- <cssdir>../../../documentation/jbosstools-jdocbook-style/src/main/org/css/</cssdir>
- <master>master.xml</master>
- <translation>en-US</translation>
- </properties>
</project>
13 years, 10 months
JBoss Tools SVN: r29258 - in trunk/maven/plugins: org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/project/facet and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-02-21 17:05:26 -0500 (Mon, 21 Feb 2011)
New Revision: 29258
Modified:
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/MavenCoreActivator.java
trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/project/facet/MavenFacetInstallPage.java
Log:
JBIDE-8458 Mavenized Seam EAR Project can't be deployed to JBoss AS 6.0.0.Final
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/MavenCoreActivator.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/MavenCoreActivator.java 2011-02-21 17:06:44 UTC (rev 29257)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/MavenCoreActivator.java 2011-02-21 22:05:26 UTC (rev 29258)
@@ -70,6 +70,8 @@
*/
public class MavenCoreActivator extends Plugin {
+ private static final String ROOT_DIR = "/";
+
public static final String SEPARATOR = "/"; //$NON-NLS-1$
// The plug-in ID
@@ -429,18 +431,18 @@
Xpp3Dom modules = new Xpp3Dom("modules"); //$NON-NLS-1$
configuration.addChild(modules);
+ Xpp3Dom seamModule = getEarModule("ejbModule", "org.jboss.seam", //$NON-NLS-1$ //$NON-NLS-2$
+ "jboss-seam", ROOT_DIR, null); //$NON-NLS-1$ //$NON-NLS-2$
+ modules.addChild(seamModule);
+
if (ejbArtifactId != null) {
String ejbModuleName = ejbArtifactId + ".jar"; //$NON-NLS-1$
Xpp3Dom ejbProject = getEarModule(
"ejbModule", //$NON-NLS-1$
m2FacetModel.getStringProperty(IJBossMavenConstants.GROUP_ID),
- ejbArtifactId, "/", ejbModuleName); //$NON-NLS-1$
+ ejbArtifactId, ROOT_DIR, ejbModuleName); //$NON-NLS-1$
modules.addChild(ejbProject);
}
-
- Xpp3Dom seamModule = getEarModule("ejbModule", "org.jboss.seam", //$NON-NLS-1$ //$NON-NLS-2$
- "jboss-seam", "/", null); //$NON-NLS-1$ //$NON-NLS-2$
- modules.addChild(seamModule);
String webModuleName = m2FacetModel.getStringProperty(IJBossMavenConstants.ARTIFACT_ID) + ".war"; //$NON-NLS-1$
@@ -448,7 +450,7 @@
"webModule", //$NON-NLS-1$
m2FacetModel.getStringProperty(IJBossMavenConstants.GROUP_ID),
m2FacetModel.getStringProperty(IJBossMavenConstants.ARTIFACT_ID),
- "/", webModuleName); //$NON-NLS-1$
+ ROOT_DIR, webModuleName); //$NON-NLS-1$
Xpp3Dom contextRoot = new Xpp3Dom("contextRoot"); //$NON-NLS-1$
contextRoot.setValue(m2FacetModel
.getStringProperty(IJBossMavenConstants.ARTIFACT_ID));
@@ -484,9 +486,11 @@
Xpp3Dom artifactId = new Xpp3Dom("artifactId"); //$NON-NLS-1$
artifactId.setValue(artifactIdString);
earModule.addChild(artifactId);
- Xpp3Dom bundleDir = new Xpp3Dom("bundleDir"); //$NON-NLS-1$
- bundleDir.setValue(bundleDirString);
- earModule.addChild(bundleDir);
+ if (!ROOT_DIR.equals(bundleDirString)) {
+ Xpp3Dom bundleDir = new Xpp3Dom("bundleDir"); //$NON-NLS-1$
+ bundleDir.setValue(bundleDirString);
+ earModule.addChild(bundleDir);
+ }
if (bundleFileNameString != null) {
Xpp3Dom bundleFileName = new Xpp3Dom("bundleFileName"); //$NON-NLS-1$
bundleFileName.setValue(bundleFileNameString);
Modified: trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/project/facet/MavenFacetInstallPage.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/project/facet/MavenFacetInstallPage.java 2011-02-21 17:06:44 UTC (rev 29257)
+++ trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/project/facet/MavenFacetInstallPage.java 2011-02-21 22:05:26 UTC (rev 29258)
@@ -151,7 +151,7 @@
} else if ("2.1".equals(seamFacetVersion.getVersionString())) { //$NON-NLS-1$
seamVersion.setText("2.1.1.GA"); //$NON-NLS-1$
} else if ("2.2".equals(seamFacetVersion.getVersionString())) { //$NON-NLS-1$
- seamVersion.setText("2.2.0.GA"); //$NON-NLS-1$
+ seamVersion.setText("2.2.1.Final"); //$NON-NLS-1$
}
Button removeWTPContainers = new Button(composite,SWT.CHECK);
removeWTPContainers.setText(Messages.MavenFacetInstallPage_Remove_WTP_Classpath_containers);
13 years, 10 months
JBoss Tools SVN: r29257 - in workspace/bbrodt: org.eclipse.bpel.apache.ode.deploy.ui/META-INF and 12 other directories.
by jbosstools-commits@lists.jboss.org
Author: bbrodt
Date: 2011-02-21 12:06:44 -0500 (Mon, 21 Feb 2011)
New Revision: 29257
Modified:
workspace/bbrodt/org.eclipse.bpel.apache.ode.deploy.model/META-INF/MANIFEST.MF
workspace/bbrodt/org.eclipse.bpel.apache.ode.deploy.ui/META-INF/MANIFEST.MF
workspace/bbrodt/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF
workspace/bbrodt/org.eclipse.bpel.cheatsheet/META-INF/MANIFEST.MF
workspace/bbrodt/org.eclipse.bpel.common.model/META-INF/MANIFEST.MF
workspace/bbrodt/org.eclipse.bpel.common.ui/META-INF/MANIFEST.MF
workspace/bbrodt/org.eclipse.bpel.jboss.riftsaw.runtime/META-INF/MANIFEST.MF
workspace/bbrodt/org.eclipse.bpel.jboss.riftsaw.runtime/plugin.xml
workspace/bbrodt/org.eclipse.bpel.model/META-INF/MANIFEST.MF
workspace/bbrodt/org.eclipse.bpel.runtimes/META-INF/MANIFEST.MF
workspace/bbrodt/org.eclipse.bpel.ui/META-INF/MANIFEST.MF
workspace/bbrodt/org.eclipse.bpel.validator/META-INF/MANIFEST.MF
workspace/bbrodt/org.eclipse.bpel.wsil.model/META-INF/MANIFEST.MF
workspace/bbrodt/org.eclipse.bpel.xpath10/META-INF/MANIFEST.MF
Log:
Updated all MANIFEST.MF for consistency
Modified: workspace/bbrodt/org.eclipse.bpel.apache.ode.deploy.model/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.apache.ode.deploy.model/META-INF/MANIFEST.MF 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.apache.ode.deploy.model/META-INF/MANIFEST.MF 2011-02-21 17:06:44 UTC (rev 29257)
@@ -1,11 +1,12 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.bpel.apache.ode.deploy.model; singleton:=true
-Bundle-Version: 0.5.0.qualifier
-Bundle-Vendor: %providerName
+Bundle-Version: 0.6.0.qualifier
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.bpel.apache.ode.deploy.model.dd,
org.eclipse.bpel.apache.ode.deploy.model.dd.impl,
org.eclipse.bpel.apache.ode.deploy.model.dd.util
@@ -16,4 +17,3 @@
org.eclipse.xsd;bundle-version="[2.4.0,3.0.0)",
org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
javax.wsdl;bundle-version="[1.5.0,1.6.0)"
-Bundle-ActivationPolicy: lazy
Modified: workspace/bbrodt/org.eclipse.bpel.apache.ode.deploy.ui/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.apache.ode.deploy.ui/META-INF/MANIFEST.MF 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.apache.ode.deploy.ui/META-INF/MANIFEST.MF 2011-02-21 17:06:44 UTC (rev 29257)
@@ -1,9 +1,13 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.bpel.apache.ode.deploy.ui; singleton:=true
Bundle-Version: 0.6.0.qualifier
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Activator: org.eclipse.bpel.apache.ode.deploy.ui.Activator
+Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.ui;bundle-version="[3.4.0,4.0.0)",
org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
org.eclipse.jface.text;bundle-version="[3.4.0,4.0.0)",
@@ -22,6 +26,3 @@
org.eclipse.bpel.ui;bundle-version="[0.4.0,2.0.0)",
org.eclipse.jdt.core;bundle-version="[3.5.0,4.0.0)",
org.eclipse.wst.common.modulecore
-Bundle-ActivationPolicy: lazy
-Bundle-Vendor: %providerName
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: workspace/bbrodt/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF 2011-02-21 17:06:44 UTC (rev 29257)
@@ -1,10 +1,13 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
-Bundle-SymbolicName: new.org.eclipse.bpel.apache.ode.runtime;singleton:=true
+Bundle-Vendor: %providerName
+Bundle-SymbolicName: org.eclipse.bpel.apache.ode.runtime;singleton:=true
Bundle-Version: 0.6.0.qualifier
-Bundle-Vendor: %providerName
Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-Activator: org.eclipse.bpel.apache.ode.runtime.OdePlugin
+Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.ui;bundle-version="[3.4.0,4.0.0)",
org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)",
org.eclipse.wst.server.core;bundle-version="[1.1.0,2.0.0)",
@@ -25,8 +28,5 @@
org.eclipse.jst.server.core;bundle-version="[1.1.0,2.0.0)",
javax.wsdl;bundle-version="[1.5.0,1.6.0)",
org.eclipse.bpel.apache.ode.deploy.model;bundle-version="0.5.0"
-Bundle-Activator: org.eclipse.bpel.apache.ode.runtime.OdePlugin
Export-Package: org.eclipse.bpel.apache.ode.runtime
-Bundle-ActivationPolicy: lazy
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
Import-Package: org.eclipse.bpel.runtimes
Modified: workspace/bbrodt/org.eclipse.bpel.cheatsheet/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.cheatsheet/META-INF/MANIFEST.MF 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.cheatsheet/META-INF/MANIFEST.MF 2011-02-21 17:06:44 UTC (rev 29257)
@@ -1,12 +1,13 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.bpel.cheatsheet;singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 0.6.0.qualifier
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Activator: org.eclipse.bpel.cheatsheet.Activator
+Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.ui.cheatsheets
-Bundle-ActivationPolicy: lazy
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Bundle-Vendor: %providerName
Modified: workspace/bbrodt/org.eclipse.bpel.common.model/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.common.model/META-INF/MANIFEST.MF 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.common.model/META-INF/MANIFEST.MF 2011-02-21 17:06:44 UTC (rev 29257)
@@ -1,13 +1,15 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.bpel.common.model; singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Activator: org.eclipse.bpel.common.extension.model.Activator
-Bundle-Localization: plugin
+Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
org.eclipse.emf.ecore.xmi;bundle-version="[2.4.0,3.0.0)"
-Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.bpel.common,
org.eclipse.bpel.common.extension.model;
uses:="org.eclipse.core.runtime,
@@ -56,6 +58,4 @@
org.eclipse.emf.ecore.resource.impl,
org.eclipse.emf.ecore.xmi.util",
org.eclipse.bpel.names
-Bundle-Vendor: %providerName
Bundle-ClassPath: .
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: workspace/bbrodt/org.eclipse.bpel.common.ui/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.common.ui/META-INF/MANIFEST.MF 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.common.ui/META-INF/MANIFEST.MF 2011-02-21 17:06:44 UTC (rev 29257)
@@ -1,10 +1,13 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.bpel.common.ui; singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Activator: org.eclipse.bpel.common.ui.CommonUIPlugin
-Bundle-Localization: plugin
+Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.ui;bundle-version="[3.4.0,4.0.0)",
org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
org.eclipse.ui.ide;bundle-version="[3.4.0,4.0.0)",
@@ -12,7 +15,6 @@
org.eclipse.gef;bundle-version="[3.4.0,4.0.0)",
org.eclipse.emf.ecore.change;bundle-version="[2.4.0,3.0.0)",
org.eclipse.bpel.model;bundle-version="[0.4.0,1.0.0)"
-Eclipse-LazyStart: true
Export-Package: org.eclipse.bpel.common.ui,
org.eclipse.bpel.common.ui.assist,
org.eclipse.bpel.common.ui.calendar,
@@ -29,5 +31,3 @@
org.eclipse.bpel.common.ui.markers,
org.eclipse.bpel.common.ui.palette,
org.eclipse.bpel.common.ui.tray
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Bundle-Vendor: %providerName
Modified: workspace/bbrodt/org.eclipse.bpel.jboss.riftsaw.runtime/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.jboss.riftsaw.runtime/META-INF/MANIFEST.MF 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.jboss.riftsaw.runtime/META-INF/MANIFEST.MF 2011-02-21 17:06:44 UTC (rev 29257)
@@ -1,10 +1,14 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.bpel.jboss.riftsaw.runtime;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Activator: org.eclipse.bpel.jboss.riftsaw.runtime.RiftsawPlugin
-Bundle-Localization: plugin
+Bundle-ActivationPolicy: lazy
+Bundle-ClassPath: .
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.core.resources,
@@ -33,8 +37,4 @@
org.eclipse.wst.server.ui;resolution:=optional,
org.eclipse.ui.navigator,
org.eclipse.bpel.runtimes;bundle-version="0.5.0"
-Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.bpel.jboss.riftsaw.runtime
-Bundle-ClassPath: .
-Bundle-Vendor: %providerName
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: workspace/bbrodt/org.eclipse.bpel.jboss.riftsaw.runtime/plugin.xml
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.jboss.riftsaw.runtime/plugin.xml 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.jboss.riftsaw.runtime/plugin.xml 2011-02-21 17:06:44 UTC (rev 29257)
@@ -115,12 +115,12 @@
runtimeTypeId="org.eclipse.bpel.jboss.riftsaw.runtime.rt"
runtime-component="org.eclipse.bpel.jboss.riftsaw.runtime.rt"
version="2.0"/>
- </extension>
<runtimeFacetMapping
runtimeTypeId="org.jboss.ide.eclipse.as.runtime.51"
runtime-component="org.jboss.ide.eclipse.as.runtime.component"
version="5.1"/>
+ </extension>
<extension point="org.eclipse.jst.server.generic.core.serverdefinition">
<serverdefinition
Modified: workspace/bbrodt/org.eclipse.bpel.model/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.model/META-INF/MANIFEST.MF 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.model/META-INF/MANIFEST.MF 2011-02-21 17:06:44 UTC (rev 29257)
@@ -1,11 +1,13 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.bpel.model; singleton:=true
Bundle-Version: 0.6.0.qualifier
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Activator: org.eclipse.bpel.model.BPELPlugin$Implementation
-Bundle-Vendor: %providerName
-Bundle-Localization: plugin
+Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)",
org.eclipse.emf.ecore.xmi;bundle-version="[2.4.0,3.0.0)",
@@ -17,7 +19,6 @@
org.eclipse.wst.xml.core,
org.eclipse.wst.xml.ui,
org.eclipse.wst.xsd.ui
-Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.bpel.model,
org.eclipse.bpel.model.adapters,
org.eclipse.bpel.model.extensions,
@@ -32,6 +33,5 @@
org.eclipse.bpel.model.resource,
org.eclipse.bpel.model.terms,
org.eclipse.bpel.model.util
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
Import-Package: org.eclipse.wst.xsd.contentmodel.internal,
org.eclipse.wst.xml.ui.internal.wizards
Modified: workspace/bbrodt/org.eclipse.bpel.runtimes/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.runtimes/META-INF/MANIFEST.MF 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.runtimes/META-INF/MANIFEST.MF 2011-02-21 17:06:44 UTC (rev 29257)
@@ -1,10 +1,13 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.bpel.runtimes; singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Activator: org.eclipse.bpel.runtimes.RuntimesPlugin
-Bundle-Localization: plugin
+Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.ui;bundle-version="[3.4.0,4.0.0)",
org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)",
@@ -18,16 +21,13 @@
org.eclipse.jst.server.generic.core;bundle-version="[1.0.305,2.0.0)",
org.eclipse.jem.util;bundle-version="[2.0.100,3.0.0)",
org.eclipse.debug.ui;bundle-version="[3.4.0,4.0.0)",
- org.eclipse.bpel.model;bundle-version="0.5.0",
+ org.eclipse.bpel.model,
org.eclipse.emf.ecore;bundle-version="[2.4.0,3.0.0)",
javax.wsdl;bundle-version="[1.5.0,1.6.0)",
org.eclipse.wst.wsdl;bundle-version="[1.1.200,2.0.0)",
org.eclipse.jst.common.frameworks
-Eclipse-LazyStart: true
Export-Package: org.eclipse.bpel.runtimes,
org.eclipse.bpel.runtimes.facets,
org.eclipse.bpel.runtimes.module,
org.eclipse.bpel.runtimes.publishers,
org.eclipse.bpel.runtimes.ui.wizards
-Bundle-Vendor: %providerName
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: workspace/bbrodt/org.eclipse.bpel.ui/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.ui/META-INF/MANIFEST.MF 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.ui/META-INF/MANIFEST.MF 2011-02-21 17:06:44 UTC (rev 29257)
@@ -1,11 +1,13 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.bpel.ui; singleton:=true
Bundle-Version: 0.6.0.qualifier
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Activator: org.eclipse.bpel.ui.BPELUIPlugin
-Bundle-Vendor: %providerName
-Bundle-Localization: plugin
+Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)",
org.eclipse.ui.ide;bundle-version="[3.4.0,4.0.0)",
@@ -71,7 +73,6 @@
org.eclipse.bpel.ui.util.filedialog,
org.eclipse.bpel.ui.util.marker,
org.eclipse.bpel.ui.wizards
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
Import-Package: org.eclipse.bpel.runtimes,
org.eclipse.bpel.validator,
org.eclipse.wst.common.project.facet.core,
Modified: workspace/bbrodt/org.eclipse.bpel.validator/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.validator/META-INF/MANIFEST.MF 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.validator/META-INF/MANIFEST.MF 2011-02-21 17:06:44 UTC (rev 29257)
@@ -1,11 +1,13 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.bpel.validator;singleton:=true
Bundle-Version: 0.6.0.qualifier
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Activator: org.eclipse.bpel.validator.Activator
-Bundle-Vendor: %providerName
-Bundle-Localization: plugin
+Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.emf.ecore.xmi;bundle-version="[2.4.0,3.0.0)",
org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)",
org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
@@ -18,8 +20,6 @@
org.eclipse.wst.xml.core,
org.eclipse.bpel.xpath10;bundle-version="[0.4.0,1.0.0)",
javax.wsdl;bundle-version="[1.5.0,1.6.0)"
-Bundle-ActivationPolicy: lazy
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ClassPath: .
Export-Package: org.eclipse.bpel.validator,
org.eclipse.bpel.validator.adapters,
Modified: workspace/bbrodt/org.eclipse.bpel.wsil.model/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.wsil.model/META-INF/MANIFEST.MF 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.wsil.model/META-INF/MANIFEST.MF 2011-02-21 17:06:44 UTC (rev 29257)
@@ -1,11 +1,13 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.bpel.wsil.model; singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-ActivationPolicy: lazy
Bundle-ClassPath: wsli-model.jar
-Bundle-Vendor: %providerName
-Bundle-Localization: plugin
Export-Package: org.eclipse.bpel.wsil.model.inspection;uses:="org.eclipse.emf.ecore.util,org.eclipse.emf.ecore,org.eclipse.emf.common.util",
org.eclipse.bpel.wsil.model.inspection.impl;
uses:="org.eclipse.emf.ecore.util,
@@ -26,5 +28,3 @@
org.eclipse.bpel.wsil.model.inspection"
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
org.eclipse.emf.ecore.xmi;bundle-version="[2.4.0,3.0.0)";visibility:=reexport
-Eclipse-LazyStart: true
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: workspace/bbrodt/org.eclipse.bpel.xpath10/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/org.eclipse.bpel.xpath10/META-INF/MANIFEST.MF 2011-02-21 15:34:51 UTC (rev 29256)
+++ workspace/bbrodt/org.eclipse.bpel.xpath10/META-INF/MANIFEST.MF 2011-02-21 17:06:44 UTC (rev 29257)
@@ -1,9 +1,11 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
+Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.bpel.xpath10
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ClassPath: .,
lib/antlr-runtime-3.0.1.jar
Export-Package: org.antlr.runtime;uses:="org.antlr.runtime.tree",
@@ -12,5 +14,3 @@
org.antlr.runtime.tree;uses:="org.antlr.runtime,org.antlr.stringtemplate",
org.eclipse.bpel.xpath10,
org.eclipse.bpel.xpath10.parser;uses:="org.antlr.runtime.tree,org.antlr.runtime,org.eclipse.bpel.xpath10"
-Bundle-Vendor: %providerName
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
13 years, 10 months
JBoss Tools SVN: r29256 - in trunk: vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: yradtsevich
Date: 2011-02-21 10:34:51 -0500 (Mon, 21 Feb 2011)
New Revision: 29256
Modified:
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/editor/IVisualEditor.java
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/VpeEditorPart.java
Log:
https://issues.jboss.org/browse/JBIDE-8115 : Support for multiple selection in visual part
- implementation of ITextEditor interface has been removed from VpeEditorPart as not used.
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/editor/IVisualEditor.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/editor/IVisualEditor.java 2011-02-21 15:24:33 UTC (rev 29255)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/editor/IVisualEditor.java 2011-02-21 15:34:51 UTC (rev 29256)
@@ -13,7 +13,7 @@
import org.eclipse.ui.IReusableEditor;
import org.eclipse.ui.texteditor.ITextEditor;
-public interface IVisualEditor extends ITextEditor, IReusableEditor {
+public interface IVisualEditor extends IReusableEditor {
public static final int VISUALSOURCE_MODE = 0;
//public static final int VISUAL_MODE = 1;
public static final int SOURCE_MODE = 1;
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/VpeEditorPart.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/VpeEditorPart.java 2011-02-21 15:24:33 UTC (rev 29255)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/VpeEditorPart.java 2011-02-21 15:34:51 UTC (rev 29256)
@@ -17,13 +17,7 @@
import org.eclipse.core.commands.IHandler;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.jface.action.IAction;
import org.eclipse.jface.action.IMenuListener;
-import org.eclipse.jface.text.IRegion;
-import org.eclipse.jface.text.TextSelection;
-import org.eclipse.jface.viewers.ISelection;
-import org.eclipse.jface.viewers.ISelectionProvider;
-import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.StyledText;
import org.eclipse.swt.events.ControlEvent;
@@ -47,7 +41,6 @@
import org.eclipse.ui.IPartListener;
import org.eclipse.ui.IPropertyListener;
import org.eclipse.ui.IReusableEditor;
-import org.eclipse.ui.ISelectionListener;
import org.eclipse.ui.IStorageEditorInput;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPart;
@@ -61,9 +54,7 @@
import org.eclipse.ui.handlers.IHandlerService;
import org.eclipse.ui.part.EditorPart;
import org.eclipse.ui.part.FileEditorInput;
-import org.eclipse.ui.texteditor.IDocumentProvider;
import org.eclipse.ui.texteditor.IStatusField;
-import org.eclipse.ui.texteditor.ITextEditor;
import org.eclipse.ui.texteditor.ITextEditorExtension;
import org.eclipse.wst.sse.ui.StructuredTextEditor;
import org.eclipse.wst.sse.ui.internal.StructuredTextViewer;
@@ -89,7 +80,7 @@
import org.jboss.tools.vpe.editor.xpl.SashSetting;
@SuppressWarnings("restriction")
-public class VpeEditorPart extends EditorPart implements ITextEditor,
+public class VpeEditorPart extends EditorPart implements
ITextEditorExtension, IReusableEditor, IVisualEditor {
private IContextActivation fContextActivation;
private IHandlerActivation sourceActivation,visualActivation, jumpingActivation;
@@ -134,94 +125,6 @@
return multiPageEditor;
}
- public void close(boolean save) {
- if (sourceEditor != null)
- sourceEditor.close(save);
- }
-
- public void doRevertToSaved() {
- if (sourceEditor != null)
- sourceEditor.doRevertToSaved();
- }
-
- public IDocumentProvider getDocumentProvider() {
- if (sourceEditor != null)
- return sourceEditor.getDocumentProvider();
- else {
- return null;
- }
- }
-
- public IRegion getHighlightRange() {
- if (sourceEditor != null)
- return sourceEditor.getHighlightRange();
- else {
- return null;
- }
- }
-
- public ISelectionProvider getSelectionProvider() {
- if (sourceEditor != null)
- return sourceEditor.getSelectionProvider();
- else {
- return null;
- }
- }
-
- public boolean isEditable() {
- if (sourceEditor != null)
- return sourceEditor.isEditable();
- else {
- return false;
- }
- }
-
- public void removeActionActivationCode(String actionId) {
- if (sourceEditor != null)
- sourceEditor.removeActionActivationCode(actionId);
- }
-
- public void resetHighlightRange() {
- if (sourceEditor != null)
- sourceEditor.resetHighlightRange();
- }
-
- public void selectAndReveal(int offset, int length) {
- if (sourceEditor != null)
- sourceEditor.selectAndReveal(offset, length);
- }
-
- public void setAction(String actionID, IAction action) {
- if (sourceEditor != null)
- sourceEditor.setAction(actionID, action);
- }
-
- public void setActionActivationCode(String actionId,
- char activationCharacter, int activationKeyCode,
- int activationStateMask) {
- if (sourceEditor != null)
- sourceEditor.setActionActivationCode(actionId, activationCharacter,
- activationKeyCode, activationStateMask);
- }
-
- public void setHighlightRange(int offset, int length, boolean moveCursor) {
- if (sourceEditor != null)
- sourceEditor.setHighlightRange(offset, length, moveCursor);
- }
-
- public void showHighlightRangeOnly(boolean showHighlightRangeOnly) {
- if (sourceEditor != null)
- sourceEditor.showHighlightRangeOnly(showHighlightRangeOnly);
- }
-
- public boolean showsHighlightRangeOnly() {
- if (sourceEditor != null)
- return sourceEditor.showsHighlightRangeOnly();
- else {
- return false;
- }
- }
-
public void addRulerContextMenuListener(IMenuListener listener) {
if (sourceEditor != null)
sourceEditor.addRulerContextMenuListener(listener);
@@ -262,10 +165,6 @@
this(null, null, VISUALSOURCE_MODE, null);
}
- public IAction getAction(String actionID) {
- return sourceEditor.getAction(actionID);
- }
-
public void doSave(IProgressMonitor monitor) {
if (sourceEditor != null) {
sourceEditor.doSave(monitor);
13 years, 10 months
JBoss Tools SVN: r29255 - in trunk/documentation/whatsnew: as and 26 other directories.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2011-02-21 10:24:33 -0500 (Mon, 21 Feb 2011)
New Revision: 29255
Modified:
trunk/documentation/whatsnew/as/as-news-1.0.0.beta4.html
trunk/documentation/whatsnew/as/as-news-1.0.0.cr1.html
trunk/documentation/whatsnew/as/as-news-1.1.0.Alpha1.html
trunk/documentation/whatsnew/as/as-news-1.1.0.beta1.html
trunk/documentation/whatsnew/as/as-news-2.0.0.Alpha1.html
trunk/documentation/whatsnew/as/as-news-2.0.0.Beta1.html
trunk/documentation/whatsnew/as/as-news-2.0.0.CR1.html
trunk/documentation/whatsnew/as/as-news-2.0.0.CR2.html
trunk/documentation/whatsnew/as/as-news-2.0.0.GA-full.html
trunk/documentation/whatsnew/as/as-news-2.0.0.GA.html
trunk/documentation/whatsnew/as/as-news-3.1.0.CR1.html
trunk/documentation/whatsnew/as/as-news-3.1.0.CR2.html
trunk/documentation/whatsnew/as/as-news-3.1.0.M1.html
trunk/documentation/whatsnew/as/as-news-3.1.0.M3.html
trunk/documentation/whatsnew/as/as-news-3.2.0.Beta1.html
trunk/documentation/whatsnew/as/as-news-3.2.0.Beta2.html
trunk/documentation/whatsnew/as/as-news-3.2.0.CR1.html
trunk/documentation/whatsnew/as/as-news-3.2.0.M2.html
trunk/documentation/whatsnew/birt/birt-news-1.0.0.Alpha1.html
trunk/documentation/whatsnew/birt/birt-news-1.0.0.GA-full.html
trunk/documentation/whatsnew/bpel/bpel-news-1.0.0.CR1.html
trunk/documentation/whatsnew/bpel/bpel-news-1.0.0.CR2.html
trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.CR1.html
trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.M1.html
trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.M2.html
trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.beta1.html
trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.beta2.html
trunk/documentation/whatsnew/cdi/cdi-news-3.1.0.CR2.html
trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.Beta1.html
trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.CR1.html
trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.M1.html
trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.M2.html
trunk/documentation/whatsnew/core/core-news-3.0.0.Alpha1.html
trunk/documentation/whatsnew/core/core-news-3.0.0.Beta1.html
trunk/documentation/whatsnew/core/core-news-3.0.0.GA-full.html
trunk/documentation/whatsnew/core/core-news-3.1.0.CR2.html
trunk/documentation/whatsnew/core/core-news-3.1.0.M1.html
trunk/documentation/whatsnew/core/core-news-3.1.0.M2.html
trunk/documentation/whatsnew/core/core-news-3.1.0.M3.html
trunk/documentation/whatsnew/core/core-news-3.2.0.M1.html
trunk/documentation/whatsnew/core/core-news-3.2.0.M2.html
trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.0.1.Beta2.html
trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.0.1.CR1.html
trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.0.1.M2.html
trunk/documentation/whatsnew/drools/drools-news-5.0.0.CR1-full.html
trunk/documentation/whatsnew/drools/drools-news-5.1.0.M2-full.html
trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.Beta2.html
trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.M1.html
trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.M2.html
trunk/documentation/whatsnew/esb/esb-news-1.0.0.GA-full.html
trunk/documentation/whatsnew/esb/esb-news-1.0.0.beta1.html
trunk/documentation/whatsnew/esb/esb-news-1.1.0.Beta1.html
trunk/documentation/whatsnew/esb/esb-news-1.1.0.CR1.html
trunk/documentation/whatsnew/esb/esb-news-1.1.0.CR2.html
trunk/documentation/whatsnew/esb/esb-news-1.1.0.M1.html
trunk/documentation/whatsnew/esb/esb-news-1.3.0.CR1.html
trunk/documentation/whatsnew/esb/esb-news-1.3.0.CR2.html
trunk/documentation/whatsnew/esb/esb-news-1.4.0.Beta1.html
trunk/documentation/whatsnew/esb/esb-news-1.4.0.Beta2.html
trunk/documentation/whatsnew/esb/esb-news-1.4.0.M2.html
trunk/documentation/whatsnew/examples/examples-news-1.0.0.Beta1.html
trunk/documentation/whatsnew/examples/examples-news-1.0.0.CR1.html
trunk/documentation/whatsnew/examples/examples-news-1.0.0.GA-full.html
trunk/documentation/whatsnew/examples/examples-news-1.0.0.GA.html
trunk/documentation/whatsnew/examples/examples-news-1.1.0.CR2.html
trunk/documentation/whatsnew/examples/examples-news-1.1.0.M1.html
trunk/documentation/whatsnew/examples/examples-news-1.1.0.M4.html
trunk/documentation/whatsnew/examples/examples-news-3.2.0.CR1.html
trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.Beta1.html
trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.Beta2.html
trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.CR1.html
trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.M2.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.0.cr1.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.1.beta1.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.Alpha1.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.Beta1.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.CR1.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.GA-full.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.CR1.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.CR2.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.M1.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.M2.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.M3.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.Beta1.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.Beta2.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.CR1.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.M1.html
trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.M2.html
trunk/documentation/whatsnew/index.html
trunk/documentation/whatsnew/jbds/jbds-news-1.1.0.CR1.html
trunk/documentation/whatsnew/jbds/jbds-news-1.1.0.beta1.html
trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.Beta1.html
trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.CR1.html
trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.GA-full.html
trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.GA.html
trunk/documentation/whatsnew/jbpm/jbpm-news-3.1.7.GA-full.html
trunk/documentation/whatsnew/jbpm/jbpm-news-3.2.0.M1.html
trunk/documentation/whatsnew/jbpm/jbpm-news-3.2.0.M2.html
trunk/documentation/whatsnew/jmx/jmx-news-0.5.0.CR1.html
trunk/documentation/whatsnew/jmx/jmx-news-1.0.0.GA-full.html
trunk/documentation/whatsnew/jst/jst-news-1.0.0.beta2.html
trunk/documentation/whatsnew/jst/jst-news-3.0.0.GA-full.html
trunk/documentation/whatsnew/jst/jst-news-3.0.0.GA.html
trunk/documentation/whatsnew/jst/jst-news-3.1.0.CR1.html
trunk/documentation/whatsnew/jst/jst-news-3.1.0.CR2.html
trunk/documentation/whatsnew/jst/jst-news-3.1.0.M1.html
trunk/documentation/whatsnew/jst/jst-news-3.1.0.M2.html
trunk/documentation/whatsnew/jst/jst-news-3.1.0.M3.html
trunk/documentation/whatsnew/jst/jst-news-3.2.0.Beta1.html
trunk/documentation/whatsnew/jst/jst-news-3.2.0.Beta2.html
trunk/documentation/whatsnew/jst/jst-news-3.2.0.CR1.html
trunk/documentation/whatsnew/jst/jst-news-3.2.0.M1.html
trunk/documentation/whatsnew/jst/jst-news-3.2.0.M2.html
trunk/documentation/whatsnew/maven/maven-news-1.0.0.CR1.html
trunk/documentation/whatsnew/maven/maven-news-1.0.0.M2.html
trunk/documentation/whatsnew/maven/maven-news-1.0.0.M3.html
trunk/documentation/whatsnew/maven/maven-news-1.1.0.CR2.html
trunk/documentation/whatsnew/maven/maven-news-3.2.0.CR1.html
trunk/documentation/whatsnew/maven/maven-news-3.2.0.M2.html
trunk/documentation/whatsnew/modeshape/modeshape-news-3.2.0.Beta2.html
trunk/documentation/whatsnew/modeshape/modeshape-news-7.1.0.M2.html
trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.Alpha1.html
trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.Beta1.html
trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.CR1.html
trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.GA-full.html
trunk/documentation/whatsnew/portlet/portlet-news-1.1.0.CR2.html
trunk/documentation/whatsnew/profiler/profiler-news-1.1.0.M2.html
trunk/documentation/whatsnew/profiler/profiler-news-1.1.0.M3.html
trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta1.html
trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta2.html
trunk/documentation/whatsnew/seam/seam-news-1.0.0.beta1.html
trunk/documentation/whatsnew/seam/seam-news-1.0.0.beta2.html
trunk/documentation/whatsnew/seam/seam-news-1.0.0.cr1.html
trunk/documentation/whatsnew/seam/seam-news-1.1.0.CR1.html
trunk/documentation/whatsnew/seam/seam-news-1.1.0.beta1.html
trunk/documentation/whatsnew/seam/seam-news-2.0.0.Alpha1.html
trunk/documentation/whatsnew/seam/seam-news-2.0.0.Beta1.html
trunk/documentation/whatsnew/seam/seam-news-2.0.0.CR1.html
trunk/documentation/whatsnew/seam/seam-news-2.0.0.CR2.html
trunk/documentation/whatsnew/seam/seam-news-3.0.0.GA-full.html
trunk/documentation/whatsnew/seam/seam-news-3.0.0.GA.html
trunk/documentation/whatsnew/seam/seam-news-3.1.0.CR1.html
trunk/documentation/whatsnew/seam/seam-news-3.1.0.M1.html
trunk/documentation/whatsnew/seam/seam-news-3.1.0.M2.html
trunk/documentation/whatsnew/seam/seam-news-3.1.0.M4.html
trunk/documentation/whatsnew/seam/seam-news-3.2.0.Beta1.html
trunk/documentation/whatsnew/seam/seam-news-3.2.0.Beta2.html
trunk/documentation/whatsnew/seam/seam-news-3.2.0.M1.html
trunk/documentation/whatsnew/seam/seam-news-3.2.0.M2.html
trunk/documentation/whatsnew/smooks/smooks-news-1.0.0.Beta1.html
trunk/documentation/whatsnew/smooks/smooks-news-1.0.0.GA-full.html
trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.CR1.html
trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.CR2.html
trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M1.html
trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M2.html
trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M3.html
trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M4.html
trunk/documentation/whatsnew/smooks/smooks-news-1.2.0.beta1.html
trunk/documentation/whatsnew/smooks/smooks-news-1.2.0.beta2.html
trunk/documentation/whatsnew/teiid/teiid-news-7.1.0.Beta1.html
trunk/documentation/whatsnew/teiid/teiid-news-7.1.0.CR1.html
trunk/documentation/whatsnew/teiid/teiid-news-7.1.0.M2.html
trunk/documentation/whatsnew/template/componentname-version.html
trunk/documentation/whatsnew/usage/usage-news-3.2.0.Beta1.html
trunk/documentation/whatsnew/usage/usage-news-3.2.0.Beta2.html
trunk/documentation/whatsnew/usage/usage-news-3.2.0.CR1.html
trunk/documentation/whatsnew/usage/usage-news-3.2.0.M2.html
trunk/documentation/whatsnew/vpe/vpe-news-2.0.0.cr1.html
trunk/documentation/whatsnew/vpe/vpe-news-2.1.0.CR1.html
trunk/documentation/whatsnew/vpe/vpe-news-2.1.0.beta1.html
trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.Alpha1.html
trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.Beta1.html
trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.CR1.html
trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.CR2.html
trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.GA-full.html
trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.GA.html
trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.CR1.html
trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.CR2.html
trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.M1.html
trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.M2.html
trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.M3.html
trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.Beta1.html
trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.Beta2.html
trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.CR1.html
trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.M1.html
trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.M2.html
trunk/documentation/whatsnew/ws/ws-news-1.0.0.Alpha1.html
trunk/documentation/whatsnew/ws/ws-news-1.0.0.GA-full.html
trunk/documentation/whatsnew/ws/ws-news-1.2.0.Beta1.html
trunk/documentation/whatsnew/ws/ws-news-1.2.0.M1.html
trunk/documentation/whatsnew/ws/ws-news-1.2.0.M2.html
Log:
Added Google analytics tracking to whatsnew
Modified: trunk/documentation/whatsnew/as/as-news-1.0.0.beta4.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-1.0.0.beta4.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-1.0.0.beta4.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 1.0.beta4 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 1.0.beta4 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-1.0.0.cr1.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-1.0.0.cr1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-1.0.0.cr1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JBoss AS Tools 1.0.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss AS Tools 1.0.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/as/as-news-1.1.0.Alpha1.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-1.1.0.Alpha1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-1.1.0.Alpha1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 2.1.0.Alpha1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 2.1.0.Alpha1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-1.1.0.beta1.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-1.1.0.beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-1.1.0.beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 1.1.0.beta1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 1.1.0.beta1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-2.0.0.Alpha1.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-2.0.0.Alpha1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-2.0.0.Alpha1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 2.0.0.Alpha1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 2.0.0.Alpha1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-2.0.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-2.0.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-2.0.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 2.0.0.Beta1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 2.0.0.Beta1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-2.0.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-2.0.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-2.0.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 2.0.0.CR1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 2.0.0.CR1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-2.0.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-2.0.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-2.0.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 2.0.0.CR2 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 2.0.0.CR2 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-2.0.0.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-2.0.0.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-2.0.0.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 2.0.0.GA News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 2.0.0.GA - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-2.0.0.GA.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-2.0.0.GA.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-2.0.0.GA.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 2.0.0.GA News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 2.0.0.GA - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-3.1.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-3.1.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-3.1.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 3.1.0.M4 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-3.1.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-3.1.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-3.1.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 3.1.0.CR2 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-3.1.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-3.1.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-3.1.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 2.1.0.M1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 3.1.0.M1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-3.1.0.M3.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-3.1.0.M3.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-3.1.0.M3.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 2.1.0.M3 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 3.1.0.M3 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-3.2.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-3.2.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-3.2.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 3.2.0.Beta1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 3.2.0.Beta1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-3.2.0.Beta2.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-3.2.0.Beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-3.2.0.Beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 3.2.0.Beta2 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 3.2.0.Beta2 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/as/as-news-3.2.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-3.2.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-3.2.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 3.2.0.CR1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 3.2.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/as/as-news-3.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-3.2.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/as/as-news-3.2.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss AS Tools 3.2.0.M2 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss AS Tools 3.2.0.M2 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/birt/birt-news-1.0.0.Alpha1.html
===================================================================
--- trunk/documentation/whatsnew/birt/birt-news-1.0.0.Alpha1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/birt/birt-news-1.0.0.Alpha1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JBoss BIRT Integration</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss BIRT Integration 1.0.0.alpha1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/birt/birt-news-1.0.0.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/birt/birt-news-1.0.0.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/birt/birt-news-1.0.0.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JBoss BIRT Integration 1.0.0.GA</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss BIRT Integration 1.0.0.GA - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/bpel/bpel-news-1.0.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/bpel/bpel-news-1.0.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/bpel/bpel-news-1.0.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>BPEL Tools 1.0.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss Eclipse BPEL Editor 1.0.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/bpel/bpel-news-1.0.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/bpel/bpel-news-1.0.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/bpel/bpel-news-1.0.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>BPEL Tools 1.0.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss Eclipse BPEL Editor 1.0.0.CR2 What's New</h1>
Modified: trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>BPEL Tools 1.1.0.beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss Eclipse BPEL Editor 1.1.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>BPEL Tools 1.0.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss Eclipse BPEL Editor 1.1.0.M1 What's New</h1>
Modified: trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>BPEL Tools 1.0.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss Eclipse BPEL Editor 1.1.0.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.beta1.html
===================================================================
--- trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>BPEL Tools 1.1.0.beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss Eclipse BPEL Editor 1.1.0.beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.beta2.html
===================================================================
--- trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/bpel/bpel-news-1.1.0.beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>BPEL Tools 1.1.0.beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss Eclipse BPEL Editor 1.1.0.beta2 What's New</h1>
Modified: trunk/documentation/whatsnew/cdi/cdi-news-3.1.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/cdi/cdi-news-3.1.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/cdi/cdi-news-3.1.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>CDI tools 3.1.0.CR2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>CDI tools 3.1.0.CR2 What's New</h1>
Modified: trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>CDI tools 3.2.0.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>CDI tools 3.2.0.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>CDI tools 3.2.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>CDI tools 3.2.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>CDI tools 3.2.0.M1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>CDI tools 3.2.0.M1 What's New</h1>
Modified: trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/cdi/cdi-news-3.2.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>CDI tools 3.2.0.M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>CDI tools 3.2.0.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/core/core-news-3.0.0.Alpha1.html
===================================================================
--- trunk/documentation/whatsnew/core/core-news-3.0.0.Alpha1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/core/core-news-3.0.0.Alpha1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Core 3.0.0.Alpha1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Core 3.0.0.Alpha1 What's New</h1>
Modified: trunk/documentation/whatsnew/core/core-news-3.0.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/core/core-news-3.0.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/core/core-news-3.0.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Core 3.0.0.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Core 3.0.0.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/core/core-news-3.0.0.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/core/core-news-3.0.0.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/core/core-news-3.0.0.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Core 3.0.0.GA What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Core 3.0.0.GA What's New</h1>
Modified: trunk/documentation/whatsnew/core/core-news-3.1.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/core/core-news-3.1.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/core/core-news-3.1.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Core/General</h1>
Modified: trunk/documentation/whatsnew/core/core-news-3.1.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/core/core-news-3.1.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/core/core-news-3.1.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Core/General</h1>
Modified: trunk/documentation/whatsnew/core/core-news-3.1.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/core/core-news-3.1.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/core/core-news-3.1.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Core/General</h1>
Modified: trunk/documentation/whatsnew/core/core-news-3.1.0.M3.html
===================================================================
--- trunk/documentation/whatsnew/core/core-news-3.1.0.M3.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/core/core-news-3.1.0.M3.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Core/General</h1>
Modified: trunk/documentation/whatsnew/core/core-news-3.2.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/core/core-news-3.2.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/core/core-news-3.2.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Core/General</h1>
Modified: trunk/documentation/whatsnew/core/core-news-3.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/core/core-news-3.2.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/core/core-news-3.2.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Core/General</h1>
<table border="0" cellpadding="10" cellspacing="0" width="80%">
Modified: trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.0.1.Beta2.html
===================================================================
--- trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.0.1.Beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.0.1.Beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New</title>
- </head>
+ <script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Deltacloud Development Tools 0.0.1.Beta2 What's New</h1>
Modified: trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.0.1.CR1.html
===================================================================
--- trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.0.1.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.0.1.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New</title>
- </head>
+ <script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Deltacloud Development Tools 0.0.1.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.0.1.M2.html
===================================================================
--- trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.0.1.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.0.1.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Deltacloud Development Tools 0.0.1.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/drools/drools-news-5.0.0.CR1-full.html
===================================================================
--- trunk/documentation/whatsnew/drools/drools-news-5.0.0.CR1-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/drools/drools-news-5.0.0.CR1-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Drools IDE 5.0.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Drools IDE 5.0.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/drools/drools-news-5.1.0.M2-full.html
===================================================================
--- trunk/documentation/whatsnew/drools/drools-news-5.1.0.M2-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/drools/drools-news-5.1.0.M2-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Drools IDE 5.1.0.M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Drools IDE 5.1.0.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.Beta2.html
===================================================================
--- trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.Beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.Beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Drools Guvnor 5.1.0.Beta2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Drools Guvnor 5.1.0.Beta2 What's New</h1>
Modified: trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Drools Guvnor 5.1.0.M1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Drools Guvnor 5.1.0.M1 What's New</h1>
Modified: trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Drools Guvnor 5.1.0.M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Drools Guvnor 5.1.0.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/esb/esb-news-1.0.0.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/esb/esb-news-1.0.0.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/esb/esb-news-1.0.0.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>ESB Tools 1.0.0.GA What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>ESB Tools 1.0.0.GA What's New</h1>
Modified: trunk/documentation/whatsnew/esb/esb-news-1.0.0.beta1.html
===================================================================
--- trunk/documentation/whatsnew/esb/esb-news-1.0.0.beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/esb/esb-news-1.0.0.beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>ESB tools 1.0.0.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>ESB tools 1.0.0.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/esb/esb-news-1.1.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/esb/esb-news-1.1.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/esb/esb-news-1.1.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>ESB tools 1.1.0.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>ESB tools 1.1.0.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/esb/esb-news-1.1.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/esb/esb-news-1.1.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/esb/esb-news-1.1.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>ESB tools 1.1.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>ESB tools 1.1.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/esb/esb-news-1.1.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/esb/esb-news-1.1.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/esb/esb-news-1.1.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>ESB tools 1.1.0.CR2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>ESB tools 1.1.0.CR2 What's New</h1>
Modified: trunk/documentation/whatsnew/esb/esb-news-1.1.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/esb/esb-news-1.1.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/esb/esb-news-1.1.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>ESB tools 1.1.0.CR2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>ESB tools 1.1.0.CR2 What's New</h1>
Modified: trunk/documentation/whatsnew/esb/esb-news-1.3.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/esb/esb-news-1.3.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/esb/esb-news-1.3.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -6,7 +6,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>ESB tools 1.3.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>ESB tools 1.3.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/esb/esb-news-1.3.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/esb/esb-news-1.3.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/esb/esb-news-1.3.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -6,7 +6,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>ESB tools 1.3.0.CR2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>ESB tools 1.3.0.CR2 What's New</h1>
Modified: trunk/documentation/whatsnew/esb/esb-news-1.4.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/esb/esb-news-1.4.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/esb/esb-news-1.4.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>ESB tools 1.4.0.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>ESB tools 1.4.0.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/esb/esb-news-1.4.0.Beta2.html
===================================================================
--- trunk/documentation/whatsnew/esb/esb-news-1.4.0.Beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/esb/esb-news-1.4.0.Beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>ESB tools 1.4.0.Beta2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>ESB tools 1.4.0.Beta2 What's New</h1>
Modified: trunk/documentation/whatsnew/esb/esb-news-1.4.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/esb/esb-news-1.4.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/esb/esb-news-1.4.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -6,7 +6,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>ESB tools 1.4.0.M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>ESB tools 1.4.0.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/examples/examples-news-1.0.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/examples/examples-news-1.0.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/examples/examples-news-1.0.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Examples 1.0.0.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Examples 1.0.0.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/examples/examples-news-1.0.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/examples/examples-news-1.0.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/examples/examples-news-1.0.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Examples 1.0.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Examples 1.0.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/examples/examples-news-1.0.0.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/examples/examples-news-1.0.0.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/examples/examples-news-1.0.0.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Examples 1.0.0.GA What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Examples 1.0.0.GA What's New</h1>
Modified: trunk/documentation/whatsnew/examples/examples-news-1.0.0.GA.html
===================================================================
--- trunk/documentation/whatsnew/examples/examples-news-1.0.0.GA.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/examples/examples-news-1.0.0.GA.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Examples 1.0.0.GA What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Examples 1.0.0.GA What's New</h1>
Modified: trunk/documentation/whatsnew/examples/examples-news-1.1.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/examples/examples-news-1.1.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/examples/examples-news-1.1.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Examples 1.1.0.CR2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Examples 1.1.0.CR2 What's New</h1>
Modified: trunk/documentation/whatsnew/examples/examples-news-1.1.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/examples/examples-news-1.1.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/examples/examples-news-1.1.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Examples 1.1.0.M1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Examples 1.1.0.M1 What's New</h1>
Modified: trunk/documentation/whatsnew/examples/examples-news-1.1.0.M4.html
===================================================================
--- trunk/documentation/whatsnew/examples/examples-news-1.1.0.M4.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/examples/examples-news-1.1.0.M4.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Examples 1.1.0.M4 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Examples 1.1.0.M4 What's New</h1>
Modified: trunk/documentation/whatsnew/examples/examples-news-3.2.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/examples/examples-news-3.2.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/examples/examples-news-3.2.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Examples 3.2.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Examples 3.2.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>GWT Integration 1.0.0.M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>GWT Integration 1.0.0.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.Beta2.html
===================================================================
--- trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.Beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.Beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>GWT Integration 1.0.0.Beta2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>GWT Integration 1.0.0.Beta2 What's New</h1>
Modified: trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>GWT Integration 1.0.0.Beta2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>GWT Integration 1.0.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/gwt/gwt-news-1.0.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>GWT Integration 1.0.0.M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>GWT Integration 1.0.0.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.0.cr1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.0.cr1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.0.cr1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.2.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.2.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.1.beta1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.1.beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.1.beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.2.1.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.2.1.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.Alpha1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.Alpha1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.Alpha1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.2.4.Alpha1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.2.4.Alpha1 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.2.4.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.2.4.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.CR1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.2.4.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.2.4.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.2.4.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate Tools 3.2.4.GA What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate Tools 3.2.4.GA What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.3.0.M4 and 3.3.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.3.0.M4 and 3.3.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.3.0.CR2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.3.0.CR2 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.3.0.M1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.3.0.M1 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.3.0.M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.3.0.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.M3.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.M3.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.3.0.M3.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.3.0.M3 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.3.0.M3 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.4.0.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.4.0.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.Beta2.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.Beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.Beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.4.0.Beta2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.4.0.Beta2 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.4.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.4.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.4.0.M1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.4.0.M1 What's New</h1>
Modified: trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.4.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Hibernate tools 3.4.0.M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Hibernate tools 3.4.0.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/index.html
===================================================================
--- trunk/documentation/whatsnew/index.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/index.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="whatsnew.css">
<title>JBoss Tools News and Noteworthy</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss Tools News and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/jbds/jbds-news-1.1.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/jbds/jbds-news-1.1.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jbds/jbds-news-1.1.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss Developer Studio 1.1.0.CR1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss Developer Studio 1.1.0.CR1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/jbds/jbds-news-1.1.0.beta1.html
===================================================================
--- trunk/documentation/whatsnew/jbds/jbds-news-1.1.0.beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jbds/jbds-news-1.1.0.beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss Developer Studio 1.1.0.beta1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss Developer Studio 1.1.0.beta1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss Developer Studio 2.0.0.Beta1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss Developer Studio 2.0.0.Beta1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss Developer Studio 2.0.0.CR1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss Developer Studio 2.0.0.CR1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss Developer Studio 2.0.0.Beta1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss Developer Studio 2.0.0.Beta1 - New and Noteworthy</h1>
@@ -55,8 +67,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss Developer Studio 2.0.0.CR1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss Developer Studio 2.0.0.CR1 - New and Noteworthy</h1>
@@ -116,8 +140,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss Developer Studio 2.0.0.GA News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss Developer Studio 2.0.0.GA - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.GA.html
===================================================================
--- trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.GA.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jbds/jbds-news-2.0.0.GA.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss Developer Studio 2.0.0.GA News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss Developer Studio 2.0.0.GA - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/jbpm/jbpm-news-3.1.7.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/jbpm/jbpm-news-3.1.7.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jbpm/jbpm-news-3.1.7.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>jBPM Tools 3.1.7.GA What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>jBPM Tools 3.1.7.GA What's New</h1>
Modified: trunk/documentation/whatsnew/jbpm/jbpm-news-3.2.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/jbpm/jbpm-news-3.2.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jbpm/jbpm-news-3.2.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>jBPM Tools 3.2.0.M1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>jBPM Tools 3.2.0.M1 What's New</h1>
Modified: trunk/documentation/whatsnew/jbpm/jbpm-news-3.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/jbpm/jbpm-news-3.2.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jbpm/jbpm-news-3.2.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>jBPM Tools 3.2.0.M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>jBPM Tools 3.2.0.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/jmx/jmx-news-0.5.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/jmx/jmx-news-0.5.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jmx/jmx-news-0.5.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JMX Tools 0.5.beta1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JMX Tools 0.5.beta1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/jmx/jmx-news-1.0.0.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/jmx/jmx-news-1.0.0.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jmx/jmx-news-1.0.0.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JMX Tools 1.0.0.GA News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JMX Tools 1.0.0.GA - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/jst/jst-news-1.0.0.beta2.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-1.0.0.beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jst/jst-news-1.0.0.beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss JEE Standard Tools 1.0.beta2 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss JEE Standard Tools (JST) 1.0.beta2 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/jst/jst-news-3.0.0.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-3.0.0.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jst/jst-news-3.0.0.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JST/JSF tools 3.0.0.GA What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JST/JSF Tools 3.0.0.GA What's New</h1>
Modified: trunk/documentation/whatsnew/jst/jst-news-3.0.0.GA.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-3.0.0.GA.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jst/jst-news-3.0.0.GA.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JST/JSF tools 3.0.0.GA What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JST/JSF 3.0.0.GA What's New</h1>
Modified: trunk/documentation/whatsnew/jst/jst-news-3.1.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-3.1.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jst/jst-news-3.1.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>JST/JSF 3.1.0.M4 and 3.1.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JST/JSF 3.1.0.M4 and 3.1.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/jst/jst-news-3.1.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-3.1.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jst/jst-news-3.1.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>JST/JSF 3.1.0.CR2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JST/JSF 3.1.0.CR2 What's New</h1>
Modified: trunk/documentation/whatsnew/jst/jst-news-3.1.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-3.1.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jst/jst-news-3.1.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JST/JSF 3.1.0.M1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JST/JSF 3.1.0.M1 What's New</h1>
Modified: trunk/documentation/whatsnew/jst/jst-news-3.1.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-3.1.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jst/jst-news-3.1.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JST/JSF 3.1.0.M1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JST/JSF 3.1.0.M1 What's New</h1>
Modified: trunk/documentation/whatsnew/jst/jst-news-3.1.0.M3.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-3.1.0.M3.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jst/jst-news-3.1.0.M3.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JST/JSF 3.1.0.M3 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JST/JSF 3.1.0.M3 What's New</h1>
Modified: trunk/documentation/whatsnew/jst/jst-news-3.2.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-3.2.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jst/jst-news-3.2.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>JST/JSF 3.2.0.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JST/JSF 3.2.0.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/jst/jst-news-3.2.0.Beta2.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-3.2.0.Beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jst/jst-news-3.2.0.Beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>JST/JSF 3.2.0.Beta2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JST/JSF 3.2.0.Beta2 What's New</h1>
Modified: trunk/documentation/whatsnew/jst/jst-news-3.2.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-3.2.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jst/jst-news-3.2.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>JST/JSF 3.2.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JST/JSF 3.2.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/jst/jst-news-3.2.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-3.2.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jst/jst-news-3.2.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>JST/JSF 3.2.0.M1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JST/JSF 3.2.0.M1 What's New</h1>
Modified: trunk/documentation/whatsnew/jst/jst-news-3.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/jst/jst-news-3.2.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/jst/jst-news-3.2.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>JST/JSF 3.2.0.M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JST/JSF 3.2.0.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/maven/maven-news-1.0.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/maven/maven-news-1.0.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/maven/maven-news-1.0.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New in Maven Tools</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Maven Tools</h1>
Modified: trunk/documentation/whatsnew/maven/maven-news-1.0.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/maven/maven-news-1.0.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/maven/maven-news-1.0.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New in Maven Tools</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Maven Tools</h1>
Modified: trunk/documentation/whatsnew/maven/maven-news-1.0.0.M3.html
===================================================================
--- trunk/documentation/whatsnew/maven/maven-news-1.0.0.M3.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/maven/maven-news-1.0.0.M3.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New in Maven Tools</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Maven Tools</h1>
Modified: trunk/documentation/whatsnew/maven/maven-news-1.1.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/maven/maven-news-1.1.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/maven/maven-news-1.1.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New in Maven Tools</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Maven Tools</h1>
Modified: trunk/documentation/whatsnew/maven/maven-news-3.2.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/maven/maven-news-3.2.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/maven/maven-news-3.2.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New in Maven Tools</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Maven Tools 3.2.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/maven/maven-news-3.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/maven/maven-news-3.2.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/maven/maven-news-3.2.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New in Maven Tools</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Maven Tools</h1>
Modified: trunk/documentation/whatsnew/modeshape/modeshape-news-3.2.0.Beta2.html
===================================================================
--- trunk/documentation/whatsnew/modeshape/modeshape-news-3.2.0.Beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/modeshape/modeshape-news-3.2.0.Beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>ModeShape What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>ModeShape 3.2.0 Beta2 What's New</h1>
<p align="right"><a href="../index.html">< Main Index</a></p>
Modified: trunk/documentation/whatsnew/modeshape/modeshape-news-7.1.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/modeshape/modeshape-news-7.1.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/modeshape/modeshape-news-7.1.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>ModeShape What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>ModeShape 7.1.0 M2 What's New</h1>
<p align="right"><a href="../index.html">< Main Index</a></p>
Modified: trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.Alpha1.html
===================================================================
--- trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.Alpha1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.Alpha1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JBoss Tools Portlet</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss Tools Portlet 3.0.0.alpha1 - New and Noteworthy</h1>
<p>Last revised August 10, 2008</p>
Modified: trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JBoss Tools Portlet</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss Tools Portlet 3.0.0.Beta1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JBoss Tools Portlet</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss Tools Portlet 3.0.0.CR1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/portlet/portlet-news-1.0.0.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JBoss Tools Portlet 1.0.0.GA</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss Tools Portlet 1.0.0.GA - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/portlet/portlet-news-1.1.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/portlet/portlet-news-1.1.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/portlet/portlet-news-1.1.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JBoss Tools Portlet</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss Tools Portlet 3.1.0.CR2</h1>
Modified: trunk/documentation/whatsnew/profiler/profiler-news-1.1.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/profiler/profiler-news-1.1.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/profiler/profiler-news-1.1.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss Profiler Tools 1.0.0.M2 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss Profiler Tools 1.0.0.M2 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/profiler/profiler-news-1.1.0.M3.html
===================================================================
--- trunk/documentation/whatsnew/profiler/profiler-news-1.1.0.M3.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/profiler/profiler-news-1.1.0.M3.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>JBoss Profiler Tools 1.0.0.M2 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>JBoss Profiler Tools 1.0.0.M2 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta1.html
===================================================================
--- trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>Red Hat Developer Studio 1.0.beta1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>Red Hat Developer Studio 1.0.beta1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta2.html
===================================================================
--- trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>Red Hat Developer Studio 1.0.beta2 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>Red Hat Developer Studio 1.0.beta2 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-1.0.0.beta1.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-1.0.0.beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-1.0.0.beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>Seam Tools 1.0.beta1 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>Seam Tools 1.0.beta1 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-1.0.0.beta2.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-1.0.0.beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-1.0.0.beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -3,8 +3,20 @@
<head>
<link rel="stylesheet" href="../whatsnew.css">
<title>Seam Tools 1.0.beta2 News</title>
-</head>
+<script type="text/javascript">
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+
<body>
<h1>Seam Tools 1.0.beta2 - New and Noteworthy</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-1.0.0.cr1.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-1.0.0.cr1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-1.0.0.cr1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Seam tools 1.0.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 1.0.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-1.1.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-1.1.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-1.1.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Seam tools 1.1.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 1.1.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-1.1.0.beta1.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-1.1.0.beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-1.1.0.beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Seam tools 1.1.0.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 1.1.0.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-2.0.0.Alpha1.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-2.0.0.Alpha1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-2.0.0.Alpha1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Seam tools 2.0.0.Alpha1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 2.0.0.Alpha1 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-2.0.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-2.0.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-2.0.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Seam tools 2.0.0.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 2.0.0.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-2.0.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-2.0.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-2.0.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Seam tools 2.0.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 2.0.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-2.0.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-2.0.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-2.0.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Seam tools 2.0.0.CR2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 2.0.0.CR2 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-3.0.0.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-3.0.0.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-3.0.0.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Seam Tools 3.0.0.GA What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam Tools 3.0.0.GA What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-3.0.0.GA.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-3.0.0.GA.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-3.0.0.GA.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Seam tools 3.0.0.GA What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 3.0.0.GA What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-3.1.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-3.1.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-3.1.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Seam tools 3.1.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 3.1.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-3.1.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-3.1.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-3.1.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Seam tools 3.1.0.M1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 3.1.0.M1 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-3.1.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-3.1.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-3.1.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Seam tools 3.1.0.M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 3.1.0.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-3.1.0.M4.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-3.1.0.M4.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-3.1.0.M4.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Seam tools 3.1.0.M4 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 3.1.0.M4 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-3.2.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-3.2.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-3.2.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Seam tools 3.2.0.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 3.2.0.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-3.2.0.Beta2.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-3.2.0.Beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-3.2.0.Beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Seam tools 3.2.0.Beta2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 3.2.0.Beta2 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-3.2.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-3.2.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-3.2.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Seam tools 3.2.0.M1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 3.2.0.M1 What's New</h1>
Modified: trunk/documentation/whatsnew/seam/seam-news-3.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/seam/seam-news-3.2.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/seam/seam-news-3.2.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Seam tools 3.2.0.M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Seam tools 3.2.0.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/smooks/smooks-news-1.0.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/smooks/smooks-news-1.0.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/smooks/smooks-news-1.0.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Smooks tools 3.0.0.Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Smooks tools 3.0.0.Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/smooks/smooks-news-1.0.0.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/smooks/smooks-news-1.0.0.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/smooks/smooks-news-1.0.0.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Smooks Tools 1.0.0.GA What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Smooks Tools 1.0.0.GA What's New</h1>
Modified: trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Smooks tools 1.1.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Smooks tools 1.1.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Smooks tools 1.1.0.CR2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Smooks tools 1.1.0.CR2 What's New</h1>
Modified: trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Smooks tools 1.1.0.M1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Smooks tools 1.1.0.M1 What's New</h1>
Modified: trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Smooks tools 1.1.0.M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Smooks tools 1.1.0.M2 What's New</h1>
Modified: trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M3.html
===================================================================
--- trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M3.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M3.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Smooks tools 1.1.0.M3 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Smooks tools 1.1.0.M3 What's New</h1>
Modified: trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M4.html
===================================================================
--- trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M4.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/smooks/smooks-news-1.1.0.M4.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Smooks tools 1.1.0.M4 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Smooks tools 1.1.0.M4 What's New</h1>
Modified: trunk/documentation/whatsnew/smooks/smooks-news-1.2.0.beta1.html
===================================================================
--- trunk/documentation/whatsnew/smooks/smooks-news-1.2.0.beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/smooks/smooks-news-1.2.0.beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Smooks tools 1.2.0.beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Smooks tools 1.2.0.beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/smooks/smooks-news-1.2.0.beta2.html
===================================================================
--- trunk/documentation/whatsnew/smooks/smooks-news-1.2.0.beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/smooks/smooks-news-1.2.0.beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>Smooks tools 1.2.0.beta2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Smooks tools 1.2.0.beta2 What's New</h1>
Modified: trunk/documentation/whatsnew/teiid/teiid-news-7.1.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/teiid/teiid-news-7.1.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/teiid/teiid-news-7.1.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Teiid Designer What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Teiid Designer 7.1.0 Beta1 What's New</h1>
<p align="right"><a href="../index.html">< Main Index</a></p>
Modified: trunk/documentation/whatsnew/teiid/teiid-news-7.1.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/teiid/teiid-news-7.1.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/teiid/teiid-news-7.1.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -6,7 +6,19 @@
content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" href="../whatsnew.css">
<title>Teiid Designer What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Teiid Designer 7.1.0 CR1 What's New</h1>
<p align="right"><a href="../index.html">< Main Index</a> <a
Modified: trunk/documentation/whatsnew/teiid/teiid-news-7.1.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/teiid/teiid-news-7.1.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/teiid/teiid-news-7.1.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Teiid Designer What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Teiid Designer 7.1.0 M2 What's New</h1>
<p align="right"><a href="../index.html">< Main Index</a> <a href="../modeshape/modeshape-news-7.1.0.M2.html">Modeshape ></a></p>
Modified: trunk/documentation/whatsnew/template/componentname-version.html
===================================================================
--- trunk/documentation/whatsnew/template/componentname-version.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/template/componentname-version.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>JBoss Tools What's New Template</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>JBoss Tools What's New Template</h1>
<p>Last revised November 7, 2007</p>
Modified: trunk/documentation/whatsnew/usage/usage-news-3.2.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/usage/usage-news-3.2.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/usage/usage-news-3.2.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -6,7 +6,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Usage Reporting 3.2.0.M2</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Usage Reporting 3.2.0.Beta1</h1>
Modified: trunk/documentation/whatsnew/usage/usage-news-3.2.0.Beta2.html
===================================================================
--- trunk/documentation/whatsnew/usage/usage-news-3.2.0.Beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/usage/usage-news-3.2.0.Beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -6,7 +6,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Usage Reporting 3.2.0.Beta2</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Usage Reporting 3.2.0.Beta2</h1>
Modified: trunk/documentation/whatsnew/usage/usage-news-3.2.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/usage/usage-news-3.2.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/usage/usage-news-3.2.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -6,7 +6,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Usage Reporting 3.2.0.CR1</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Usage Reporting 3.2.0.CR1</h1>
Modified: trunk/documentation/whatsnew/usage/usage-news-3.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/usage/usage-news-3.2.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/usage/usage-news-3.2.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -6,7 +6,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Usage Reporting 3.2.0.M2</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Usage Reporting 3.2.0.M2</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-2.0.0.cr1.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-2.0.0.cr1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-2.0.0.cr1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Visual Page Editor 2.0.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Visual Page Editor 2.0.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-2.1.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-2.1.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-2.1.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Visual Page Editor 2.1.0.CR1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Visual Page Editor 2.1.0.CR1 What's New</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-2.1.0.beta1.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-2.1.0.beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-2.1.0.beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Visual Page Editor 2.1.0.Beta What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Visual Page Editor 2.1.0.Beta What's New</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.Alpha1.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.Alpha1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.Alpha1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>What's New Visual Page Editor</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor</h1>
<p>Last revised August 8, 2008</p>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>What's New Visual Page Editor</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>What's New Visual Page Editor</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>What's New Visual Page Editor</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>What's New Visual Page Editor</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.GA.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.GA.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.0.0.GA.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>What's New Visual Page Editor</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Visual Page Editor 3.1.0.CR1</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor 3.1.0.CR1</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.CR2.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.CR2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.CR2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Visual Page Editor 3.1.0.CR2</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor 3.1.0.CR2</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Visual Page Editor</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Visual Page Editor</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.M3.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.M3.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.1.0.M3.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Visual Page Editor</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Visual Page Editor 3.2.0.Beta1</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor 3.2.0.Beta1</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.Beta2.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.Beta2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.Beta2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Visual Page Editor 3.2.0.Beta1</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor 3.2.0.Beta2</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.CR1.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.CR1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.CR1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Visual Page Editor</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Visual Page Editor 3.2.0.M1</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor 3.2.0.M1</h1>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css" />
<title>What's New Visual Page Editor 3.2.0.M2</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>What's New Visual Page Editor 3.2.0.M2</h1>
Modified: trunk/documentation/whatsnew/ws/ws-news-1.0.0.Alpha1.html
===================================================================
--- trunk/documentation/whatsnew/ws/ws-news-1.0.0.Alpha1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/ws/ws-news-1.0.0.Alpha1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Web Services 1.0.0.Alpha What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Web Services 1.0.0.Alpha What's New</h1>
Modified: trunk/documentation/whatsnew/ws/ws-news-1.0.0.GA-full.html
===================================================================
--- trunk/documentation/whatsnew/ws/ws-news-1.0.0.GA-full.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/ws/ws-news-1.0.0.GA-full.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>Web Services 1.0.0.GA What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>Web Services 1.0.0.GA What's New</h1>
Modified: trunk/documentation/whatsnew/ws/ws-news-1.2.0.Beta1.html
===================================================================
--- trunk/documentation/whatsnew/ws/ws-news-1.2.0.Beta1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/ws/ws-news-1.2.0.Beta1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>WS Tools 3.2.0 Beta1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>WS tools 3.2.0 Beta1 What's New</h1>
Modified: trunk/documentation/whatsnew/ws/ws-news-1.2.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/ws/ws-news-1.2.0.M1.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/ws/ws-news-1.2.0.M1.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>WS tools 3.2.0 M1 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>WS tools 3.2.0 M1 What's New</h1>
Modified: trunk/documentation/whatsnew/ws/ws-news-1.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/ws/ws-news-1.2.0.M2.html 2011-02-21 13:32:13 UTC (rev 29254)
+++ trunk/documentation/whatsnew/ws/ws-news-1.2.0.M2.html 2011-02-21 15:24:33 UTC (rev 29255)
@@ -7,7 +7,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="../whatsnew.css"/>
<title>WS Tools 3.2.0 M2 What's New</title>
-</head>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
<body>
<h1>WS tools 3.2.0 M2 What's New</h1>
13 years, 10 months