Changeset 671


Ignore:
Timestamp:
06/17/10 00:14:30 (2 years ago)
Author:
mr_lundis
Message:

Added support for the rel attribute (removed validation, which was too narrow). Also updated the en and sv language files, updates needed for the other languages! Closes #17.

Location:
trunk/src/wymeditor
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wymeditor/jquery.wymeditor.js

    r669 r671  
    9595    UL,OL,LI            - HTML elements string representation. 
    9696    CLASS,HREF,SRC, 
    97     TITLE,ALT           - HTML attributes string representation. 
     97    TITLE,REL,ALT       - HTML attributes string representation. 
    9898    DIALOG_LINK         - A link dialog type. 
    9999    DIALOG_IMAGE        - An image dialog type. 
     
    184184    SRC                 : "src", 
    185185    TITLE               : "title", 
     186    REL                 : "rel", 
    186187    ALT                 : "alt", 
    187188    DIALOG_LINK         : "Link", 
     
    494495    srcSelector:       ".wym_src", 
    495496    titleSelector:     ".wym_title", 
     497    relSelector:       ".wym_rel", 
    496498    altSelector:       ".wym_alt", 
    497499    textSelector:      ".wym_text", 
     
    561563               + "<label>{Title}</label>" 
    562564               + "<input type='text' class='wym_title' value='' size='40' />" 
     565               + "</div>" 
     566               + "<div class='row'>" 
     567               + "<label>{Relationship}</label>" 
     568               + "<input type='text' class='wym_rel' value='' size='40' />" 
    563569               + "</div>" 
    564570               + "<div class='row row-indent'>" 
     
    14771483    jQuery(wym._options.srcSelector).val(jQuery(selected).attr(WYMeditor.SRC)); 
    14781484    jQuery(wym._options.titleSelector).val(jQuery(selected).attr(WYMeditor.TITLE)); 
     1485    jQuery(wym._options.relSelector).val(jQuery(selected).attr(WYMeditor.REL)); 
    14791486    jQuery(wym._options.altSelector).val(jQuery(selected).attr(WYMeditor.ALT)); 
    14801487  } 
     
    15051512 
    15061513        link.attr(WYMeditor.HREF, sUrl) 
    1507             .attr(WYMeditor.TITLE, jQuery(wym._options.titleSelector).val()); 
     1514            .attr(WYMeditor.TITLE, jQuery(wym._options.titleSelector).val()) 
     1515            .attr(WYMeditor.REL, jQuery(wym._options.relSelector).val()); 
    15081516 
    15091517      } 
     
    19161924        "3":"hreflang", 
    19171925        "4":"name", 
    1918         "rel":/^(alternate|designates|stylesheet|start|next|prev|contents|index|glossary|copyright|chapter|section|subsection|appendix|help|bookmark| |shortcut|icon)+$/, 
    1919         "rev":/^(alternate|designates|stylesheet|start|next|prev|contents|index|glossary|copyright|chapter|section|subsection|appendix|help|bookmark| |shortcut|icon)+$/, 
     1926        "5":"rel", 
     1927        "6":"rev", 
    19201928        "shape":/^(rect|rectangle|circ|circle|poly|polygon)$/, 
    1921         "5":"type" 
     1929        "7":"type" 
    19221930      } 
    19231931    }, 
  • trunk/src/wymeditor/lang/en.js

    r508 r671  
    2727    URL:              'URL', 
    2828    Title:            'Title', 
     29    Relationship:     'Relationship', 
    2930    Alternative_Text: 'Alternative text', 
    3031    Caption:          'Caption', 
  • trunk/src/wymeditor/lang/sv.js

    r508 r671  
    2828    URL:              'URL', 
    2929    Title:            'Titel', 
     30    Relationship:     'Relation', 
    3031    Alternative_Text: 'Alternativ text', 
    3132    Caption:          'Överskrift', 
Note: See TracChangeset for help on using the changeset viewer.