[svn] 2877: Added a "flex4-compile" target in the top-level Ants script for easily recompiling flex4.swc.

Revision: 2877
Author: [email protected]
Date: 2008-08-18 18:15:18 -0700 (Mon, 18 Aug 2008)
Log Message:
Added a "flex4-compile" target in the top-level Ants script for easily recompiling flex4.swc. It is similar to "framework-compile" and "airframework-compile".
Reviewer: N/A
Bugs: -
QA: No
Doc: No
Modified Paths:
flex/sdk/trunk/build.xml

In the default php.ini is set open_basedir which limits work with php only to few directories (and directories bellow them). There is set /srv/http, /home,/tmp and /usr/share/pear by default.
To allow your vhost you should add /data/www or set empty value.

Similar Messages

  • Adding Content To the Top-Level of Navigation bar ?

    Hi,experts ,
       i have a problem with adding content to the top-level of navigation bar ?
    I have the authority of administration.I have added a customizing role with the entry-point property to myself userid . I have checked my navigation-target page's property can be visible in top-level navigation. I checked my my display level is set as 2 .
       However ,i dont get the folder content at the top-level navigation.Anyway,when i check the delta link trace,there is no folder that connect to my role .
       Anyone helps me out ?
    Thanks in Advance .

    Hi Eleanor,
    If you already created a role with an entry point and assigned it directly to you user, you may just have to refresh the portal page. You may also check the authorizations of you role.

  • HT1423 I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

    I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

    I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

  • [svn:fx-trunk] 5915: Fixed compilation errors in the flex4test dev project by changing mx: String to fx:String .

    Revision: 5915<br />Author:   [email protected]<br />Date:     2009-04-03 14:17:15 -0700 (Fri, 03 Apr 2009)<br /><br />Log Message:<br />-----------<br />Fixed compilation errors in the flex4test dev project by changing <mx:String> to <fx:String>.<br /><br />QE Notes: None<br />Doc Notes: None<br />Bugs: None<br />Reviewer: N/A<br /><br />Modified Paths:<br />--------------<br />    flex/sdk/trunk/development/eclipse/flex/flex4test/src/NewEffects.mxml<br />    flex/sdk/trunk/development/eclipse/flex/flex4test/src/RemoveItemsTest.mxml<br />    flex/sdk/trunk/development/eclipse/flex/flex4test/src/SkinTest.mxml<br />    flex/sdk/trunk/development/eclipse/flex/flex4test/src/components/AnimationPropertiesForm. mxml<br />    flex/sdk/trunk/development/eclipse/flex/flex4test/src/flex4test.mxml

    Revision: 5915<br />Author:   [email protected]<br />Date:     2009-04-03 14:17:15 -0700 (Fri, 03 Apr 2009)<br /><br />Log Message:<br />-----------<br />Fixed compilation errors in the flex4test dev project by changing <mx:String> to <fx:String>.<br /><br />QE Notes: None<br />Doc Notes: None<br />Bugs: None<br />Reviewer: N/A<br /><br />Modified Paths:<br />--------------<br />    flex/sdk/trunk/development/eclipse/flex/flex4test/src/NewEffects.mxml<br />    flex/sdk/trunk/development/eclipse/flex/flex4test/src/RemoveItemsTest.mxml<br />    flex/sdk/trunk/development/eclipse/flex/flex4test/src/SkinTest.mxml<br />    flex/sdk/trunk/development/eclipse/flex/flex4test/src/components/AnimationPropertiesForm. mxml<br />    flex/sdk/trunk/development/eclipse/flex/flex4test/src/flex4test.mxml

  • [svn] 4305: Added an optimizer plugin facility to the GlobalOptimizer toolchain.

    Revision: 4305
    Author: [email protected]
    Date: 2008-12-15 07:37:19 -0800 (Mon, 15 Dec 2008)
    Log Message:
    Added an optimizer plugin facility to the GlobalOptimizer toolchain.
    Refactored GlobalOptimizer.java, moved classes that
    are relevant to plugins into their own source files.
    Modified Paths:
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/AbcThunkGen.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/GlobalOptimizer.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/TraceManager.java
    Added Paths:
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/Block.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/CallGraph.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/Edge.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/Expr.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/Handler.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/Method.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/Name.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/Namespace.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/Nsset.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/OptimizerConstants.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/OptimizerPlugin.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/Type.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/TypeCache.java
    flex/sdk/trunk/modules/asc/src/java/adobe/abc/Typeref.java

    Andrew Gvozdev wrote:
    > Normally findFileName() looks recursively through all files.
    You're right, it is. This is probably a non-issue.
    I was getting the file name from the error message, e.g.:
    c:\projects\eclipse\Proj\mod1\util\micro\foo.c
    I stripped off the path, and called findFileName with just the filename,
    e.g.:
    int i = fileName.lastIndexOf(java.io.File.separatorChar);
    if (fileName.indexOf(projDir) != -1) {
    fileName = fileName.substring(projDir.length());
    IFile file = errorParserManager.findFileName(fileName);
    This would find the file in errorParserManager's fFilesInProject map.
    findFileName then calls the isPossibleMatch(IPath location, IPath
    absoluteLocation) method, which in this example would be:
    isPossibleMatch("foo.c", "c:/projects/eclipse/Proj/mod1/util/micro/foo.c");
    Since "location" ("foo.c") is not absolutely, isPossibleMatch does:
    int prefixLen = absoluteLocation.segmentCount() - location.segmentCount();
    return prefixLen >= 0 &&
    absoluteLocation.removeFirstSegments(prefixLen).equals(locat ion);
    The problem is that removeFirstSegments intentionally does not remove the
    device ID, so this comparison becomes:
    "c:foo.c".equals("foo.c")
    Since that is false, isPossibleMatch returns false, and the findFileName
    returns null.
    Now, that may be a bug. For non-absolute paths is seems like
    isPossibleMatch should call a removeFirstSegments that also removes the
    device ID. However, the solution for my error parser was to simply not
    strip the path before calling findFileName. So now I do:
    IFile file =
    errorParserManager.findFileName("c:\projects\eclipse\Proj\mod1\util\micro\foo.c ");
    findFileName strips the path itself before querying its map, but leaves
    the path intact when calling isPossibleMatch. isPosibleMatch uses a
    different check when its given an absolute location:
    return location.equals(absoluteLocation);
    This returns true, so findFileName returns the IFile resource from
    fFilesInProject, and everything's OK.

  • How to include jar files in ant script for compiling

    i am trying to manually include j2ee.jar for compiling, here is the entire build.xml:
    <?xml version="1.0"?>
    <!--PRIMARY build file for all of dev modual -->
    <project name="com" default="compile.all" basedir="../">
    <path id="project.class.path">
    <pathelement location="lib/"/>
    <pathelement path="${java.class.path}/"/>
    <pathelement path="${additional.path}"/>
    <pathelement path="${CLASSPATH}" />
    <pathelement path="${classpath}" />
    </path>
    <property name="SRCDIR" value="${basedir}/java" />
    <property name="DSTDIR" value="${basedir}/classes" />
    <property name="LIBDIR" value="${basedir}/libs" />
    <property name="JARDIR" value="${basedir}/jars" />
    <property name="DOCDIR" value="${basedir}/docs" />
    <property name="ORACLE.JAR" value="${LIBDIR}/orcl/8.1.7/classes12.zip" />
    <property name="JUNIT.JAR" value="${LIBDIR}/junit/3.7/junit.jar" />
    <property name="CLASSPATH" value="z:/tools/java;${SRCDIR};${DSTDIR};${JUNIT.JAR};${ORACLE.JAR}" />
    <property name="POLICYFILE" value="${SRCDIR}/com/leader/cti/main/ctimain.policy" />
    <property name="DEBUG_FLAG" value="on" />
    <property name="OPTIMIZE_FLAG" value="off" />
    <property name="DEPRECATION_FLAG" value="off" />
    <property name="RMI_VERSION" value="1.2" />
    <!-- builds everything -->
    <target name="compile.all">
    <antcall target="compile.cti"/>
    </target>
    <target name="compile.vbsf" description="Compiles files for vbsf.jar.">
    <mkdir dir="${DSTDIR}"/>
    <copy file="${SRCDIR}/VBSFELK5UD3SWQ2E.class" todir="${DSTDIR}"/>
    <javac srcdir="${SRCDIR}" destdir="${DSTDIR}" classpath="${CLASSPATH}" debug="${DEBUG_FLAG}" deprecation="${DEPRECATION_FLAG}" optimize="${OPTIMIZE_FLAG}" >
    <include name="com/objectmatter/**/*.java" />
    </javac>
    </target>
    <target name="compile.persist" description="Compiles files for persist.jar." depends="compile.vbsf" >
    <javac srcdir="${SRCDIR}" destdir="${DSTDIR}" debug="${DEBUG_FLAG}" deprecation="${DEPRECATION_FLAG}" optimize="${OPTIMIZE_FLAG}" >
    <classpath refid="project.class.path"/>
    <include name="com/leader/persist/**/*.java" />
    <include name="testcom/leader/persist/**/*.java" />
    </javac>
    </target>
    <target name="compile.cti" description="Compiles files for both cti jars." depends="compile.persist,compile.cti.only" />
    <target name="compile.cti.only" description="Compiles files for both cti jars." >
    <javac srcdir="${SRCDIR}" destdir="${DSTDIR}" debug="${DEBUG_FLAG}" deprecation="${DEPRECATION_FLAG}" optimize="${OPTIMIZE_FLAG}" >
    <classpath refid="project.class.path"/>
    <include name="com/leader/cti/**/*.java" />
    <include name="testcom/leader/cti/**/*.java" />
    </javac>
    <rmic classpath="${CLASSPATH}" base="${DSTDIR}" stubversion="${RMI_VERSION}" >
    <include name="com/leader/cti/main/RMICTIService.class" />
    <include name="com/leader/cti/main/RMIConferenceCall.class" />
    <include name="com/leader/cti/main/RMIConferenceCallReservation.class" />
    <include name="com/leader/cti/main/FakeRmiCtiService.class" />
    <include name="com/leader/cti/main/FakeRmiConferenceCall.class" />
    <!--include name="com/leader/cti/main/DerivedQueueReceiver.class"/-->
    </rmic>
    </target>
    <!-- build all dev jars -->
    <target name="jar.all"
    description="Create all jar files"
    depends="jar.vbsf, jar.persist, jar.jeti, jar.service"/>
    <!-- build vbsf.jar -->
    <target name="jar.vbsf"
    description="Create client distribution jar for vbsf code"
    depends="compile.vbsf" >
    <mkdir dir="${JARDIR}" />
    <jar jarfile="${JARDIR}/vbsf.jar"
    basedir="${DSTDIR}" >
    <include name="VBSFELK5UD3SWQ2E.class"/>
    <include name="com/objectmatter/**/*.class" />
    </jar>
    </target>
    <!-- build persist.jar -->
    <target name="jar.persist"
    description="Create client distribution jar"
    depends="compile.vbsf,compile.persist" >
    <mkdir dir="${JARDIR}" />
    <jar jarfile="${JARDIR}/persist.jar"
    basedir="${DSTDIR}" >
    <include name="com/leader/persist/**/*.class" />
    </jar>
    </target>
    <!-- build jeti.jar -->
    <target name="jar.jeti"
    description="Create client distribution jar"
    depends="compile.vbsf,compile.persist,compile.cti" >
    <mkdir dir="${JARDIR}" />
    <jar jarfile="${JARDIR}/jeti.jar"
    basedir="${DSTDIR}" >
    <include name="com/leader/cti/rmiint/*" />
    <include name="com/leader/cti/main/*Stub*" />
    <include name="com/leader/cti/util/**" />
    <include name="com/leader/cti/vru/*" />
    <include name="com/leader/cti/interfaces/*" />
    <include name="com/leader/cti/history/*" />
    <include name="com/leader/cti/autodial/*" />
    </jar>
    </target>
    <!-- build jeti_service.jar -->
    <target name="jar.service"
    description="Create the jar file for the service"
    depends="compile.vbsf,compile.persist,compile.cti" >
    <mkdir dir="${JARDIR}" />
    <copy file="${basedir}/vbsf/cti.schema" tofile="${DSTDIR}/cti.schema" />
    <copy file="${basedir}/vbsf/cti.schema" tofile="/tools/java/com/leader/osapplication/persist/cti.schema" />
    <jar jarfile="${JARDIR}/jeti_service.jar"
    basedir="${DSTDIR}" >
    <include name="com/leader/cti/**" />
    <include name="cti.schema" />
    </jar>
    </target>
    <!-- build jeti.jar, jeti_service.jar -->
    <target name="jar.cti"
    description ="Create client/server jars for cti"
    depends="jar.jeti,jar.service" />
    <!-- clean everything. -->
    <target name="clean">
    <delete dir="${DSTDIR}" />
    <delete dir="${JARDIR}" />
    <delete dir="${DOCDIR}" />
    </target>
    <target name="clean.cti" description="clean cti class files (not jars)">
    <delete dir="${DSTDIR}/com/leader/cti" />
    <delete dir="${DSTDIR}/testcom/leader/cti" />
    </target>
    <!-- Run the gui CTI tests -->
    <target name="test_cti_gui">
    <java classname="junit.swingui.TestRunner" classpath="${CLASSPATH}" fork="yes">
    <arg value="testcom.leader.cti.CTIPackageTest"/>
    <sysproperty key="leader.unique_number_generator.file" value="unique_number_generator_file_test" />
    <sysproperty key="vbsf.repository" value="/tools/java/dev/vbsf" />
    <sysproperty key="vbsf.enableGlobalCaching" value="false" />
    </java>
    </target>
    <target name="test.cti.gui"
    depends="test_cti_gui" />
    <!-- Run the text version of CTI tests -->
    <target name="test">
    <java classname="junit.textui.TestRunner" classpath="${CLASSPATH}" fork="yes">
    <arg value="testcom.leader.cti.CTIPackageTest"/>
    <sysproperty key="leader.unique_number_generator.file" value="unique_number_generator_file_test" />
    </java>
    </target>
    <!-- Run CTI service -->
    <target name="run.service"
    description="run the service normally"
    depends="compile.all" >
    <java classname="com.leader.cti.main.CTIMain"
    classpath="${CLASSPATH}"
    fork="yes" >
    <sysproperty key="java.security.policy"
    file="${POLICYFILE}" />
    <sysproperty key="config.dir"
    value="${SRCDIR}/com/leader/cti/main/" />
    </java>
    </target>
    <!-- Run fake CTI service -->
    <target name="run.service.fake"
    description="run the fake service"
    depends="compile.all" >
    <java classname="com.leader.cti.main.FakeCtiMain"
    classpath="${CLASSPATH}"
    fork="yes" >
    <sysproperty key="java.security.policy"
    file="${POLICYFILE}" />
    <sysproperty key="config.dir"
    value="${SRCDIR}/com/leader/cti/main/" />
    </java>
    </target>
    <!-- Run CTI service emulator -->
    <target name="run.service.emulator"
    description="run the service normally"
    depends="compile.all" >
    <java classname="com.leader.cti.main.CTIMain"
    classpath="${CLASSPATH}"
    fork="yes" >
    <sysproperty key="java.security.policy"
    file="${POLICYFILE}" />
    <sysproperty key="config.dir"
    value="${SRCDIR}/com/leader/cti/main/" />
    <sysproperty key="vru.propertyfile"
    value="emulator.properties" />
    </java>
    </target>
    <!-- Runs the CTI service and emulator -->
    <target name="run.emulator"
    description="run the service and the emulator"
    depends="compile.all" >
    <java classname="testcom.leader.cti.vru.emulator.VRUEmulator"
    classpath="${CLASSPATH}"
    fork="yes" />
    </target>
    <!-- Runs the gui CONCALL testss -->
    <target name="run.gui"
    description="run the concall test gui"
    depends="compile.all" >
    <java classname="testcom.leader.cti.main.SwingClient"
    classpath="${CLASSPATH}"
    fork="yes" >
    <sysproperty key="java.security.policy"
    file="${POLICYFILE}" />
    </java>
    </target>
    <!-- Fires the maptool up. Defaults to CTI`s Schema file. -->
    <target name="maptool" >
    <java classname="com.objectmatter.bsf.mapping.toolgui.MapTool"
    fork="yes"
    classpath="${CLASSPATH}" >
    <sysproperty key="vbsf.repository" value="${basedir}/vbsf" />
    </java>
    </target>
    <target name="javadoc_cti">
    <mkdir dir="${basedir}/docs"/>
    <javadoc packagenames="com.leader.*" classpath="${CLASSPATH}" sourcepath="${SRCDIR}" destdir="${DOCDIR}\cti" author="true" version="true" use="true" windowtitle="Leader CTI API" doctitle="Leader Technologies, Inc" bottom="Copyright &#169; 2005 Leader Technologies Incorporated.<BR>All Rights Reserved." maxmemory="128m">
    <group title="Leader CTI Packages" packages="com.leader*"/>
    </javadoc>
    </target>
    <target name="javadoc_vbsf">
    <mkdir dir="${basedir}/docs"/>
    <javadoc packagenames="com.objectmatter.* " classpath="${CLASSPATH}" sourcepath="${SRCDIR}" destdir="${DOCDIR}" author="true" version="true" use="true" windowtitle="VBSF by ObjectMatter API" doctitle="Leader Technologie, Inc" bottom="Copyright &#169; 2005 Leader Technologies Incorporated.<BR>All Rights Reserved." maxmemory="128m">
    <group title="Objectivity Packages" packages="com.objectmatter.*"/>
    </javadoc>
    </target>
    </project>
    i am getting this:
    compile.all:
    compile.vbsf:
    compile.persist:
    compile.cti.only:
    Compiling 1 source file to C:\Projects\Leader\dev\classes
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:14: package javax.jms does not exist
    import javax.jms.*;
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:17: package javax.jms does not exist
    import javax.jms.Queue;
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:18: package javax.jms does not exist
    import javax.jms.JMSException;
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:19: package javax.jms does not exist
    import javax.jms.Message;
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:28: cannot find symbol
    symbol: class MessageListener
    public abstract class BasicMQReceiverAsyncR implements Runnable, MessageListener
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:44: cannot find symbol
    symbol : class QueueConnectionFactory
    location: class BasicMQReceiverAsyncR
    QueueConnectionFactory queueConnectionFactory = null;
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:45: cannot find symbol
    symbol : class QueueConnection
    location: class BasicMQReceiverAsyncR
    QueueConnection queueConnection = null;
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:46: cannot find symbol
    symbol : class QueueSession
    location: class BasicMQReceiverAsyncR
    QueueSession queueSession = null;
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:48: cannot find symbol
    symbol : class QueueReceiver
    location: class BasicMQReceiverAsyncR
    QueueReceiver queueReceiver = null;
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:49: cannot find symbol
    symbol : class TextMessage
    location: class BasicMQReceiverAsyncR
    TextMessage message = null;
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:406: cannot find symbol
    symbol : class QueueConnectionFactory
    location: class BasicMQReceiverAsyncR
    queueConnectionFactory = (QueueConnectionFactory)
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:408: package javax.jms does not exist
    queue = (javax.jms.Queue) jndiContext.lookup(QUEUE_NAME); //queue1 = (javax.jms.Queue)jndiContext.lookup("MyQueue1");
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:433: cannot find symbol
    symbol : variable Session
    location: class BasicMQReceiverAsyncR
    Session.AUTO_ACKNOWLEDGE);
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:447: cannot find symbol
    symbol : class JMSException
    location: class BasicMQReceiverAsyncR
    catch (JMSException e)
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:461: cannot find symbol
    symbol : class JMSException
    location: class BasicMQReceiverAsyncR
    catch (JMSException x)
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:482: cannot find symbol
    symbol : class BytesMessage
    location: class BasicMQReceiverAsyncR
    if (m instanceof BytesMessage)
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:488: cannot find symbol
    symbol : class BytesMessage
    location: class BasicMQReceiverAsyncR
    BytesMessage bytesMsg = (BytesMessage)m;
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:488: cannot find symbol
    symbol : class BytesMessage
    location: class BasicMQReceiverAsyncR
    BytesMessage bytesMsg = (BytesMessage)m;
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:501: cannot find symbol
    symbol : class QueueSession
    location: class BasicMQReceiverAsyncR
    QueueSession queueSession2 = null;
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:502: cannot find symbol
    symbol : class QueueSender
    location: class BasicMQReceiverAsyncR
    QueueSender queueSender2 = null;
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:510: cannot find symbol
    symbol : variable Session
    location: class BasicMQReceiverAsyncR
    Session.AUTO_ACKNOWLEDGE);
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:514: cannot find symbol
    symbol : class BytesMessage
    location: class BasicMQReceiverAsyncR
    BytesMessage bytesMessage = queueSession.createBytesMessage();
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:523: cannot find symbol
    symbol : variable DeliveryMode
    location: class BasicMQReceiverAsyncR
    DeliveryMode.PERSISTENT,
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:524: cannot find symbol
    symbol : variable DEFAULT_PRIORITY
    location: class com.leader.cti.vru.Message
    Message.DEFAULT_PRIORITY,
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:525: cannot find symbol
    symbol : variable DEFAULT_TIME_TO_LIVE
    location: class com.leader.cti.vru.Message
    Message.DEFAULT_TIME_TO_LIVE);
    C:\Projects\Leader\dev\java\com\leader\cti\msgqueue\BasicMQReceiverAsyncR.java:529: cannot find symbol
    symbol : class JMSException
    location: class BasicMQReceiverAsyncR
    catch (JMSException x)
    26 errors
    C:\Projects\Leader\dev\java\build.xml:34: The following error occurred while executing this line:
    C:\Projects\Leader\dev\java\build.xml:56: Compile failed; see the compiler error output for details.
    BUILD FAILED (total time: 8 seconds)
    my class path is:
    .;C:\Projects\Leader\prototype\jms\build\classes;C:\Projects\Leader\dev\libs\persist.jar;C:\Projects\Leader\dev\classes;%OPENJMS_HOME%\lib;%OPENJMS_HOME%\lib\antlr-2.7.2.jar;%OPENJMS_HOME%\lib\castor-0.9.5.jar;%OPENJMS_HOME%\lib\commons-codec-1.3.jar;%OPENJMS_HOME%\lib\commons-collections-2.1.jar;%OPENJMS_HOME%\lib\commons-dbcp-1.2.1.jar;%OPENJMS_HOME%\lib\commons-logging-1.0.4.jar;%OPENJMS_HOME%\lib\commons-pool-1.2.jar;%OPENJMS_HOME%\lib\concurrent-1.3.4.jar;%OPENJMS_HOME%\lib\derby-10.1.1.0.jar;%OPENJMS_HOME%\lib\jdbc-2.0.jar;%OPENJMS_HOME%\lib\jms-1.1.jar;%OPENJMS_HOME%\lib\jndi-1.2.1.jar;%OPENJMS_HOME%\lib\jta-1.0.1.jar;%OPENJMS_HOME%\lib\log4j-1.2.11.jar;%OPENJMS_HOME%\lib\openjms-0.7.7-beta-1.jar;%OPENJMS_HOME%\lib\openjms-common-0.7.7-beta-1.jar;%OPENJMS_HOME%\lib\openjms-net-0.7.7-beta-1.jar;%OPENJMS_HOME%\lib\openjms-tools-0.7.7-beta-1.jar;%OPENJMS_HOME%\lib\oro-2.0.8.jar;%OPENJMS_HOME%\lib\spice-jndikit-1.2.jar;%OPENJMS_HOME%\lib\xerces-2.4.0.jar;%OPENJMS_HOME%\lib\xml-apis-1.0.b2.jar;%J2EE_HOME%\lib\j2ee.jar;%J2EE_HOME%\lib
    as you can see j2ee.jar is in %J2EE_HOME%\lib, but still doesn't work. can someone help me?

    <property name="messaging.client.jar.path" value="Location in your local drive" />
    <property name="messaging.client.jar.name" value="nameOfYourFile.jar" />

  • [svn:fx-4.0.0] 13527: changed how the mpl package is created for easier maintainability.

    Revision: 13527
    Revision: 13527
    Author:   [email protected]
    Date:     2010-01-15 10:59:08 -0800 (Fri, 15 Jan 2010)
    Log Message:
    changed how the mpl package is created for easier maintainability.  Previously I had been duplicating what the main pkg target was doing and just omitting the files that were not intended to be in the mpl pkg.  After the main pkg is bundled up the files not needed will be removed from the stage directory and then bundled up as the mpl package. fixes SDK-25039
    Straighten out the confusing packaging targets. 
    -sdk-packages is now packages -> calling this will package the flex_sdk_4 and mpl zips
    QE notes: the mpl + add-on package should give us the flex_sdk_4 pkg
    Doc notes:
    Bugs: SDK-25039
    Reviewer:
    Tests run: packaging targets
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-25039
        http://bugs.adobe.com/jira/browse/SDK-25039
    Modified Paths:
        flex/sdk/branches/4.0.0/build.xml

    Hi Harshall,
    You have to enter the value as 1 in Installed base field and then press enter.
    You will be taken inside and then you will be able to see the Goto - Partner screen.
    Hope this will help.
    Please reward points suitably.
    Regards,
    Naresh.

  • After installing the add-on compatability add-on, Firefox will no longer load web pages or allow me to enter anything in the address bar and has added an additional title bar at the top of the page.

    When I open Firefox now, instead of opening up the standard Mozilla start page, it simply opens up a new tab page. Typing in the address bar and then hitting enter results in the address bar being cleared and the page staying the same. Attempting to send feedback via the add-on just opens another new, blank tab. For some odd reason, the Windows title bar has also come back above the orange Firefox button and the tabs.
    I am unable to access the add-ons page to uninstall the add-on compatibility add-on to see if that will solve my problem and I have tried uninstalling the beta and reinstalling it, but the problem still remains.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Adding multiple 100% width slideshows to the top of a page and using triggers to select.  Is it possible???

    Hi!
    I am looking to create a changeable slideshow at the top of a webpage. I want to be able to select different slideshows to view at the top of the page and use triggers/buttons to select the relevant slideshow. This is for a catering site, so I would like that if the user clicks 'canapes' button the slideshow images at the top of the page will show canapes and the caption will show text about them, if they select the 'cocktails' button then a new slideshow will appear showing images of cocktails together with a relevant caption. 
    I thought this might be possible by placing slideshows within a lightbox or composition widget but seem to be banging my head against the wall! Can someone help?
    Is it possible?
    If yes, is there a youtube video to show how its done?
    Any help much appreciated.
    Martin

    Is it possible? Yes... I wouldn't do it because having all those images sitting on the one (first) page will slow the page loading times down and just piss people off but thats your main answeer.
    The compositions widgets allow you to build more complex ideas and is what I'd use to make this sort of thing in Muse...
    p.s. if you just want something fast then have a look at what some people have already made to get ideas;
    1. Templates – MuseLayers
    2. iChef | Culinary Arts Adobe Muse Template | museGrid.com
    3. RESOURCES | Adobe Muse CC

  • [svn:fx-trunk] 13127: SystemManager was supposed to call ChildManager to finish initializing the top level window .

    Revision: 13127
    Revision: 13127
    Author:   [email protected]
    Date:     2009-12-21 13:42:09 -0800 (Mon, 21 Dec 2009)
    Log Message:
    SystemManager was supposed to call ChildManager to finish initializing the top level window.  LoaderConfig was not getting initialized otherwise.
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-24625
    Reviewer: Peter F
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests mustella/components/DataGrid
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24625
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/ChildManager.a s

    This girl here found the fix:
    How to Manually Fix Updates on Adobe Photoshop CS6 (from 13.0.3 to 13.0.6) on Mac with Retina Display |
    Basically, all you have to do is update the Application Manager (if your installation was like mine, I was still on v.6... it's up to v.9 now.  Go here for the update: Adobe - Adobe Application Manager : For Macintosh : Adobe Application Manager and run it... when done, launch Photoshop and check for updates.
    This is amazingly idiotic, I must add -- how does App Manager NOT update itself through the update process???

  • Adding Discoverer Worksheet leaves space at the top of the page in Portal

    hi guyz
    I have put an image on the top of the page. When I add a discoverer worksheet on the remaining part, it leaves a small space on the top of the page thus bringing the image a bit down.
    If I remove that worksheet, it behaves normally.
    quick replies appreciated.

    Try editing your region display properties.
    Cheers,
    Mick.

  • My button for adding web sites is not on the top of the bar

    The plus sign is not there now?

    There is no "+" sign in mobile Safari, you need to push the "square with the arrow" and select "Add Bookmark".

  • [svn] 945: Added runtime resources for 13 additional locales.

    Revision: 945
    Author: [email protected]
    Date: 2008-03-26 16:37:01 -0700 (Wed, 26 Mar 2008)
    Log Message:
    Added runtime resources for 13 additional locales.
    The additional locales were provided by the LCDS team. The 15 locales that we now have are:
    da_DK: Danish / Denmark
    de_DE: German / Germany
    en_US: English / United States
    es_ES: Spanish / Spain
    fi_FI: Finnish / Finland
    fr_FR: French / France
    it_IT: Italian / Italy
    ja_JP: Japanese / Japan
    ko_KR: Korean / South Korea
    nb_NO: Norwegian Bokmal / Norway
    nl_NL: Dutch / Netherlands
    pt_BR: Portuguese / Brazil
    sv_SE: Swedish / Sweden
    zh_CN: Simplified Chinese / China
    zh_TW: Traditional Chinese / Taiwan
    The LCDS team localized framework.swc and rpc.swc, but not airframework.swc. For the time being, there is a placeholder aircontrols.properties file for each additional locale, but it is a copy of the en_US one.
    Various Ant scripts, including the top-level one, now have an "other.locales" target which builds the new locales; the "main" target still builds only en_US and ja_JP.
    The new locales have not yet been tested by the Flex team and are not yet packaged into any ZIP deliverables.
    The setup.sh script now sets -XX:MaxPermSize=384m in ANT_OPTS as well as -Xmx384m, in order to avoid a PermGen type of OutOfMemoryError when building the "other.locales" target.
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/frameworks/build.xml
    flex/sdk/trunk/frameworks/projects/airframework/build.xml
    flex/sdk/trunk/frameworks/projects/framework/build.xml
    flex/sdk/trunk/frameworks/projects/rpc/build.xml
    flex/sdk/trunk/setup.sh
    Added Paths:
    flex/sdk/trunk/frameworks/projects/airframework/bundles/da_DK/
    flex/sdk/trunk/frameworks/projects/airframework/bundles/da_DK/aircontrols.properties
    flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/
    flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/aircontrols.properties
    flex/sdk/trunk/frameworks/projects/airframework/bundles/es_ES/
    flex/sdk/trunk/frameworks/projects/airframework/bundles/es_ES/aircontrols.properties
    flex/sdk/trunk/frameworks/projects/airframework/bundles/fi_FI/
    flex/sdk/trunk/frameworks/projects/airframework/bundles/fi_FI/aircontrols.properties
    flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/
    flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/aircontrols.properties
    flex/sdk/trunk/frameworks/projects/airframework/bundles/it_IT/
    flex/sdk/trunk/frameworks/projects/airframework/bundles/it_IT/aircontrols.properties
    flex/sdk/trunk/frameworks/projects/airframework/bundles/ko_KR/
    flex/sdk/trunk/frameworks/projects/airframework/bundles/ko_KR/aircontrols.properties
    flex/sdk/trunk/frameworks/projects/airframework/bundles/nb_NO/
    flex/sdk/trunk/frameworks/projects/airframework/bundles/nb_NO/aircontrols.properties
    flex/sdk/trunk/frameworks/projects/airframework/bundles/nl_NL/
    flex/sdk/trunk/frameworks/projects/airframework/bundles/nl_NL/aircontrols.properties
    flex/sdk/trunk/frameworks/projects/airframework/bundles/pt_BR/
    flex/sdk/trunk/frameworks/projects/airframework/bundles/pt_BR/aircontrols.properties
    flex/sdk/trunk/frameworks/projects/airframework/bundles/sv_SE/
    flex/sdk/trunk/frameworks/projects/airframework/bundles/sv_SE/aircontrols.properties
    flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/
    flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/aircontrols.properties
    flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_TW/
    flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_TW/aircontrols.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/SharedResources.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/collections.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/containers.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/controls.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/core.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/effects.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/formatters.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/logging.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/skins.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/states.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/styles.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/utils.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/validators.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/SharedResources.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/collections.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/containers.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/controls.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/core.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/effects.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/formatters.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/logging.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/skins.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/states.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/styles.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/utils.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/validators.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/SharedResources.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/collections.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/containers.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/controls.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/core.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/effects.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/formatters.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/logging.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/skins.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/states.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/styles.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/utils.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/validators.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/SharedResources.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/collections.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/containers.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/controls.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/core.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/effects.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/formatters.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/logging.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/skins.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/states.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/styles.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/utils.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/validators.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/SharedResources.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/collections.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/containers.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/controls.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/core.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/effects.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/formatters.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/logging.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/skins.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/states.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/styles.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/utils.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/validators.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/SharedResources.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/collections.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/containers.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/controls.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/core.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/effects.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/formatters.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/logging.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/skins.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/states.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/styles.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/utils.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/validators.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/SharedResources.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/collections.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/containers.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/controls.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/core.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/effects.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/formatters.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/logging.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/skins.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/states.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/styles.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/utils.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/validators.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/SharedResources.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/collections.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/containers.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/controls.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/core.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/effects.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/formatters.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/logging.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/skins.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/states.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/styles.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/utils.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/validators.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/SharedResources.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/collections.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/containers.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/controls.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/core.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/effects.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/formatters.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/logging.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/skins.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/states.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/styles.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/utils.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/validators.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/SharedResources.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/collections.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/containers.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/controls.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/core.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/effects.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/formatters.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/logging.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/skins.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/states.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/styles.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/utils.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/validators.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/SharedResources.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/collections.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/containers.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/controls.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/core.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/effects.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/formatters.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/logging.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/skins.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/states.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/styles.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/utils.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/validators.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/SharedResources.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/collections.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/containers.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/controls.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/core.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/effects.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/formatters.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/logging.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/skins.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/states.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/styles.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/utils.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/validators.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/SharedResources.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/collections.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/containers.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/controls.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/core.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/effects.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/formatters.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/logging.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/skins.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/states.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/styles.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/utils.properties
    flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/validators.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/da_DK/
    flex/sdk/trunk/frameworks/projects/rpc/bundles/da_DK/messaging.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/da_DK/rpc.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/
    flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/messaging.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/de_DE/rpc.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/es_ES/
    flex/sdk/trunk/frameworks/projects/rpc/bundles/es_ES/messaging.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/es_ES/rpc.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/fi_FI/
    flex/sdk/trunk/frameworks/projects/rpc/bundles/fi_FI/messaging.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/fi_FI/rpc.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/
    flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/messaging.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/fr_FR/rpc.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/it_IT/
    flex/sdk/trunk/frameworks/projects/rpc/bundles/it_IT/messaging.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/it_IT/rpc.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/ko_KR/
    flex/sdk/trunk/frameworks/projects/rpc/bundles/ko_KR/messaging.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/ko_KR/rpc.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/nb_NO/
    flex/sdk/trunk/frameworks/projects/rpc/bundles/nb_NO/messaging.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/nb_NO/rpc.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/nl_NL/
    flex/sdk/trunk/frameworks/projects/rpc/bundles/nl_NL/messaging.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/nl_NL/rpc.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/pt_BR/
    flex/sdk/trunk/frameworks/projects/rpc/bundles/pt_BR/messaging.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/pt_BR/rpc.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/sv_SE/
    flex/sdk/trunk/frameworks/projects/rpc/bundles/sv_SE/messaging.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/sv_SE/rpc.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/
    flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/messaging.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_CN/rpc.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_TW/
    flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_TW/messaging.properties
    flex/sdk/trunk/frameworks/projects/rpc/bundles/zh_TW/rpc.properties

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • TS3989 Photos are ok in aperture and iphoto but in photostream on ipad and iphone the top of all portrait photos is chopped off. I tried switching photostream off and on but got the same. Only happened with photos added today, all past photos are fine

    I have never had any problems before but all portrait photos added today have the top chopped off. For example , people's heads are missing or roofs or buildings are chopped off. Photos are fine on the camera and on my mac in iphoto and aperture. Switched off photostream on my ipad...all photos were deleted. Switched photostream back on and all photos uploaded again and portrait photos are cropped again

    It sounds like while trying to import the photos with insufficient disk space those image files were damaged and not copied fully.  Now that you have sufficient space (a minimum of 10 GB is recommended) the latest imports are good.
    What do you get if you export one of the problem photos out of iPhoto as Kind=Original and try to open it with Preview.  If it appears the same then there's nothing you can to do recover them.
    OT

  • Adding permissions at top level folder

    Let's say your top-level folder is d:\filestore\   You add Domain Admins to it with Full Control.
    If the sub-folders have maintained inheritance of the perms from that folder then you're good. 
    However, if any of the subfolders have broken permissions, either by removing all permission and adding new ones or by copying the permissions and adding additional ones, then you're kinda screwed. Enforcing inheritance of the perms from your top level folder on that mess will almost certainly obliterate the existing permissions.
    If you're semi-lucky you might be get away with finding a number of folders that you can apply the perms to that will then propagate to the rest.
    If you're really unlucky, and it sounds like you are, then you may have to apply the permissions to many individual folders. 

    I have just migrated to a new 2012 R2 server and have my AD and file server on separate VM's.  The previous server had the local Administrators group listed, but now I need to add the Domain Admins group to the top level of the folder tree and have that pass down throughout all other folders.  But I don't want it to overwrite the existing permissions.  Is there any way to do this?
    The folder structure is insane and I want to redo it a better way, but that will take time and the OK from management.  There are so many "individual" users added to many folders that it is currently impossible to keep track of.  
    This topic first appeared in the Spiceworks Community

Maybe you are looking for

  • HP Pavillion 22bw

    I want to increase the "go to sleep" time of my monitor, but can't find out how to do it.  Have no idea what the wheels on the bottom right do.  Can't find the answers in the manual. This question was solved. View Solution.

  • ISE's Internal Root CA. How to generate new one in distributed deployment?

    Hello, I have two ISE nodes in distributed deployment. I would like to generate new Internal Root CA certificate. I was able to do that from primary node, but only FOR primary node. How can I achieve this for the other node? Best Regards, Marek

  • Security, htmlentities question

    I've been reading about how htmlentities is supposed to convert special characters into harmless versions when used with inserts and updates, etc. So, I tested an insert form of mine with a script that redirects to an example.com site. (I found the s

  • Search help - error message

    hi everybody Ive created an elementary searchhelp - zz-fipex, which i have added to the collective search help COBL_EX_FPOS The search help is appearin on the screen but when Im trying to use that new search help to find the corresponding entry, Im g

  • How to create a pop out window?

    Can any buddy help me? I need a Pop Out window, that is 630Pixels X 430 Pixels...For a Flash Poll sistem I have search in google, for tutorials but it is just not working.... What I being looking for, is to add like a link to a Text, and a pop out wi