snippets / language / xml

All snippets for language xml (8)

  1. src/css/styles.css

    src/css/styles.css

     1 .flatColorRectangleSkin {
    2
    3 fontFamily: Arial;
    4 fontSize: 12;
    5 color: #FFFFFF;
    6 textAlign:left;
    7 width:150;
    8 height:30;
    9
    10 upSkin:ClassReference('charts.NodeSkin');
    11 downSkin:ClassReference('programmaticSkinClasses.FlatColorRectangleSkin');
    12 overSkin:ClassReference('programmaticSkinClasses.FlatColorRectangleSkin');
    13 disabledSkin:ClassReference('programmaticSkinClasses.FlatColorRectangleSkin');
    14 }
    15
    16 .flatColorRoundedRectangleSkin {
    17
    18 fontFamily: Arial;
    19 fontSize: 12;
    20 color: #FFFFFF;
    21 textAlign:left;
    22 width:150;
    23 height:30;
    24
    25 upSkin:ClassReference('programmaticSkinClasses.FlatColorRoundedRectangleSkin');
    26 downSkin:ClassReference('programmaticSkinClasses.FlatColorRoundedRectangleSkin');
    27 overSkin:ClassReference('programmaticSkinClasses.FlatColorRoundedRectangleSkin');
    28 disabledSkin:ClassReference('programmaticSkinClasses.FlatColorRoundedRectangleSkin');
    29 }
    30
    31 .gradientRectangleSkin {
    32
    33 fontFamily: Arial;
    34 fontSize: 12;
    35 color: #FFFFFF;
    36 textAlign:left;
    37 width:150;
    38 height:30;
    39
    40 upSkin:ClassReference('programmaticSkinClasses.GradientRectangleSkin');
    41 downSkin:ClassReference('programmaticSkinClasses.GradientRectangleSkin');
    42 overSkin:ClassReference('programmaticSkinClasses.GradientRectangleSkin');
    43 disabledSkin:ClassReference('programmaticSkinClasses.GradientRectangleSkin');
    44 }
    Posted by sawantilak to xml flex skinning ... saved by 1 person ... 0 comments ... 4 months, 3 weeks
  2. src/charts/Node.as

    src/charts/Node.as

     1 package charts
    2 {
    3 import flash.display.DisplayObject;
    4 import flash.events.Event;
    5
    6 import mx.core.IFlexDisplayObject;
    7 import mx.core.UIComponent;
    8 import mx.core.mx_internal;
    9 import mx.events.FlexEvent;
    10 import mx.messaging.messages.ErrorMessage;
    11 import mx.styles.ISimpleStyleClient;
    12
    13 use namespace mx_internal;
    14
    15 //[Style(name="upSkin",type="Class",inherit="no")]
    16
    17 public class Node extends UIComponent
    18 {
    19 public var nodeId:int = -1;
    20
    21 public function Node(/*nodeId_:int*/)
    22 {
    23 //nodeId = nodeId_;
    24 addEventListener(FlexEvent.INITIALIZE, myInitialize);
    25 }
    26
    27 protected function myInitialize(event:Event):void
    28 {
    29 if(nodeId == -1)
    30 throw new Error("The Node ID Property is Mandatory");
    31 }
    32
    33 protected override function updateDisplayList(unscaledWidth:Number,
    34 unscaledHeight:Number):void
    35 {
    36 showSkin("upSkin");
    37 }
    38
    39 mx_internal function showSkin(skinName:String):void
    40 {
    41 var skinClass:Class = Class(getStyle(skinName));
    42 var skin:IFlexDisplayObject = IFlexDisplayObject(getChildByName(skinName));
    43
    44 if (!skin)
    45 {
    46 if (skinClass)
    47 {
    48 skin = IFlexDisplayObject(new skinClass());
    49 skin.name = skinName;
    50 (skin as ISimpleStyleClient).styleName = this;
    51 addChild(DisplayObject(skin));
    52 skin.setActualSize(unscaledWidth, unscaledHeight);
    53 }
    54 }
    55
    56 }
    57
    58
    59 }
    60 }
    Posted by sawantilak to xml flex skinning ... saved by 1 person ... 0 comments ... 4 months, 3 weeks
  3. src/charts/NodeSkin.mxml

    src/charts/NodeSkin.mxml

     1 <?xml version="1.0" encoding="utf-8"?>
    2 <Degrafa:GraphicBorderSkin xmlns:mx="http://www.adobe.com/2006/mxml"
    3 xmlns:Degrafa="http://www.degrafa.com/2007">
    4
    5 <mx:Script>
    6 <![CDATA[
    7 [Bindable]
    8 private var awidth:Number=0;
    9
    10 [Bindable]
    11 private var aheight:Number=0;
    12
    13 override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void{
    14 super.updateDisplayList(unscaledWidth, unscaledHeight);
    15 awidth = unscaledWidth;
    16 aheight = unscaledHeight;
    17 }
    18 ]]>
    19 </mx:Script>
    20
    21 <Degrafa:fills>
    22 <Degrafa:RadialGradientFill id="MainFill" angle="90" >
    23 <Degrafa:GradientStop ratio="0" alpha="1" color="#EE9819"/>
    24 <Degrafa:GradientStop ratio="1" alpha="1" color="#FAE38F"/>
    25 </Degrafa:RadialGradientFill>
    26
    27 <Degrafa:RadialGradientFill id="WashFill" angle="90" >
    28 <Degrafa:GradientStop ratio="0" alpha=".75" color="#FFFFFF"/>
    29 <Degrafa:GradientStop ratio="1" alpha="0" color="#FFFFFF"/>
    30 </Degrafa:RadialGradientFill>
    31 </Degrafa:fills>
    32
    33 <Degrafa:stroke>
    34 <Degrafa:SolidStroke color="#EE9819" id="theStroke" />
    35 </Degrafa:stroke>
    36
    37 <Degrafa:geometry>
    38 <Degrafa:Circle centerX="{awidth/2}" centerY="{aheight/2}" radius="{Math.max(awidth/2,aheight/2)}"
    39 fill="{MainFill}" stroke="{theStroke}" />
    40
    41 <Degrafa:Ellipse width="{awidth-7}" height="{aheight/1.5}" x="3" y="3"
    42 fill="{WashFill}" />
    43 </Degrafa:geometry>
    44
    45 </Degrafa:GraphicBorderSkin>
    Posted by sawantilak to xml flex skinning ... saved by 1 person ... 0 comments ... 4 months, 3 weeks
  4. src/programmaticSkinClasses/GradientRectangleSkin.as

    src/programmaticSkinClasses/GradientRectangleSkin.as

     1 package programmaticSkinClasses {
    2
    3 import mx.core.UIComponent;
    4 import flash.filters.DropShadowFilter;
    5
    6 public class GradientRectangleSkin extends UIComponent {
    7
    8 import flash.display.Graphics;
    9 import flash.geom.Rectangle;
    10 import mx.graphics.GradientEntry;
    11 import mx.graphics.LinearGradient;
    12
    13 protected override function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void {
    14 super.updateDisplayList(unscaledWidth,unscaledHeight);
    15 var w:Number = unscaledWidth;
    16 var h:Number = unscaledHeight;
    17
    18 // hold the values of the gradients depending on button state
    19 var backgroundFillColor:Number;
    20 var backgroundFillColor2:Number;
    21 var backgroundFillColor3:Number;
    22
    23
    24 var fill:LinearGradient = new LinearGradient();
    25
    26 // reference the graphics object of this skin class
    27 var g:Graphics = graphics;
    28 g.clear();
    29
    30 // which skin is the button currently looking for? Which skin to use?
    31 switch (name) {
    32 case "upSkin":
    33 backgroundFillColor = 0x929292;
    34 backgroundFillColor2 = 0x000000;
    35 break;
    36 case "overSkin":
    37 backgroundFillColor = 0x696969;
    38 backgroundFillColor2 = 0x504F4F;
    39 break;
    40 case "downSkin":
    41 backgroundFillColor = 0x888888;
    42 backgroundFillColor2 = 0x777777;
    43 color: 0xFF0000;
    44 break;
    45 case "disabledSkin":
    46 backgroundFillColor = 0xCCCCCC;
    47 backgroundFillColor2 = 0xCCCCCC;
    48 break;
    49 }
    50 // depending on which state the button's in, we set our color for the
    51 // gradients on the skin
    52 var g1:GradientEntry = new GradientEntry(backgroundFillColor,.10,100);
    53 var g2:GradientEntry = new GradientEntry(backgroundFillColor2,.60,100);
    54
    55 fill.entries = [g1,g2];
    56 fill.angle = 90;
    57 // fill the rectangle
    58 g.moveTo(0,0);
    59 fill.begin(g,new Rectangle(0,0,w,h));
    60 g.lineTo(w,0);
    61 g.lineTo(w,h);
    62 g.lineTo(0,h);
    63 g.lineTo(0,0);
    64 fill.end(g);
    65 // if we're not showing the down skin, show the shadow. Otherwise hide it on the "down state" to look like it's being pressed
    66 if(name != "downSkin") {
    67 filters = [new DropShadowFilter(4, 45,0x000000,.2)];
    68 }
    69 }
    70 }
    71 }
    Posted by sawantilak to xml flex skinning ... saved by 1 person ... 0 comments ... 4 months, 3 weeks
  5. src/programmaticSkinClasses/FlatColorRoundedRectangleSkin.as

    src/programmaticSkinClasses/FlatColorRoundedRectangleSkin.as

     1 package programmaticSkinClasses {
    2
    3 import flash.filters.DropShadowFilter;
    4 import mx.skins.ProgrammaticSkin;
    5
    6 public class FlatColorRoundedRectangleSkin extends ProgrammaticSkin {
    7
    8 protected override function updateDisplayList(unscaledWidth:Number,unscaledHeight:Number):void{
    9
    10 super.updateDisplayList(unscaledWidth, unscaledHeight);
    11 var backgroundFillColor:Number;
    12 var cornerRadius:Number = getStyle("cornerRadius");
    13 var backgroundAlpha:Number = getStyle("backgroundAlpha");
    14
    15 graphics.clear();
    16
    17 switch (name) {
    18 case "upSkin":
    19 backgroundFillColor = 0x6987AC;
    20 break;
    21 case "overSkin":
    22 backgroundFillColor = 0x92B0C0;
    23 break;
    24 case "downSkin":
    25 backgroundFillColor = 0x92B0C0;
    26 color: 0xFF0000;
    27 break;
    28 case "disabledSkin":
    29 backgroundFillColor = 0xCCCCCC;
    30 break;
    31 }
    32
    33 graphics.beginFill(backgroundFillColor);
    34 drawRoundRect(0,0,unscaledWidth,unscaledHeight,{tl: cornerRadius, tr: cornerRadius, bl: cornerRadius, br: cornerRadius},
    35 backgroundFillColor,backgroundAlpha);
    36 graphics.endFill();
    37
    38 if(name != "downSkin") {
    39 filters = [new DropShadowFilter(4, 45,0x000000,.2)];
    40 }
    41
    42 }
    43 }
    44 }
    Posted by sawantilak to xml flex skinning ... saved by 1 person ... 0 comments ... 4 months, 3 weeks
  6. src/programmaticSkinClasses/FlatColorRectangleSkin.as

    src/programmaticSkinClasses/FlatColorRectangleSkin.as

     1 package programmaticSkinClasses {
    2
    3 import flash.filters.DropShadowFilter;
    4 import mx.effects.Glow;
    5 import mx.skins.ProgrammaticSkin;
    6
    7 public class FlatColorRectangleSkin extends ProgrammaticSkin {
    8
    9 protected override function updateDisplayList(unscaledWidth:Number,unscaledHeight:Number):void{
    10
    11 super.updateDisplayList(unscaledWidth, unscaledHeight);
    12 var backgroundFillColor:Number;
    13 graphics.clear();
    14
    15 switch (name) {
    16 case "upSkin":
    17 backgroundFillColor = 0x69AC69;
    18 break;
    19 case "overSkin":
    20 backgroundFillColor = 0x808080;
    21 break;
    22 case "downSkin":
    23 backgroundFillColor = 0xACACAB;
    24 break;
    25 case "disabledSkin":
    26 backgroundFillColor = 0xCCCCCC;
    27 break;
    28 }
    29
    30 graphics.beginFill(backgroundFillColor);
    31 graphics.drawRect(0, 0, unscaledWidth, unscaledHeight);
    32 graphics.endFill();
    33
    34 if(name != "downSkin") {
    35 filters = [new DropShadowFilter(4, 45,0x000000,.2)];
    36 }
    37
    38 }
    39 }
    40 }
    Posted by sawantilak to xml flex skinning ... saved by 1 person ... 0 comments ... 4 months, 3 weeks
  7. src/ProgrammaticSkinning.mxml

    src/ProgrammaticSkinning.mxml

     1 <?xml version="1.0" encoding="utf-8"?>
    2 <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
    3 xmlns:components="charts.*">
    4
    5 <mx:Style source="css/styles.css" />
    6
    7 <components:Node id="button4" x="22" y="170" nodeId="1"
    8 styleName="flatColorRoundedRectangleSkin" height="32" width="345"/>
    9
    10 <components:Node id="button5" x="22" y="240" nodeId="2"
    11 styleName="gradientRectangleSkin" height="32" width="345"/>
    12
    13 <components:Node id="button6" x="22" y="295" nodeId="3"
    14 styleName="flatColorRectangleSkin" height="32" width="32"/>
    15
    16 </mx:Application>
    Posted by sawantilak to xml flex skinning ... saved by 1 person ... 0 comments ... 4 months, 3 weeks
  8. A sample config for MySQL Connector/J 5.1 for Tomcat 5.5

    Replace path and docBase and etc. with your applications settings. This file assumes that this file is named apps-myapp.xml and is located under Tomcats configuration directory. It is also assumed that the application which is going to use MyConnection JDBC connection is called myapp and is accessed as http://yourdomain.tld/myapp and is located under Tomcats webapps directory. Database name is assumed my_database. Replace these with your actual values

      1 <?xml version="1.0" encoding="ISO-8859-1"?>
    2 <webapps>
    3 <Context path="/myapp" docBase="webapps/myapp" debug="0" reloadable="true">
    4 <!-- Replace path and docBase and etc. with your applications settings.
    5 This file assumes that this file is named apps-myapp.xml and is
    6 located under Tomcats configuration directory. It is also assumed that
    7 the application which is going to use MyConnection JDBC connection is
    8 called myapp and is accessed as http://yourdomain.tld/myapp and is
    9 located under Tomcats webapps directory. Database name is assumed
    10 my_database. Replace these with your actual values. -->
    11
    12
    13 <!-- This is a sample XML config file for an Apache Tomcat 5.5 server to
    14 setup MySQL Connector/J 5.1 for JDBC connectivity. Information are
    15 derived from sources available in the Internet. -->
    16
    17
    18 <!-- Resource name and ResourceParams name, must be the same and
    19 The connection pool will be bound into JNDI with that name
    20 Eg: "java:/comp/env/jdbc/MyConnection". Replace MyConnection in both
    21 places with the name you want for the connection. -->
    22 <Resource name="jdbc/MyConnection" auth="Container" type="javax.sql.DataSource"/>
    23 <ResourceParams name="jdbc/MyConnection">
    24
    25
    26 <parameter>
    27 <name>factory</name>
    28 <value>org.apache.commons.dbcp.BasicDataSourceFactory</value>
    29 </parameter>
    30
    31
    32 <!-- Don't set this higher than max_connections on your MySQL server,
    33 usually this should be a 10 or a few 10's of connections, not
    34 hundreds or thousands -->
    35 <parameter>
    36 <name>maxActive</name>
    37 <value>10</value>
    38 </parameter>
    39
    40
    41 <!-- Just allow only as many idle connections as you require. Too much
    42 is bad. -->
    43 <parameter>
    44 <name>maxIdle</name>
    45 <value>5</value>
    46 </parameter>
    47
    48
    49 <!-- Don't use autoReconnect=true, it's going away eventually and it's a
    50 crutch for older connection pools that couldn't test connections.
    51 You need to decide whether your application is supposed to deal with
    52 SQLExceptions (hint, it should), and how much of a performance
    53 penalty you're willing to pay to ensure 'freshness' of the connection -->
    54 <parameter>
    55 <name>validationQuery</name>
    56 <value>SELECT 1</value>
    57 </parameter>
    58
    59
    60 <!-- The most conservative approach is to test connections before they're
    61 given to your application. For most applications this is okay, the
    62 query used above is very small and takes no real server resources to
    63 process, other than the time used to traverse the network. If you have
    64 a high-load application you'll need to rely on something else. -->
    65 <parameter>
    66 <name>testOnBorrow</name>
    67 <value>true</value>
    68 </parameter>
    69
    70
    71 <!-- Otherwise, or in addition to testOnBorrow, you can test while
    72 connections are sitting idle -->
    73 <parameter>
    74 <name>testWhileIdle</name>
    75 <value>true</value>
    76 </parameter>
    77
    78
    79 <!-- You have to set this value, otherwise even though you've asked
    80 connections to be tested while idle,the idle evicter thread
    81 will never run -->
    82 <parameter>
    83 <name>timeBetweenEvictionRunsMillis</name>
    84 <value>10000</value>
    85 </parameter>
    86
    87
    88 <!-- Don't set this too high. A few minutes or even fraction of a minute
    89 is sometimes okay here, it depends on your application and how much
    90 spikey load it will see -->
    91 <parameter>
    92 <name>minEvictableIdleTimeMillis</name>
    93 <value>60000</value>
    94 </parameter>
    95
    96
    97 <!-- Username and password used when connecting to MySQL. Replace myuser
    98 and mypassword with your username/password for the database user. -->
    99 <parameter>
    100 <name>username</name>
    101 <value>myuser</value>
    102 </parameter>
    103 <parameter>
    104 <name>password</name>
    105 <value>mypassword</value>
    106 </parameter>
    107
    108
    109 <!-- Class name for the Connector/J driver -->
    110 <parameter>
    111 <name>driverClassName</name>
    112 <value>com.mysql.jdbc.Driver</value>
    113 </parameter>
    114
    115
    116 <!-- The JDBC connection url for connecting to MySQL, notice that if
    117 you want to pass any other MySQL-specific parameters you should
    118 pass them here in the URL, setting them using the parameter
    119 tags above will have no effect, you will also need to use &amp;
    120 to separate parameter values as the ampersand is a reserved
    121 character in XML. Replace my_database with your database name. -->
    122 <parameter>
    123 <name>url</name>
    124 <value>jdbc:mysql://yourdomain.tld:3306/my_database</value>
    125 </parameter>
    126
    127
    128 </ResourceParams>
    129 </Context>
    130 </webapps>
    Posted by Gaveen to xml jdbc mysql ... saved by 1 person ... 1 comments ... 7 months
showing 10, 25, 50 items per pages

Pages : 1

Flux RSS friendsnippetLatest snippets


More...