diff --git a/src/General/html/Features/Settings-section-Rice.html b/src/General/html/Features/Settings-section-Rice.html new file mode 100644 index 000000000..64535d93f --- /dev/null +++ b/src/General/html/Features/Settings-section-Rice.html @@ -0,0 +1,61 @@ +
+ Custom Board Navigation is disabled. +
+
In the following, board can translate to a board ID (a, b, etc...), the current board (current), or the Twitter link (@).
+
Board link: board
+
Archive link: board-archive
+
Title link: board-title
+
Board link (Replace with title when on that board): board-replace
+
Full text link: board-full
+
Custom text link: board-text:"VIP Board"
+
Index mode: board-mode:"type" where type is paged, all threads or catalog
+
Index sort: board-sort:"type" where type is bump order, last reply, creation date, reply count or file count
+
Combinations are possible: board-text:"VIP Catalog"-mode:"catalog"-sort:"creation date"
+
Full board list toggle: toggle-all
+
+ +
+ Time Formatting is disabled. +
:
+
Supported format specifiers:
+
Day: %a, %A, %d, %e
+
Month: %m, %b, %B
+
Year: %y, 20%y
+
Hour: %k, %H, %l, %I, %p, %P
+
Minute: %M
+
Second: %S
+
+ +
+ Quote Backlinks formatting is disabled. +
:
+
+ +
+ File Info Formatting is disabled. +
:
+
Link: %l (truncated), %L (untruncated), %T (Unix timestamp)
+
Original file name: %n (truncated), %N (untruncated), %t (Unix timestamp)
+
Spoiler indicator: %p
+
Size: %B (Bytes), %K (KB), %M (MB), %s (4chan default)
+
Resolution: %r (Displays 'PDF' for PDF files)
+
+ +
+ Unread Tab Icon is disabled. + + +
+ +
+ + + + + +
diff --git a/src/General/html/Features/Settings.html b/src/General/html/Features/Settings.html new file mode 100644 index 000000000..f4de786a9 --- /dev/null +++ b/src/General/html/Features/Settings.html @@ -0,0 +1,16 @@ +
+ +
+
+
diff --git a/src/General/html/Features/Thread-catalog-view.html b/src/General/html/Features/Thread-catalog-view.html new file mode 100644 index 000000000..798de0cb4 --- /dev/null +++ b/src/General/html/Features/Thread-catalog-view.html @@ -0,0 +1,7 @@ + +
+ #{postCount} / #{fileCount} / #{pageCount} + +
+#{subject} +
#{comment}
diff --git a/src/General/lib/catalogthread.class b/src/General/lib/catalogthread.class new file mode 100644 index 000000000..45d6e99ea --- /dev/null +++ b/src/General/lib/catalogthread.class @@ -0,0 +1,15 @@ +class CatalogThread + @callbacks = new Callbacks 'Catalog Thread' + toString: -> @ID + + constructor: (root, @thread) -> + @ID = @thread.ID + @board = @thread.board + @nodes = + root: root + thumb: $ '.thumb', root + icons: $ '.thread-icons', root + postCount: $ '.post-count', root + fileCount: $ '.file-count', root + pageCount: $ '.page-count', root + @thread.catalogView = @