Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

  • mihai007
    replied
    Version 2.5 is not in maven2 yet?

    Leave a comment:


  • nlotz
    replied
    Information on new Maven Repository and SVN builds

    Please update your repository definitions ...
    Last edited by nlotz; 11 Aug 2009, 13:46.

    Leave a comment:


  • dfreire
    replied
    Nikolas, this is truly great. Thanks for the effort!

    Leave a comment:


  • nlotz
    replied
    I've added automated builds for smartgwt-extensions:
    Code:
     Repository: http://smartgwtsnap.rorschach.de
    
       Group Id: com.smartgwt
    Artifact Id: smartgwt-extensions
        Version: [b]1.0-SNAPSHOT[/b]
    Last edited by nlotz; 26 May 2009, 09:21.

    Leave a comment:


  • nlotz
    replied
    SmartGWT 1.1 released - Congratulations !

    I've updated the version of the hourly snapshot artifacts:
    Code:
     Repository: http://smartgwtsnap.rorschach.de
    
       Group Id: com.smartgwt
    Artifact Id: smartgwt
        Version: [b]1.2-SNAPSHOT[/b]
    
       Group Id: com.smartgwt
    Artifact Id: smartgwt-skins
        Version: [b]1.2-SNAPSHOT[/b]
    Be aware that you are stuck with revision 544 if you keep developing against 1.0b3-SNAPSHOT
    Last edited by nlotz; 20 May 2009, 12:19.

    Leave a comment:


  • sjivan
    replied
    Thanks Nikolas, I've updated the first post.

    Leave a comment:


  • nlotz
    replied
    I have added an artifact for smartgwt-skins.jar :

    Code:
     Repository: http://smartgwtsnap.rorschach.de
    
       Group Id: com.smartgwt
    Artifact Id: smartgwt-skins
        Version: 1.0b3-SNAPSHOT

    Leave a comment:


  • nlotz
    replied
    I have updated the hourly SVN snapshots and my Maven repository:

    Hourly Snapshots : http://smartgwt.build.rorschach.de
    Code:
    -> revision.355              =>  1.0b2-SNAPSHOT
    -> revision.357              =>  1.0b2
    -> revision.358 (or newer)   =>  1.0b3-SNAPSHOT
    Maven Repository : http://smartgwtsnap.rorschach.de
    Code:
    -> 1.0b2-SNAPSHOT   =>  revision.355
    -> 1.0b2            =>  revision.357
    -> 1.0b3-SNAPSHOT   =>  revision.358 (or newer)

    Maven Note: I kept the artifact version 1.0b2-SNAPSHOT because I didn't want to break anyones build.
    Be aware that you are stuck with revision 355 if you keep developing against 1.0b2-SNAPSHOT.
    Only 1.0b3-SNAPSHOT will be updated with the hourly SVN-snapshot from now on.
    Last edited by nlotz; 2 Mar 2009, 12:51.

    Leave a comment:


  • sjivan
    replied
    Originally posted by afasnarfi

    Showcase app once compiled works well except doesn't show source using "View Source" button.

    Seems like source files aren't generated at all. If I look into the WAr file I see that /smartgwt/source and /smartgwt/sourceGen are missing all the files I expect to have.
    The build now generates the source files.

    Leave a comment:


  • sjivan
    replied
    I need to have the ant task do this. For now you can run GenerateSourceFiles passing the full path of the showcase "client" directory as the command line argument.

    Sanjiv

    Leave a comment:


  • afasnarfi
    replied
    May be (surely) i'm missing something....
    I'm trying to build from SVN and all is fine except showcase application. (rev 279)

    Showcase app once compiled works well except doesn't show source using "View Source" button.

    Seems like source files aren't generated at all. If I look into the WAr file I see that /smartgwt/source and /smartgwt/sourceGen are missing all the files I expect to have.

    Do I need to call specific ant tasks to build it? I've tried to see if there's any but I can't find any.

    thanks

    Leave a comment:


  • kccheng
    replied
    Originally posted by smartgwt.dev
    This change was mentioned on the first page of this thread.
    Hi smartgwt.dev,

    Yes, you are right ... I missed that point :-(
    Thanks to point it out.

    Regards,
    KC

    Leave a comment:


  • smartgwt.dev
    replied
    This change was mentioned on the first page of this thread.

    12-01-2008
    =========
    http://www.smartclient.com/smartgwt/...8/smartgwt.jar

    - changed SmartClient path from public/js/sc to public/sc/
    - separated modules as follows :

    <inherits name='com.smartgwt.SmartGwt'/>
    Loads SmartClient compressed JS and SilverWave theme

    <inherits name='com.smartgwt.SmartGwtDebug'/>
    Loads SmartClient source JS and SilverWave theme

    <inherits name='com.smartgwt.SmartGwtNoScript'/>
    Only includes SmartGWT API's without JS and skins. User will need will need to separately inherit SmartClient and skin modules as desired, or add the JS and skin includes in their host html.

    Themes:
    <inherits name='com.smartclient.theme.silverwave.SilverWave' />
    <inherits name='com.smartclient.theme.blackops.BlackOps'/>
    <inherits name='com.smartclient.theme.treefrog.TreeFrog'/>

    Leave a comment:


  • kccheng
    replied
    Originally posted by kccheng
    Code:
    $wnd.isc is undefined
    [Break on this error] _=fw.prototype=new m6();_.gC=jw;_.tI=18;...tGlobalID();eP(a,qt,a.b,fa lse);return a}
    I believe I know what cause the above problem.
    It's because I use TreeFrog theme.

    Code:
    <!--this works OK for smartgwt-1.0b1, but not 1.0b2 -->
    <!--
          <inherits name="com.smartgwt.SmartGwtNoScript" />
          <script src="js/sc/initsc.js"/>
          <script src="js/sc/modules/ISC_Core.js"/>
          <script src="js/sc/modules/ISC_Foundation.js"/>
          <script src="js/sc/modules/ISC_Containers.js"/>
          <script src="js/sc/modules/ISC_Grids.js"/>
          <script src="js/sc/modules/ISC_Forms.js"/>
          <script src="js/sc/modules/ISC_RichTextEditor.js"/>
          <script src="js/sc/modules/ISC_Calendar.js"/>
          <script src="js/sc/modules/ISC_DataBinding.js"/>
    
          <script src="js/sc/skins/TreeFrog/load_skin.js" />
    -->
    
    <!-- this works OK for v1.0b2 -->
          <inherits name="com.smartgwt.SmartGwtNoScript" />
          <inherits name="com.smartclient.SmartClientDefault"/>
          <inherits name="com.smartclient.theme.treefrog.TreeFrog"/>
    The JS path had been changed from
    js/sc/modules/*.js
    to
    sc/modules/*.js

    Use <inherits name=.../> to invoke theme will avoid this
    problem even the path change again in the future. FYI.


    Regards
    KC

    Leave a comment:


  • nlotz
    replied
    Originally posted by scoobydoo
    After changing my repo to this one I had to remove the contents of ~/.m2/repository/com/smartgwt/smartgwt and rebuild. Before I did this maven was pulling the POM and determining that it already had the latest, so the newer build was not downloaded.
    Thanks - this should be helpful to a lot of users ...

    Leave a comment:

Working...
X