Class: Rouge::Lexers::Sieve

Inherits:
RegexLexer show all
Defined in:
lib/rouge/lexers/sieve.rb

Constant Summary

Constants inherited from RegexLexer

RegexLexer::MAX_NULL_SCANS

Constants included from Token::Tokens

Token::Tokens::Num, Token::Tokens::Str

Instance Attribute Summary

Attributes inherited from Rouge::Lexer

#options

Class Method Summary collapse

Methods inherited from RegexLexer

append, #delegate, get_state, #get_state, #goto, #group, #groups, #in_state?, #pop!, prepend, #push, #recurse, replace_state, #reset!, #reset_stack, #stack, start, start_procs, #state, state, #state?, state_definitions, states, #step, #stream_tokens, #token

Methods inherited from Rouge::Lexer

aliases, all, analyze_text, #as_bool, #as_lexer, #as_list, #as_string, #as_token, assert_utf8!, #bool_option, debug_enabled?, demo, demo_file, desc, disable_debug!, enable_debug!, filenames, find, find_fancy, guess, guess_by_filename, guess_by_mimetype, guess_by_source, guesses, #hash_option, #initialize, lex, #lex, #lexer_option, #list_option, mimetypes, option, option_docs, #reset!, #stream_tokens, #string_option, tag, #tag, title, #token_option

Methods included from Token::Tokens

token

Constructor Details

This class inherits a constructor from Rouge::Lexer

Class Method Details

.actionsObject



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/rouge/lexers/sieve.rb', line 19

def self.actions
  @actions ||= Set.new(
    # action commands (rfc5228 § 2.9)
    %w(keep fileinto redirect discard) +
    # Editheader Extension (rfc5293)
    %w(addheader deleteheader) +
    # Reject and Extended Reject Extensions (rfc5429)
    %w(reject ereject) +
    # Extension for Notifications (rfc5435)
    %w(notify) +
    # Imap4flags Extension (rfc5232)
    %w(setflag addflag removeflag) +
    # Vacation Extension (rfc5230)
    %w(vacation) +
    # MIME Part Tests, Iteration, Extraction, Replacement, and Enclosure (rfc5703)
    %w(replace enclose extracttext)
  )
end

.controlsObject

control commands (rfc5228 § 3)



15
16
17
# File 'lib/rouge/lexers/sieve.rb', line 15

def self.controls
  @controls ||= %w(if elsif else require stop)
end

.testsObject



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/rouge/lexers/sieve.rb', line 38

def self.tests
  @tests ||= Set.new(
    # test commands (rfc5228 § 5)
    %w(address allof anyof exists false header not size true) +
    # Body Extension (rfc5173)
    %w(body) +
    # Imap4flags Extension (rfc5232)
    %w(hasflag) +
    # Spamtest and Virustest Extensions (rfc5235)
    %w(spamtest virustest) +
    # Date and Index Extensions (rfc5260)
    %w(date currentdate) +
    # Extension for Notifications (rfc5435)
    %w(valid_notify_method notify_method_capability) +
    # Extensions for Checking Mailbox Status and Accessing Mailbox
    # Metadata (rfc5490)
    %w(mailboxexists metadata metadataexists servermetadata servermetadataexists)
  )
end