Changeset 2618


Ignore:
Timestamp:
02/25/13 12:27:02 (11 years ago)
Author:
twagoo
Message:

Merged changes in Flex UI

Location:
ComponentRegistry/branches/ComponentRegistry-1.13.0/ComponentBrowserGui
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ComponentRegistry/branches/ComponentRegistry-1.13.0/ComponentBrowserGui

  • ComponentRegistry/branches/ComponentRegistry-1.13.0/ComponentBrowserGui/pom.xml

    r1573 r2618  
    7373        <sourceDirectory>src/main/flex</sourceDirectory>
    7474        <plugins>
     75           <!-- buildnumber plugin used to obtain this builds svn revision number -->
     76            <plugin>
     77                <groupId>org.codehaus.mojo</groupId>
     78                <artifactId>buildnumber-maven-plugin</artifactId>
     79                <version>1.2</version>
     80                <executions>
     81                    <execution>
     82                        <phase>validate</phase>
     83                        <goals>
     84                            <goal>create</goal>
     85                        </goals>
     86                        <configuration>
     87                                <revisionOnScmFailure>no_revision</revisionOnScmFailure>
     88                        </configuration>
     89                    </execution>
     90                </executions>
     91                <configuration>
     92                    <doCheck>false</doCheck>
     93                    <doUpdate>false</doUpdate>
     94                </configuration>
     95            </plugin>
    7596            <plugin>
    7697                <groupId>org.sonatype.flexmojos</groupId>
     
    86107                                                <name>APPINFO::version</name>
    87108                                                <value>"${ComponentBrowserGui.version}"</value>
     109                                          </property>
     110                                          <property>
     111                                                <name>APPINFO::revision</name>
     112                                                <value>"${buildNumber}"</value>
    88113                                          </property>
    89114                                        </definesDeclaration>                   
  • ComponentRegistry/branches/ComponentRegistry-1.13.0/ComponentBrowserGui/src/main/flex/clarin/cmdi/componentregistry/common/AboutPopup.mxml

    r1573 r2618  
    1919                                if(APPINFO != null){
    2020                                        try{
    21                                                 version = APPINFO::version;
     21                                                version = APPINFO::version + " (r" + APPINFO::revision + ")";
    2222                                        } catch(err:ReferenceError){
    2323                                                // Version set at compilation
     
    3333                                        + "\n"
    3434                                        +"Version: " + version + "\n"
    35                                         +"Written by: Patrick Duin and Twan Goosen\n"
     35                                        +"Written by: Patrick Duin, Twan Goosen and Olha Shkaravska\n"
    3636                                        +"\n"
    3737                                        +"Go to <u><a target=\"_blank\" href=\"http://www.clarin.eu/cmdi\">www.clarin.eu/cmdi</a></u> for more information.\n"
Note: See TracChangeset for help on using the changeset viewer.