User talk:Sergius g

From Wikisource
Latest comment: 11 years ago by Jeepday in topic CSS and Javascript
Jump to navigation Jump to search

Welcome to Wikisource

Hello, Sergius g, and welcome to Wikisource! Thank you for joining the project. I hope you like the place and decide to stay. Here are a few good links for newcomers:

You may be interested in participating in

Add the code {{active projects}}, {{PotM}} or {{Collaboration/MC}} to your page for current Wikisource projects.

You can put a brief description of your interests on your user page and contributions to another Wikimedia project, such as Wikipedia and Commons.

Have questions? Then please ask them at either

I hope you enjoy contributing to Wikisource, the library that is free for everyone to use! In discussions, please "sign" your comments using four tildes (~~~~); this will automatically produce your username if you're logged in (or IP address if you are not) and the date. If you need help, ask me on my talk page, or ask your question here (click edit) and place {{helpme}} before your question.

Again, welcome! — billinghurst sDrewth 23:00, 13 January 2012 (UTC)Reply

Re: FIXME in Lesson 5[edit]

The first FIXME (the part about adjectives in is, is, e) was not a mistake - it's referring to adjectives like e.g. turpis, which ends in is in the masculine and feminine (is, is) and e in the neuter: turpis, turpis, turpe.

The second one doesn't actually point to a footnote. Asterisks before words indicate that they are either "of modern origin, or applied to a modern object". I've been linking the asterisks to the abbreviations page. Nikolaos (talk) 03:43, 14 January 2012 (UTC)Reply

CSS and Javascript[edit]

{{helpme}} How do I include my own stylesheet? Also, what about javascript so that it runs on a page not only for me but for everybody who is viewing the page?

test section (ignore)[edit]

test Sergius g (talk) 16:16, 14 January 2012 (UTC)Reply

Lesson 9[edit]

See if you understand it better than me.

  1. On page 30 there's a * next to 'ipsīus', but no foot reference and it's not a neologism this time :)
  2. Page 31 starts with "b) a variety ...", but where is "a)"? Strange.

Otherwise I'm done with 9.

Looks like the document you're using is missing the last part of page 30, which resolves both of these. I'll get to these after I run to town. Nikolaos (talk) 23:19, 17 January 2012 (UTC)Reply

Dictatae[edit]

Do you think we should group dictatae just like in the textbook? Right now, I've been creating a dictata page for each one. I'm kind of leaning toward several on one page. In that case the URL will be something like Dictata_10_11_12_13. Let me know.

== Script ==
#!/bin/sh

echo "<table class='wikitable' style='background-color:#dcdcdc'>"
OLDIFS=$IFS
IFS="^"
sed -e "s/^\(Nom\|Gen\|Dat\|\|Acc\|Voc\|Abl\)\./'''\1.'''/g" | sed -e 's/@/<br\/>/g' | sed -e 's/\t/^/g' | while read LINE; do
  echo "<tr>"
  for word in $LINE; do
    echo "<td>$word</td>";
  done;
  echo "</tr>"
done
echo "</table>"
IFS=$OLDIFS

I don't know if you'll find this useful. I found myself creating tables too many times. So... If in vim you type a series of lines of the form:

Text1[TAB]Text2[TAB]Text3_1@Text3_2@Text_3
Text1[TAB]Text2[TAB]Text3_1@Text3_2@Text_3
Text1[TAB]Text2[TAB]Text3_1@Text3_2@Text_3
...

Then if you do a visual select in Vim, press ! and then enter the path the script, it will return an HTML table. If the first column is case names, it will put the triple wiki quotes around them. The @ signs will be replaced by br's. Saved me some time.

I might look into using that script. I haven't used Vim in some time, though :P As to the question - I don't know how I feel about that. It would make it difficult for people who, like myself, simply change the URL manually rather than looking for a link in the table of contents. Nikolaos (talk) 20:29, 21 January 2012 (UTC)Reply