AniDB O'Matic - Documentation: Local file renaming: Difference between revisions

m
→‎E / EPISODE: fandubs are normal eps with audio track type fandub
m (→‎E / EPISODE: fandubs are normal eps with audio track type fandub)
 
(144 intermediate revisions by 3 users not shown)
Line 7: Line 7:
File extensions are automatically added to the end of the pattern.
File extensions are automatically added to the end of the pattern.


Here's a few sample patterns:
==Sample patterns==
* "?a - ?ep - ?e [?g]" -> <br>"Anime - 02 - Episode name [Group name]"
'''English anime title with fallback'''
* "?a - ?epv?v - ?e?if(lg<><nowiki>''</nowiki>, ' ['+lg+']', <nowiki>''</nowiki>)" -> <br>With group: "Anime - 02v1 - Episode name [Group name]"<br>Without group:"Anime - 02v1 - Episode name"
<pre>
* "?if(wltw, 'To watch\', <nowiki>''</nowiki>)?a?if(isMovie, if(epps>1, ' - Part '+epp+if(v>1, 'v'+v, <nowiki>''</nowiki>), if(v>1, ' - v'+v, <nowiki>''</nowiki>)), ep+if(v>1, v, <nowiki>''</nowiki>)+'- ?e') ?if(lg<><nowiki>''</nowiki>, lg+' ', <nowiki>''</nowiki>){?crc32}" -> <br>For a movie: "Anime name - v2 [Group name]{crc32}"<br>For a movie with 2 parts: "Anime name - Part 2v2 [Group name]{crc32}<br>For a normal anime, marked as "to watch in wishlist": "To watch\Anime name - 02v2 - Episode name [Group name]{crc32}
set('atitle', at('en'))
if(length(atitle)=0, set('atitle', at('x-jat')))
if(length(atitle)=0, set('atitle', at('ja')))
if(length(atitle)=0, set('atitle', A.Name))
</pre>
'''Japanese transcription anime title with fallback'''
<pre>
set('atitle', at('x-jat'))
if(length(atitle)=0, set('atitle', at('en')))
if(length(atitle)=0, set('atitle', A.Name))
</pre>
'''Japanese kanji anime title with fallback'''
<pre>
set('atitle', at('ja'))
if(length(atitle)=0, set('atitle', at('x-jat')))
if(length(atitle)=0, set('atitle', at('en')))
if(length(atitle)=0, set('atitle', A.Name))
</pre>
'''English episode title with fallback'''
<pre>set('etitle', et('en'))
if(length(etitle)=0, set('etitle', et('x-jat')))
if(length(etitle)=0, set('etitle', et('ja')))
if(length(etitle)=0, set('etitle', E.Name))
</pre>
'''Japanese transcription episode title with fallback'''
<pre>
set('etitle', et('x-jat'))
if(length(etitle)=0, set('etitle', et('en')))
if(length(etitle)=0, set('etitle', E.Name))
</pre>
'''Japanese kanji episode title with fallback'''
<pre>
set('etitle', et('ja'))
if(length(etitle)=0, set('etitle', et('x-jat')))
if(length(etitle)=0, set('etitle', et('en')))
if(length(etitle)=0, set('etitle', E.Name))
</pre>
'''File version and censor flag
<pre>
set('censored', 'unknown')
set('version', F.Version)
set('state_map', F.State mod 4096)
if(state_map>=2048, set('version', 9) + set('state_map', state_map - 2048))
if(state_map>=1024, if(version<9,set('version', 8)) + set('state_map', state_map - 1024))
if(state_map>=512, if(version<9,set('version', 7)) + set('state_map', state_map - 512))
if(state_map>=256, if(version<9,set('version', 6)) + set('state_map', state_map - 256))
if(state_map>=128, set('censored', 'yes') + set('state_map', state_map - 128))
if(state_map>=64, set('censored', 'no') + set('state_map', state_map - 64))
set('version', if(version>1, 'v'+F.Version, ''))
set('censored',if(censored='yes','[Censored]',''))
</pre>
'''Padded episode number'''
<pre>
set('mepno', if(E.TypeId=1, max(A.TotalEpisodeCount, E.EpisodeTypeCount), E.EpisodeTypeCount))
set('epno', padl(E.EpisodeNo, max(1, length(mepno)), '0'))
if(E.TypeId=2, set('epno', 'S'+epno))
if(E.TypeId=3, set('epno', 'C'+epno))
if(E.TypeId=4, set('epno', 'T'+epno))
if(E.TypeId=5, set('epno', 'P'+epno))
if(E.TypeId=6, set('epno', 'O'+epno))
</pre>
'''First letter for organizing by letter'''
<pre>
set('head', copy(atitle, 1, 1))
if(numeric(head), set('head', '0-9'))
</pre>
'''Group name'''
<pre>
set('groupname', if(G, if(length(G.Name)>0, G.Name, G.Shortname), 'no group'))
set('groupname', if(length(groupname)>0, '['+groupname+']'))
</pre>
'''Group short name'''
<pre>
set('groupname', if(G, if(length(G.Shortname)>0, G.Shortname, G.Name), 'no group'))
set('groupname', if(length(groupname)>0, '['+groupname+']'))
</pre>
'''CRC32'''
<pre>
set('crc', if(H, H.Crc32, F.Crc))
if(length(crc)>0, set('crc', '('+uc(crc)+')')
</pre>
'''Current filename (removing the path)'''
<pre>set('path_filename', PATH)
set('path_parts', 1)
for('i', 1, length(path_filename), if(copy(path_filename, i, 1) = '\', set('path_parts', path_parts+1)))
set('path_filename', split(path_filename, '\', path_parts))</pre>
===Complex samples===
See [[AniDB O'Matic - Documentation: Local file renaming - Samples | the article with samples]]


===Default pattern===
==Default pattern==
Split into multiple lines for easier viewing. ;)<br>
<code><pre>?set('V', if(v>1, 'v'+v, ''))
?set('A', a)
?set('E', if(isMovie and (eps=1), if(epps>1, if(length(V)>0, V+' - ', '')+'Part '+epp, if(length(V)>0, V, '')), if(eps>1, ep+V+' - '+e, if(length(V)>0, V+' - '+e, e))))
?set('LANG', la2+if((length(la2)>0) and (length(ls2)>0), '-')+ls2)
?set('LANG', if(length(LANG)>0, '('+LANG+')'))
?set('G', if(gid>0, g, if((lac<=1) and (lsc=0) and ((la='ja') or (la='')), '[RAW]')))
?set('CRC', if(length(crc)>0, '{'+crc+'}', ''))
?set('TAIL', join(' ', LANG, G, CRC))
?set('TAIL', if(length(TAIL)>0, ' '+TAIL))
?set('TOTLEN', length(A)+length(E)+length(TAIL))
?if(TOTLEN>240, if(length(E)>50, set(E, limit(E, max(50, 240-length(A)-length(TAIL))))))
?set('TOTLEN', length(A)+length(E)+length(TAIL))
?if(TOTLEN>240, if(length(A)>50, set(A, limit(A, max(50, 240-length(E)-length(TAIL))))))
?out(A+if(length(E)>0, ' - '+E)+TAIL)</pre></code>


The end result is all lines merged with the line feeds removed.
'''ATTENTION!''' The default pattern has a bug. See below for instructions to fix it.
 
<pre>set('atitle', at('x-jat'))
===Constant expressions===
if(length(atitle)=0, set('atitle', at('en')))
There are two ways to specify string literals:<br>
if(length(atitle)=0, set('atitle', A.Name))
&#39;text&#39; - use &#39;&#39; to insert a &#39; (e.g. &#39;her&#39;&#39;s&#39;)<br>
set('atitle', replace(atitle, '\', ' '))
or<br>
set('etitle', et('en'))
"text" - use \" to insert a "  (e.g. "a \"quotation\"")
if(length(etitle)=0, set('etitle', et('x-jat')))
 
if(length(etitle)=0, set('etitle', et('ja')))
Number literals are simply written as numbers:<br>
if(length(etitle)=0, set('etitle', E.Name))
1234<br>
set('etitle', replace(etitle, '\', ' '))
<br>
set('version', if(F.Version&gt;1, 'v'+F.Version, ''))
There are also boolean constants:<br>
set('mepno', max(A.TotalEpisodeCount, E.EpisodeTypeCount))
true<br>
set('epno', padl(E.EpisodeNo, max(1, length(mepno)), '0') + version)
false
if(E.TypeId=2, set('epno', 'S'+epno))
if(E.TypeId=3, set('epno', 'C'+epno))
if(E.TypeId=4, set('epno', 'T'+epno))
if(E.TypeId=5, set('epno', 'P'+epno))
if(E.TypeId=6, set('epno', 'O'+epno))
set('groupname', if(G, if(length(G.Shortname)>0, G.Shortname, G.Name), 'no group'))
set('groupname', if(length(groupname)>0, '['+groupname+']'))
set('groupname', replace(groupname, '\', ' '))
set('crc', if(H, H.Crc32, F.Crc))
if(length(crc)>0, set('crc', '('+uc(crc)+')'))
set('filename', limit(limit(limit(atitle, 90) + ' - ' + epno + ' - ' + etitle, 200) + ' ' + groupname, 235) + crc + '.' + F.FileType)
set('filename', replace(filename, '*', ' '))
set('filename', replace(filename, '/', ' '))
set('filename', replace(filename, '?', ' '))
set('filename', replace(filename, ':', ' '))
set('filename', replace(filename, '"', ' '))
set('filename', replace(filename, '&lt;', ' '))
set('filename', replace(filename, '&gt;', ' '))
set('filename', replace(filename, '|', ' '))
set('filename', replace(filename, '`', "'"))
set('filename', replace(filename, '  ', ' '))
filename
</pre>
'''ATTENTION!''' The default pattern has a bug. To fix it, find the following line:
<pre>set('mepno', max(A.TotalEpisodeCount, E.EpisodeTypeCount))</pre>
And replace it with:
<pre>set('mepno', if(E.TypeId=1, max(A.TotalEpisodeCount, E.EpisodeTypeCount), E.EpisodeTypeCount))</pre>


==Objects==
==Objects==
Line 48: Line 146:
===A / ANIME===
===A / ANIME===
{|
{|
|AnimeNFOId||integer||
! scope="col" width="180" | Name
|-
! scope="col" width="60" | Type
|AnimeNFOStr||string||
! scope="col" | Description
|-
|-valign=top
|Category||integer||
|Category||integer||Anime Type<br>
|-
1: Unknown<br>
|Date||integer||
2: TV Series<br>
|-
3: OVA<br>
|Description||widestring||
4: Movie<br>
|-
5: Other<br>
|Name||widestring||
6: Web<br>
|-
7: TV Special<br>
|PictureUrl||string||
8: Music Video
|-
|-valign=top
|Producer||widestring||
|CategoryStr||string||Category text value.
|-
|-valign=top
|ReviewAverage||integer||
|Name||string||Anime main title
|-
|-valign=top
|ReviewCount||integer||
|ReviewAverage||integer||Average review score
|-
|-valign=top
|TotalEpisodeCount||integer||
|ReviewCount||integer||Total number of reviews
|-
|-valign=top
|Updated||integer||
|TotalEpisodeCount||integer||Number of episodes according to AniDB. 0 if unknown.
|-
|-valign=top
|Url||string||
|VoteAverage||integer||Average voter score
|-
|-valign=top
|VoteAverage||integer||
|VoteCount||integer||Total number of votes
|-
|-valign=top
|VoteCount||integer||
|Year||string||Anime airing year(s). For example 2007-2008.
|-
|-valign=top
|Year||string||
|EpisodeCount||integer||Number of normal episodes according to AoM.
|-
|-valign=top
|EpisodeCount||integer||
|SpecialEpisodeCount||integer||Number of special episodes according to AoM.
|-
|-valign=top
|GenreCount||integer||
|DownloadState||String||Current download state according to AoM:<br>
|-
adsIgnore: not yet calculated<br>
|GenreString||widestring||
adsComplete: have all normal episodes<br>
|-
adsHaveAll: have all available normal episodes<br>
|SpecialEpisodeCount||integer||
adsIncomplete: have some of the available normal episodes<br>
|-
adsHaveNone: have no files in mylist for this anime
|CategoryStr||widestring||
|-valign=top
|-
|WatchedState||string||Current watched state according to AoM:<br>
|DownloadState||TAniDBAnimeDownloadState||
awsIgnore: not yet calculated<br>
|-
awsAll: All episodes watched<br>
|WatchedState||TAniDBAnimeWatchedState||
awsPartial: Some episodes watched<br>
|-
awsNone: No episodes watched
|StatusState||TAniDBAnimeStatusState||
|-valign=top
|-
|StatusState||string||Current status of mylist entries according to AoM, my contain multiple values separated by commas:<br>
|StartYear||integer||
assIgnore: not yet calculated<br>
assUnknown: Uknown<br>
assOnHDD: On HDD<br>
assOnCD: On CD<br>
assDeleted: Deleted
|-valign=top
|StartYear||integer||Numeric start year from AirDate.
|-valign=top
|EndYear||integer||Numeric end year from EndDate.
|-valign=top
|AirDate||integer||Air date in unix time, AniDB format.
|-valign=top
|EndDate||integer||End date in unix time, AniDB format.
|-valign=top
|Restricted||boolean||'''Unreliable''' True for hentai, otherwise false.
|-valign=top
|MylistCurrentEpisodeCount||integer||Number of episodes in mylist.
|-valign=top
|MylistSpecialEpisodeCount||integer||Number of special episodes in mylist.
|-valign=top
|WatchedCount||integer||Number of episodes watched.
|-valign=top
|SpecialWatchedCount||integer||Number of special episodes watched.
|}
|}


===E / EPISODE===
===E / EPISODE===
{|
{|
! scope="col" width="180" | Name
! scope="col" width="60" | Type
! scope="col" | Description
|-valign="top"
|AirDate||integer||Episode first air date.
|-valign="top"
|EpisodeNo||integer||AniDB episode number.
|-valign="top"
|EpisodeStr||string||Episode number with type prefix.
|-valign="top"
|EpisodeStrPadded||string||Episode number with type prefix padded based on the total number of episodes of that particular type.
|-valign="top"
|EpisodeTypeCount||integer||Number of episodes in this anime with the same type.
|-valign="top"
|IsSpecial||boolean||True if not a normal episode. False otherwise.
|-valign="top"
|Length||integer||Length in minutes.
|-valign="top"
|Name||string||AniDB main title.
|-valign="top"
|Other||string||Description field from AniDB.
|-valign="top"
|TypeId||integer||Episode type:<br>
1: Regular Episode<br>
2: Special<br>
3: Opening/Ending/Credits<br>
4: Trailer/Promo/Ads<br>
5: Parody<br>
6: Other
|-valign="top"
|IsRecap||boolean||True if episode is a recap.
|}
|}


===F / FILE===
===F / FILE===
{|
! scope="col" width="180" | Name
! scope="col" width="60" | Type
! scope="col" | Description
|-valign="top"
|Crc||string||AniDB CRC32 value.
|-valign="top"
|CrcStatus||string||CRC32 status according to AnIDB:<br>
crcUnknown: unkwnown<br>
crcOk: known valid<br>
crcInvalid: known invalid
|-valign="top"
|Ed2k||string||AniDB ED2K value.
|-valign="top"
|EpisodeStart||integer||Lowest related episode number of the same type within this anime.
|-valign="top"
|EpisodeEnd||integer||Highest related episode number of the same type within this anime.
|-valign="top"
|EpisodeList||string||List of episodes within this anime covered by this file.<br>Format: 1,2,3,7,17,93,O1,C3,U77
|-valign="top"
|EpisodeListDetails||string||Detailed list of episodes covered by this file.<br>Format: (EpisodeStr:EpisodeTypeId:AnimeId:EpisodeId:StartPercent:EndPercent)<br>Example:
1:1:357:95304:0:10,2:1:357:95960:0:100,6:1:357:108200:0:100,C1:3:357:108202:0:100
|-valign="top"
|FileType||string||File extension.
|-valign="top"
|Length||integer||File length in seconds.
|-valign="top"
|Md5||string||AniDB MD5 value.
|-valign="top"
|Other||string||File description.
|-valign="top"
|Quality||integer||File quality, possible values:<br>
unknown<br>
very high<br>
high<br>
med<br>
low<br>
very low<br>
corrupted<br>
eyecancer
|-valign="top"
|Released||integer||Release date in unix time.
|-valign="top"
|ResolutionHeight||integer||'''Does not work''' Video height in pixels.
|-valign="top"
|ResolutionWidth||integer||'''Does not work''' Video width in pixels.
|-valign="top"
|Sha1||string||AniDB SHA1 value.
|-valign="top"
|Size||int64||Size in bytes.
|-valign="top"
|State||integer||AniDB state bitmap.
|-valign="top"
|Source||string||Source media, possible values:<br>
unknown<br>
camcorder<br>
TV<br>
VHS<br>
DTV<br>
LD<br>
DVD<br>
SVCD<br>
VCD<br>
HKDVD<br>
www<br>
HDTV<br>
HD-DVD<br>
Blu-ray
|-valign="top"
|TypeState||integer||Source ID.
|-valign="top"
|UserCount||integer||Number of users with this file. (Wildly inaccurate.)
|-valign="top"
|Version||integer||File version from state.
|-valign="top"
|GroupShort||string||Short group name.
|-valign="top"
|GroupLong||string||Long group name.
|-valign="top"
|ResolutionString||string||'''Does not work''' Video WidthxHeight.
|}
===G / GROUP===
===G / GROUP===
{|
! scope="col" width="180" | Name
! scope="col" width="60" | Type
! scope="col" | Description
|-
|colspan="3"|''Warning, this object might be unassigned. If so all values return False.''
|-valign="top"
|Name||string||Group name.
|-valign="top"
|Other||string||Group description.
|-valign="top"
|Rating||integer||Average vote rating for this group.
|-valign="top"
|Shortname||string||Short group name.
|-valign="top"
|Votes||integer||Number of votes for this group.
|}
===H / HASH===
===H / HASH===
{|
! scope="col" width="180" | Name
! scope="col" width="60" | Type
! scope="col" | Description
|-valign="top"
|colspan="3"|''Warning, this object might be unassigned. If so all values return False.''
|-valign="top"
|Crc32||string||AoM CRC32 value.
|-valign="top"
|Ed2k||string||AoM ED2K value.
|-valign="top"
|Md5||string||AoM MD5 value.
|-valign="top"
|Sha1||string||AoM SHA1 value.
|-valign="top"
|Size||integer||AoM size in bytes.
|}
===M / MYLIST===
===M / MYLIST===
{|
{|
! scope="col" width="180" | Name
! scope="col" width="60" | Type
! scope="col" | Description
|-valign="top"
|colspan="3"|''Warning, this object might be unassigned. If so all values return False.''
|-valign="top"
|Other||string||Entry other/description text.
|-valign="top"
|Source||string||Entry source text.
|-valign="top"
|State||integer||Entry state, possible values:<br>
0: unknown<br>
1: internal storage (hdd)<br>
2: external storage (cd/dvd/...)<br>
3: deleted<br>
|-valign="top"
|Storage||string||Entry storage text.
|-valign="top"
|Watched||boolean||True if watched, otherwise false.
|-valign="top"
|WatchedDate||integer||Watched date in unixtime.
|}
|}


===Function tags===
==Properties==
 
{|
|-valign=top
|ACTIVEPATTERN||string||The current rename pattern after cleanup.
|-valign=top
|PATH||string||Current path to the file. May be ''.
|-valign=top
|BASEPATH||string||Base path of the current file manager. May be ''.
|}
 
==Functions==
{|
{|
! scope="col" | Function
! scope="col" width="60" | Type
! scope="col" | Description
|-valign="top"
|at(lang)||text||Returns a main/official anime title in '''lang'''. '''lang''' can be either a text or a number. <br>Example: at(2) = japanese title<br>Example: at('japanese (transcription)') = japanese transcription<br>Example: at('en') = english title
|-valign="top"
|atr(id, lang)||text||Returns a main/official anime title of anime with '''id''' in '''lang'''. '''lang''' can be either a text or a number. <br>Example: at(2) = japanese title<br>Example: at('japanese (transcription)') = japanese transcription<br>Example: at('en') = english title
|-valign="top"
|contains(find, text)||boolean||Returns true if '''find''' is found in '''text'''.<br>Example: contains('bcd', 'abcdef') = true
|contains(find, text)||boolean||Returns true if '''find''' is found in '''text'''.<br>Example: contains('bcd', 'abcdef') = true
|-
|-valign="top"
|copy(text, start[, length])||string||Returns '''length''' letters from letter number '''start''' of '''text'''.<br>Example: copy('abcdefgh', 3, 2) = 'cd'
|-valign="top"
|et(lang)||text||Returns an episode title in '''lang'''. '''lang''' can be either a text or a number.<br>Example: et(2) = japanese title<br>Example: et('en') = english title
|-valign="top"
|etr(id, lang)||text||Returns an episode title of episode with '''id''' in '''lang'''. '''lang''' can be either a text or a number.<br>Example: et(2) = japanese title<br>Example: et('en') = english title
|-valign="top"
|for(name, start, end, task)||string||Runs '''task''' '''start''' to '''end''' times setting '''name''' to t1he current position each round.<br>Example: for('i', 1, 5, '?'+i) = '?1?2?3?4?5'
|-valign="top"
|function(name, stmt, stmt, ...)||string||Declares the function '''name''' which will execute stmt1, stmt2 etc. Parameters can be sent to function calls but there is only 1 GLOBAL scope.<br>Example: function('rreplace', set('temp', param1), for('i', 1, 10, set('temp', replace(temp, '&nbsp;&nbsp;', ' '))), temp)<br>rreplace(somevalue)
|-valign="top"
|getanime(name, id)||object||Sets the variable '''name''' to the anime object for '''id'''.<br>Example: getanime('a2', 78)
|-valign="top"
|getepisode(name, id)||object||Sets the variable '''name''' to the episode object for '''id'''.<br>Example: getepisode('e2', 8878)
|-valign="top"
|if(test, trueval[, falseval])||any||If statement, returns '''trueval''' if '''test''' is true, otherwise returns '''falseval'''.<br> Example: if(23=23, 'equal', 'not equal') = 'equal'
|if(test, trueval[, falseval])||any||If statement, returns '''trueval''' if '''test''' is true, otherwise returns '''falseval'''.<br> Example: if(23=23, 'equal', 'not equal') = 'equal'
|-
|-valign="top"
|in(find, text...)||boolean||Checks if '''find''' is present in a number of '''text''' parameters.<br>Example: in('bb', 'aa', 'bb', 'cc', 'dd') = true
|in(find, text...)||boolean||Checks if '''find''' is present in a number of '''text''' parameters.<br>Example: in('bb', 'aa', 'bb', 'cc', 'dd') = true
|-
|-valign="top"
|join(glue, text...)||text||Joins together two or more '''text'''s, empty parameters are ignored with no glue added.<br>Example: join(' ', 'a', 'b', 'c') = 'a b c'
|join(glue, text...)||string||Joins together two or more '''text'''s, empty parameters are ignored with no glue added.<br>Example: join(' ', 'a', 'b', 'c') = 'a b c'
|-
|-valign="top"
|lc(text)||text||Converts '''text''' to lower case.<br>Example: lc('ABCDEF') = 'abcdef'
|lc(text)||string||Converts '''text''' to lower case.<br>Example: lc('ABCDEF') = 'abcdef'
|-
|-valign="top"
|length(text)||number||Returns the length of '''text'''.<br>Example: length('abcdef') = 6
|length(text)||number||Returns the length of '''text'''.<br>Example: length('abcdef') = 6
|-
|-valign="top"
|limit(text, length[, end])||text||Limits the length of '''text''' to at most '''length''' characters. '''End''' is optional, if specified and the text is cropped, it'll be added at the end of text.<br>Example: limit(e, 100) or limit('abcdefghijklmnop', 7, '...') = 'abcd...'
|limit(text, length[, end])||string||Limits the length of '''text''' to at most '''length''' characters. '''End''' is optional, if specified and the text is cropped, it'll be added at the end of text.<br>Example: limit(e, 100) or limit('abcdefghijklmnop', 7, '...') = 'abcd...'
|-
|-valign="top"
|max(number...)||number||Returns the highest supplied number<br>Example: max(1, 7, 3, 9, 2) = 9
|-valign="top"
|min(number...)||number||Returns the lowest supplied number<br>Example: min(1, 7, 3, 9, 2) = 1
|min(number...)||number||Returns the lowest supplied number<br>Example: min(1, 7, 3, 9, 2) = 1
|-
|-valign="top"
|max(number...)||number||Returns the highest supplied number<br>Example: max(1, 7, 3, 9, 2) = 9
|numeric(var)||boolean||Returns true if '''var''' contains a numeric value.<br>Example: numeric('11') = true
|-
|-valign="top"
|pad(text)||text||Converts text to sentence case.<br>Example ?sc(a)
|pad(text, newlength[, padchar])||string||Pads '''text''' on both sides to make it '''length''' characters long.<br>Example ?pad('hello', 9, '_') = '__hello__'
|-
|-valign="top"
|padl(text)||text||Converts text to sentence case.<br>Example ?sc(a)
|padl(text, newlength[, padchar])||string||Pads '''text''' on the left side to make it '''length''' characters long.<br>Example ?padl('hello', 9, '_') = '____hello'
|-
|-valign="top"
|padr(text)||text||Converts text to sentence case.<br>Example ?sc(a)
|padr(text, newlength[, padchar])||string||Pads '''text''' on the right side to make it '''length''' characters long.<br>Example ?padr('hello', 9, '_') = 'hello____'
|-
|-valign="top"
|sc(text)||text||Converts '''text''' to sentence case.<br>Example: sc('HELLO THERE!') = 'Hello there!'
|replace(text, find[, replace])||string||Replaces all occurences of '''find''' with '''replace''' in '''text'''.<br>Example: replace('HELLO THERE!', 'THERE', 'TREES') = 'HELLO TREES!'
|-
|-valign="top"
|replacei(text, find[, replace])||string||Case insensitive replace of all occurences of '''find''' with '''replace''' in '''text'''.<br>Example: replace('HELLO tHeRe!', 'ThErE', 'TREES') = 'HELLO TREES!'
|-valign="top"
|sc(text)||string||Converts '''text''' to sentence case.<br>Example: sc('HELLO THERE!') = 'Hello there!'
|-valign="top"
|set(name, data)||nothing||Declares a new variable called '''name''' containing '''data'''.<br>Example: set('temp', 'text')
|set(name, data)||nothing||Declares a new variable called '''name''' containing '''data'''.<br>Example: set('temp', 'text')
|-
|-valign="top"
|split(text, find, index)||text||Splits '''text''' on '''find''' and returns the specified '''index'''. Index starts from 1.<br>Example: split('2011-05-19', '-', 2) = 05
|split(text, find, index)||string||Splits '''text''' on '''find''' and returns the specified '''index'''. Index starts from 1.<br>Example: split('2011-05-19', '-', 2) = 05
|-
|-valign="top"
|start(text, find)||boolean||Checks if '''find''' matches the start of '''text'''.<br>Example: start('1999', '199') = true
|start(text, find)||boolean||Checks if '''find''' matches the start of '''text'''.<br>Example: start('1999', '199') = true
|-
|-valign="top"
|tc(text)||text||Converts '''text''' to title case.<br>Example: tc('HELLO THERE!') = 'Hello There!'
|starti(text, find)||boolean||Checks if '''find''' matches the start of '''text'''. Case insensitive.<br>Example: start('1999', '199') = true
|-
|-valign="top"
|uc(text)||text||Converts '''text''' to upper case.<br>Example: uc('abcd') = 'ABCD'
|substr(text, start[, length])||string||Alias for copy.
|-valign="top"
|tc(text)||string||Converts '''text''' to title case.<br>Example: tc('HELLO THERE!') = 'Hello There!'
|-valign="top"
|trim(text)||string||Removes leading and trailing spaces from '''text'''.
|-valign="top"
|uc(text)||string||Converts '''text''' to upper case.<br>Example: uc('abcd') = 'ABCD'
|}
|}
==Operators==


===Arithmetic operators===
===Arithmetic operators===
Line 174: Line 511:
|A&gt;=B||true if A is more or equal to B
|A&gt;=B||true if A is more or equal to B
|}
|}
'''Logical operators'''<br>
===Logical operators===
{|
{|
|A and B||true if both A and B are true
|A and B||true if both A and B are true
Line 185: Line 522:
|}
|}


==File managers==
==Constant expressions==
File managers are used to automatically manage file renaming / removing and adding / updating files in your MyList.
There are two ways to specify string literals:<br>
&#39;text&#39;<br>
or<br>
"text"


===Source paths===
Number literals are simply written as numbers:<br>
Each file manager can have multiple source folders. File managers can be set to search these folders recursively or only the folder itself for files.
1234<br>
While it's possible adding a source path to multiple file managers is strongly discouraged.
<br>
There are also boolean constants:<br>
true<br>
false


===Rename pattern===
==Comments==
Each file manager can have 1 renaming pattern. To use multiple patterns you need to specify multiple patterns. The rename pattern can contain a part of a path or a full path to indicate where the file should be stored. The path part of a rename might be ignored under certain circumstances however, see below.
Start a line with // if you wish to write a comment:<br>
<pre>// This is a comment</pre>


===Target paths===
==File managers==
A file manager can have one or more target paths for moving files. If no target path is specified the folder the file was found in will be used instead. If there are multiple target paths the file manager will try to figure out where the file has the most related files. This is determined by a) the anime the file belongs to and b) the anime group the file belongs to. If there's not enough space available on the target drive it'll check the next preferred target if there's enough space and so on. If no space is available in any target path the file will be renamed in it's current location, but with any path part of the file removed, aka the filename part of the rename pattern will be used but the file will remain in the folder it was found in.
File managers are used to automatically manage file renaming / removing and adding / updating files in your MyList.
 
===Only move known files===
This will make the file manager ignore files which are not in AniDB, they'll be visible on the known files page, but they will never be moved or renamed.
 
===Automatically remove deleted files===
This will make the file manager remove files it can't find any more from the known files page. This rule ignores files stored on removable media.
 
===Don't remove files if the volume can't be found===
This will prevent the file manager from removing files it can't find when the whole volume is gone, this rule would for example prevent your known files from being cleared if your network cable is unplugged or a HDD is disconnected.
 
===Add new files to AniDB===
This will make the file manager automatically add found files to your MyList.
 
===Automatically update the storage field of MyList entries===
This will make the file manager automatically update the storage field of MyList entries based on the volume it's stored on. This field currently only works for files on a removable storage such as a DVD. The label used will be the label of the removable media, e.g. DVD #013.
 
===Automatically mark found files as OnHDD or OnRemovable in MyList===
This will make the file manager update your MyList to OnHDD if the file was found on a HDD or Network drive, or OnRemovable if the file is on a CD/DVD.
 
===Automatically mark removed files as Deleted in MyList===
This will make the file manager update your MyList to indicate the file has been deleted if removed by the above rule.
83

edits

MediaWiki spam blocked by CleanTalk.
MediaWiki spam blocked by CleanTalk.