Web - Amazon

We provide Linux to the World


We support WINRAR [What is this] - [Download .exe file(s) for Windows]

CLASSICISTRANIERI HOME PAGE - YOUTUBE CHANNEL
SITEMAP
Audiobooks by Valerio Di Stefano: Single Download - Complete Download [TAR] [WIM] [ZIP] [RAR] - Alphabetical Download  [TAR] [WIM] [ZIP] [RAR] - Download Instructions

Make a donation: IBAN: IT36M0708677020000000008016 - BIC/SWIFT:  ICRAITRRU60 - VALERIO DI STEFANO or
Privacy Policy Cookie Policy Terms and Conditions
User talk:Ingoolemo/Archive 08 - Wikipedia, the free encyclopedia

User talk:Ingoolemo/Archive 08

From Wikipedia, the free encyclopedia


Subpages in Karl Dickman's namespace

Aircraft infobox 1 2
Essays
Existing threads
 Older threads
Phi Beta Kappa
Projects
Sandbox
Standard.css
 Link scheme
Standard.js
 Airbuttons.js
 Tablebutton.js
Talkpage archives
 1 2 3 4 5 6 7 8
Thread boilerplate
Thread help
Update progress
Welcome

Note: I am implementing the use of synchronised threads on my talkpage, identical to those used by Alphax. To prevent interference with the threads, please post a comment rather than use any other method. To edit the synchronised threads, just use the [edit] link at the top of each section. See thread help for more information.

If you wish to thank me for something, I appreciate it greatly. However, I rarely take the time to respond, as I am usually engaged in other activities. My apologies, and you're welcome (in advance).

[edit] Archive

Contents

[edit] My latest idea for the extra edit buttons

To: MarkS
CC: Piotrus

Note: this comment is part of a synchronised thread. You can reply by clicking the [edit] link next to the comment's heading, or following this link. To ensure that you can see any further responses I make, add this page to your watchlist. Once you have replied, feel free to remove this boilerplate.

I decided it was best to start a new thread on this topic.

I had an idea for the editbuttons script that may or may not work. See User:Ingoolemo/extraeditbuttons.js for the code and User:Ingoolemo/Extra editbuttons for a correspondence table.

  1. I move each editbutton script to a separate subpage of the main script. Each editbutton is assigned a numerical name; currently spanning 1-22.
  2. I create a wincbutton function that imports the button script from its numerical page. This allows editors to perform very easy customisation of the order and placement of their buttons. By referencing the correspondence table mentioned above, for example, they can cherrypick the buttons they want and decide which order they want. Because the buttons are referenced numerically, all one needs to do is paste the main editbutton script--easy to do with a template--, then type something as simple as wincbutton('12').
  3. The custombutton function allows users to create their own buttons. I don't know if multiple variables are even possible in JavaScript, or if I treated them correctly, but if I did, it will allow Piotr to implement many of his ideas. I include examples below, but note that the following MAY NOT WORK, due to my lack of JavaScript skills:
    • custombutton('blahblah/Button_tl_template.png','Tl','{{tl|','}}','template name')
    • custombutton('blahblah/Button_subst_template.png','Subst','{{subst:','}}','template name')
    • custombutton('blahblah/Button_disambig','Disambig','{{disambiguation}}','','')
    • custombutton('blahblah/Button_welcome_from_Piotrus','Welcome','{{User:Piotrus/w}}','','')
  4. I have also developed an advanced linebreak button (User:Ingoolemo/extraeditbuttons.js/6a.js) that allows the user to define clear.
  5. I have developed Piotr's advanced references option. First, you click on the 'advanced references' button, which inserts <ref name="Insert reference name. Then, you either click on the 'c' button or the '/' button. The 'c' button allows you to add citation information, and the '/' button allows you to refer to a previous footnote.
Ingoolemo talk 03:41, 7 July 2006 (UTC)

Update: I have not yet tested the custombutton feature, but it seems that my current editbutton design is causing major rendering issues. I will get back to you guys when I have explored the problem further. Ingoolemo talk 00:58, 9 July 2006 (UTC)

The rendering issues have disappeared now that I've moved it from a subpage to my main javascript, but I still haven't got them up and running yet. Ingoolemo talk 02:21, 9 July 2006 (UTC)

My previous technique did not work. I have now developed a new system at User:Userscripts/Extra editbuttons/source2.js. Under this system, each button is defined as a function, and the buttons can be activated within a user's javascript by calling each button by its function name. (See User:Ingoolemo/standard.js for an example.)

I have not yet tested the custombutton(s,o,c,t,i) function. Ingoolemo talk 21:33, 14 July 2006 (UTC)

[edit] Final report

I have tried several methods that would allow end-users to alter the order of the buttons (and to cherry-pick them) with more ease. They all failed. The only option—or so it seems to my untrained opinion—is to paste the XEB script (awesome acronym, isn't it?) to a subpage of their own and edit it there.

I still have not tested custombutton(s,o,c,t,i), but I do expect that to work.

I would like to suggest that the XEB code (currently at User:MarkS/extraeditbuttons.js) be moved to User:Userscripts/Extra editbuttons/source.js. While I was doing my experiments, I intended for them to be moved to your namespace, but didn't want to do that until I had permission. It just seems so much more logical to me to have them in a central location.

Mark: thank you for XEB. Piotrus: thank you for getting me thinking about ways to improve it. Ingoolemo talk 02:14, 18 July 2006 (UTC)

I also strongly recommend taking a look at some of the differences between the current XEB code and my code at User:Ingoolemo/xeb.js. Ingoolemo talk 02:33, 18 July 2006 (UTC)

I am back (at last). Thanks for trying different ways of altering the code so the order of buttons can be amended.

I have had a play as well and have a method which might work. Broadly if the user defines a variable XEBOrder in their javascript before including the XEB code then this variable will override the standard order. For example: XEBOrder="A,C,E" will not display the standard XEB buttons, instead it will only display buttons A,C and E (in that order).

How does it work? The code first tests to see if XEBOrder has been defined. It it has it takes the user's value. If it hasn't been defined then it creates the variable with the default XEB buttons. It then works through each button in XEBOrder and creates the buttons requested (each button is now in a separate function).

The advantages I see in this method are:

  1. For user's who aren't bothered by the button order the XEB script works without any changes and produces a default set of buttons.
  2. You can change the order of buttons easily.
  3. You can hide buttons you don't want.
  4. The XEB script can contain extra non-standard buttons which user's can turn on if they want.
  5. The configuration is easy.

The current code is in the dev version of XEB and you can see the use of XEBOrder in my monobook.js. If you want to test it then simply include the dev version of XEB in your monobook rather than the standard version.

This is just a piece of code to test at the moment. Depending of the feedback I might look to:

  1. Change the button names from A,B,C,D... to more relevant names
  2. Add the extra buttons that have been requested. These might be non-standard buttons (i.e. only show if you use XEBOrder) to stop the toolbar getting too long.
  3. Move the code out of my userspace.

Any feedback is welcome. --MarkS (talk) 08:34, 24 July 2006 (UTC)

[edit] XEB Development version

I have updated the dev version of XEB. The new version includes:

  1. The ability to change the order of the buttons as requested by Piotrus
  2. The ability to hide buttons or show 'non-default' buttons.
  3. An optional set of buttons for adding references. These buttons are copies of those current in Ingoolemo's XEB script. These extra buttons are optional and only appear if requested by the user.

This new development version is in the form I would like to go live with and should include the main changes that were originally requested. The only thing missing is the other buttons requested by User:Piotrus - these can be added later.

Details (including how to make the extra refernce buttons appear) can be found on the XEB page. I invite your comments before I move the code to the live version. --MarkS (talk) 20:23, 5 August 2006 (UTC)

[edit] Event that triggers popups

Note: this comment is part of a synchronised thread. You can reply by clicking the [edit] link next to the comment's heading, or following this link. To ensure that you can see any further responses I make, add this page to your watchlist. Once you have replied, feel free to remove this boilerplate.

Hi Lupin. I've been doing a bit of reasearch on JavaScript recently and I thought I might suggest something:

Would it be possible for your to specify the event that triggers popups (currently onmouseover) as a variable with a default value of onmouseover? That way, users could specify in their local .js what event(s) they'd like to use to trigger it. Personally, for example, I would only like to have popups at the combination of onmouseover and a keystroke.

Is my suggestion possible? Ingoolemo talk 02:51, 18 July 2006 (UTC)

[edit] I replied on my talk page

Lupin|talk|popups 04:14, 18 July 2006 (UTC)

[edit] Military history WikiProject Newsletter - Issue V - July 2006

The July 2006 issue of the Military history WikiProject newsletter has been published. You may read the newsletter, change the format in which future issues will be delivered to you, or unsubscribe from this notification by following the link. Thank you.

This is an automated delivery by grafikbot.

[edit] MediaWiki:Summary

Note: this comment is part of a synchronised thread. You can reply by clicking the [edit] link next to the comment's heading, or following this link. To ensure that you can see any further responses I make, add this page to your watchlist. Once you have replied, feel free to remove this boilerplate.

About a month ago, you edited MediaWiki:Summary to add a <br clear="all"> to it, saying "fix problem with wrapping to the same line as edit box". This appears to have created a gap between MediaWiki:Copyrightwarning and the edit summary box, which I think looks unsightly. What problem exactly were you addressing? Looking at the HTML source, I don't understand how the summary box could have wrapped to the same line as the edit box; the copyright warning was in between, and block-level elements that aren't floated should never be on the same line. —Simetrical (talk • contribs) 04:03, 24 July 2006 (UTC)

I just removed the linebreak. The issue that I was dealing with was due to my CSS suppression of the rather bloated copyright warning. Since I've now suppressed the editsummary text as well, it's now a non-issue. Ingoolemo talk 02:41, 25 July 2006 (UTC)

[edit] Wikipedia:WikiProject Military history Coordinator Elections!

The Military history WikiProject coordinator selection process is starting. We are looking to elect seven coordinators to serve for the next six months; if you are interested in running, please sign up here by August 11!

This is an automated delivery by grafikbot - 18:43, 26 July 2006 (UTC)

[edit] Some problems with {{B-29 family}}

Note: this comment is part of a synchronised thread. You can reply by clicking the [edit] link next to the comment's heading, or following this link. To ensure that you can see any further responses I make, add this page to your watchlist. Once you have replied, feel free to remove this boilerplate.

Thanks for creating this template, but there are some formatting issues. Because it refuses to align right—and I have no idea why—it has to be imprisoned manually. By adding the following text to the article, you should be able to make it fit into the related content section much more nicely.

{| align="right"
|-
|{{B-29 family}}
|}

Once again, I'm really pleased that you created this. I much prefer this template to what you did earlier, since I very much disagree that the Tu-88 is all that related to the Super Guppy, for example.

Happy editing, Ingoolemo talk 01:08, 27 July 2006 (UTC)

I'm afraid I don't see any difference. Perhaps that's because I am using Safari. —Joseph/N328KF (Talk) 03:36, 27 July 2006 (UTC)

[edit] BAe 146

Note: this comment is part of a synchronised thread. You can reply by clicking the [edit] link next to the comment's heading, or following this link. To ensure that you can see any further responses I make, add this page to your watchlist. Once you have replied, feel free to remove this boilerplate.

Hi you moved the above page, citing WP:Air naming conventions. However the move you made is actually in contradiction of Wikipedia:Naming conventions (aircraft) and is incredibly clumbsy; British Aerospace BAe 146 is repitition. What you are calling it is the BAe BAe 146! Mark83 18:47, 30 July 2006 (UTC)

I had thought of that, but similar patterns can be seen throughout aviation history, as in the case of the Lockheed L-1011 or the North American NA-62; likewise, pre-7x7 Boeings are often referred to (erroneously) by such names as Boeing B-314. The most pertinent example is almost certainly the Hawker-Siddeley HS121 Trident, which is part of the same designation sequence as the BAe 146.
The real problem here is that it's not entirely clear how BAe named their aircraft. Were they doing like Boeing, calling their aircraft by [[{manufacturer} {model number}]], and simply using an abbreviated form? Were they doing like Lockheed, North American, and Hawker-Siddeley, using the abbreviation as a kind of stopgap so their planes wouldn't be just a number? Seeing that the DH.112 and HS.121 follow the latter system, I find it much more likely that the latter system is the case. However, no firm answer can be found until more research is done. Ingoolemo talk 19:32, 30 July 2006 (UTC)
May I be so bold as to suggest that given that it is not clear, it was very rash to change it with (as far as I am aware) no discussion. Clear or not the MOS states that the name should be the most common usage, which is BAe 146. Regards. Mark83 19:59, 30 July 2006 (UTC)

[edit] Where do you find edit quantity?

Note: this comment is part of a synchronised thread. You can reply by clicking the [edit] link next to the comment's heading, or following this link. To ensure that you can see any further responses I make, add this page to your watchlist. Once you have replied, feel free to remove this boilerplate.

I was interested to see the little box that shows you got to the 10,000 edit mark...maybe I'm missing something, but where do I go to see such a number for myself? Thanks! Akradecki 04:57, 1 August 2006 (UTC)

http://tools.wikimedia.de/~interiot/cgi-bin/count_edits?user=Akradecki&dbname=enwiki_p used to be the place to go, but do to a server issue the editcount is no longer updated. Unfortunately, the problem may never be fixed, because it isn't a problem for anyone other than the pathological editcounters. Your other options are User:Interiot/Tool2, which is probably the best one if you don't have very many edits. If you have more than say, 5,000 edits you'll have to download Flcelloguy's Tool, an executable JAR file. Ingoolemo talk 23:15, 1 August 2006 (UTC)
Thanks! Akradecki 23:22, 1 August 2006 (UTC)

[edit] Rotary rocket

Note: this comment is part of a synchronised thread. You can reply by clicking the [edit] link next to the comment's heading, or following this link. To ensure that you can see any further responses I make, add this page to your watchlist. Once you have replied, feel free to remove this boilerplate.

You deleted a load of categorisations of the article contents. So far as I can tell that's not a good idea; the categories need to be reasonably complete and comprehensive to be useful, and arbitrarily removing things from a category basically amounts to vandalising the category. If you want to do that kind of thing, you have to delete the entire category, or make sure that the article is already transitively in that category and by definition will remain so before removing it.WolfKeeper 05:14, 1 August 2006 (UTC)

No, because if and when a single stage to orbit is built, single stage to orbit will be removed from proposed spacecraft. But the Roton is still likely to be in proposed spacecraft. Right?WolfKeeper 23:17, 1 August 2006 (UTC)

which is the master category for Category:Space access, which is the master category for Category:Single stage to orbit. The inclusion of the latter therefore makes all three redundant and unnecessary.

You seem to be assuming that categories are hierarchical, but they aren't in general. They're more like Venn diagrams.WolfKeeper 23:17, 1 August 2006 (UTC)

Thus, by placing the article in Category:Experimental rockets, Category:Reusable launch vehicles, Category:Rotorcraft, Category:Single stage to orbit, and Category:Spaceplanes, we can ensure that the Roton is transitively in every single category that it was before I did my trimming, while significantly reducing the category clutter that existed before. The redundant categories should only be retained if the minimalist categorisation I propose here does not fully describe the Roton.

There is a reason why we only place the B-29 in Category:U.S. bomber aircraft 1940-1949, and not also in Category:Aircraft, Category:Aviation, Category:Military equipment, and Category:1940s: because the minimalist category already describes every single one of the more general categories. Ingoolemo talk 19:49, 1 August 2006 (UTC)

Yes, but that's clearly hierarchical, but these space categories aren't nearly so neat. For example if a billionaire owned a suborbital runabout for his own personal use, is that commercial spaceflight? No. So perhaps private spaceflight shouldn't be a subcategory of commercial spaceflight. In fact it's clear to me that they are not subsets of each other at all, although they are related.WolfKeeper 23:17, 1 August 2006 (UTC)
I think the bottom line here is you are really deleting stuff to make it look pretty, rather than being strictly accurate. I think accuracy is generally more important, YMMV.WolfKeeper 23:17, 1 August 2006 (UTC)

[edit] Unitformatter and dateformatter for classic skin

Note: this comment is part of a synchronised thread. You can reply by clicking the [edit] link next to the comment's heading, or following this link. To ensure that you can see any further responses I make, add this page to your watchlist. Once you have replied, feel free to remove this boilerplate.

Hullo Bobblewik,

I figured out a way to add your javascript unitformatter and dateformatter in the classic skin. I added it to the topbar; the quickbar seems like a better option, but the number of links in the quickbar is by no means fixed, which makes it difficult to guarantee that they will always be in the same position.

You can check out the code for the formatters at User:Karl Dickman/units.js and User:Karl Dickman/dates.js. The code to insert the links is new, but the formatting code is copied from your scripts.

I might be wrong, but I don't think that the code to add the links can be rewritten as a function. I tried and it didn't work.

I thought about moving my scripts to the User:Userscripts namespace, but that seemed silly unless you did the same. Interested?

Thanks for writing the formatters. Ingoolemo talk 05:11, 2 August 2006 (UTC)

Hi, you left a comment on my talk page requesting a reply using synchronised threads. However, I was blocked at that time and synchronised threads do not work for blocked users. I was able to reply on my own talk page but I don't know if you saw that. Can we talk now? bobblewik 12:14, 19 August 2006 (UTC)

Your original reply:

You wrote: I thought about moving my scripts to the User:Userscripts namespace, but that seemed silly unless you did the same. Interested?

I don't know what the Userscript namespace does. I am generally pro anything that makes things easier for editors but can you please let me know before I agree to it. Thanks. bobblewik 09:09, 2 August 2006 (UTC)

The Userscript namespace is intended to be a central repository of scripts. On scripts where multiple developers contribute, having scripts in the namespace of each individual developer can be a pain. The Userscripts namespace alleviates this problem.

However, if you are interested, I will have to provide you with the password to login as 'Userscripts', because non-admins cannot edit other users's .js files. Cheers, Ingoolemo talk 22:46, 19 August 2006 (UTC)

[edit] Thanks for the welcome and note!

Feel free to make any further suggestions which you think will help me work up from being a wikinewb. :)

[edit] Military history WikiProject coordinator election - vote phase!

The Military history WikiProject coordinator election has begun. We will select seven coordinators to serve for the next six months from a pool of eleven candidates. Please vote here by August 26!

This is an automated delivery by grafikbot - 11:46, 12 August 2006 (UTC)

[edit] Synch. threads querry

Note: this comment is part of a synchronised thread. You can reply by clicking the [edit] link next to the comment's heading, or following this link. To ensure that you can see any further responses I make, add this page to your watchlist. Once you have replied, feel free to remove this boilerplate.

Where they developed solely by you? I think the 'how-to' should be categorized and moved to wikipedia namespace so it can attract more attention. Also, I wonder if you are familiar with m:LiquidThreads? When I first heard about them I thought they were reffering to your synch. threads. I wonder if those two ideas can be combined?-- Piotr Konieczny aka Prokonsul Piotrus | talk 10:38, 13 August 2006 (UTC)

Actually, the idea was originally conceived by Alphax. My primary contributions were the how-tos and an improved boilerplate (the one at the top of this message); my architecture is also slightly different from Alphax's. I would have moved it into the Wikipedia namespace, but so far the only people I know who use them are Alphax and me.
LiquidThreads certainly sound interesting. I certainly agree that my synched threads would be a good thing to bundle with the liquid threads. I will be adding a comment on the meta page to that effect. Ingoolemo talk 22:09, 13 August 2006 (UTC)

[edit] August Esperanza Newsletter

Program Feature: To-Do List
The Esperanza To-Do List is a place where you may list any request, big or small, for assistance. If you need help with archiving your usertalk, for example, all you need to do is list it here and somebody will help you out. Likewise, if you need help with some area of editing on Wikipedia, list it here! Again, any matter, trivial or not, can be placed on this page. However, all matters listed on this page must not be of an argumentative nature. You do not need to be a member of Esperanza (or this program) to place or fulfill requests on this page. If you don't have any requests, consider coming by and fulfilling a few! This program has not been very active, but has lots of potential!
What's New?
In order to help proposed programs become specific enough to make into full-fledged programs, the In development section of the proposals page has been created. Proposals that are promising, but need to be organized in more detail are listed here. Please take a look at what is there, and help the proposals turn into programs.
To improve both the layout and text of the front page, in an attempt to clarify the image of Esperanza, the front page is going to have some redesigning take place. Please take your creative minds to Wikipedia:Esperanza/Front page redesign to brainstorm good ideas.
Many thanks to MiszaBot, courtesy of Misza13, for delivering the newsletter.
  1. In order to make sure all users who join Esperanza are welcomed, a list of volunteers who are willing to welcome new Esperanzians is at Wikipedia:Esperanza/Members#Esperanza_welcomers. Please add yourself if you are interested; we want to make sure all new Esperanza members are welcomed!
  2. The In development section of the proposals page has been created.
  3. Proposals page: Some proposals have been moved to the aforementioned "In development" section, some have been left as a proposal, and others have been archived. For those proposals that were a good idea but didn't necessarily constitute a program, General Esperanzial Actions has been created.
  4. Two small pieces of charter reform will be decided on in a straw poll at Wikipedia talk:Esperanza/Governance. One involves filling the position of any councillors who may leave, the other involves reforming the charter.
  5. Until cooperation with the Kindness Campaign is better defined, it remains as a proposed program.
  6. There is a page for discussing the front page redesign.
Signed...
Natalya, Banes, Celestianpower, EWS23, FireFox, Freakofnurture, and Titoxd
05:03, 14 August 2006 (UTC)
Although having the newsletter appear on everyone's userpage is desired, this may not be ideal for everyone. If, in the future, you wish to receive a link to the newsletter, rather than the newsletter itself, you may add yourself to Wikipedia:Esperanza/Newsletter/Opt Out List.

[edit] Numbers as first column in quality stats

Note: this comment is part of a synchronised thread. You can reply by clicking the [edit] link next to the comment's heading, or following this link. To ensure that you can see any further responses I make, add this page to your watchlist. Once you have replied, feel free to remove this boilerplate.

Hullo Oleg. I was thinking about adding numbers to WikiProject Aircraft's article quality list. (Similar to a numerical list, with the first row having 1, the second 2, the third 3, and so forth.) I would do this manually, but I'm sure it could be done much more easily with a bot, and Mathbot might erase my work anyway.

Could you add those numbers easily using Mathbot? Ingoolemo talk 00:24, 20 August 2006 (UTC)

Postscript: If you don't like the thread's, that's fine. Just {{subst:}} it and I'll keep your talkpage on my watchlist.

[edit] Task for Azabot

Note: this comment is part of a synchronised thread. You can reply by clicking the [edit] link next to the comment's heading, or following this link. To ensure that you can see any further responses I make, add this page to your watchlist. Once you have replied, feel free to remove this boilerplate.

Hey Aza. If it's not too much trouble, I have a task for AzaBot that should require almost no effort.

It is as follows:

For any articles containing {{Aircraft Specifications}} or {{Infobox Aircraft}} that don't already have it, add the following text: {{AircraftProject|class=|importance=}} to their talkpages.

Cheers, Ingoolemo talk 23:31, 24 August 2006 (UTC)

[edit] Military history WikiProject Newsletter - Issue VI - August 2006

The August 2006 issue of the Military history WikiProject newsletter has been published. You may read the newsletter, change the format in which future issues will be delivered to you, or unsubscribe from this notification by following the link. Thank you.

This is an automated delivery by grafikbot -- 12:15, 27 August 2006 (UTC)

[edit] Columbia 400

Howdy! I see that you've listed Columbia 400 as a stub on the assessment scale. This does not appear to match the criteria listed on the aircraft assessment page, as it contains a photo, description, and infobox. Could you clarify the disconnect? Thanks! - CHAIRBOY () 04:47, 28 August 2006 (UTC)

[edit] OGame Wiki

Your a sysop now.

[edit] AWB Edits

Hello, Please refrain from making AWB edits such as this

These edits are classed as insignificant, and are against the AWB rules

Thanks

Reedy Boy 10:38, 18 September 2006 (UTC)

[edit] September Esperanza Newsletter

Program Feature: Barnstar Brigade
Here in Wikipedia there are hundreds of wikipedians whose work and efforts go unappreciated. One occasionally comes across editors who have thousands of good edits, but because they may not get around as much as others, their contributions and hard work often go unnoticed. As Esperanzians we can help to make people feel appreciated, be it by some kind words or the awarding of a Barnstar. This is where the Barnstar Brigade comes in. The object of this program is to seek out the people which deserve a Barnstar, and help them feel appreciated. With your help, we can recognize more dedicated editors!
What's New?
September elections are upon us! Anyone wishing to be a part of the Advisory Council may list themselves as a candidate from 18 September until 24 September, with the voting taking place from 25 September to 30 September. Those who wish to help with the election staff should also list themselves!
Appreciation Week, a program currently in development, now has its own subpage! Share your good ideas on how to make it awesome there!
The Esperanza front page has been redesigned! Many thanks to all who worked hard on it.
Many thanks to MiszaBot, courtesy of Misza13, for delivering the newsletter.
  1. The proposals page has been updated, with some proposals being archived.
  2. Since the program in development Appretiaion week is getting lots of good ideas, it now has its own subpage.
  3. The September 2006 Council elections will open for nominations on 18 September 2006. The voting will run from 25 September 2006 until 30 September 2006. If you wish to be a candidate or a member of the elections staff, please list yourself!
  4. The new Esperanza front page design has but put up - many thanks to all who worked on it!
  5. TangoTango has written a script for a bot that will list new members of Esperanza, which will help those who welcome new Esperanzains greatly!
Signed...
Natalya, Banes, Celestianpower, EWS23, FireFox, Freakofnurture, and Titoxd
04:04, 18 September 2006 (UTC)
Although having the newsletter appear on everyone's userpage is desired, this may not be ideal for everyone. If, in the future, you wish to receive a link to the newsletter, rather than the newsletter itself, you may add yourself to Wikipedia:Esperanza/Newsletter/Opt Out List.

[edit] WikiProject Military history Newsletter - Issue VII - September 2006

The September 2006 issue of the Military history WikiProject newsletter has been published. You may read the newsletter, change the format in which future issues will be delivered to you, or unsubscribe from this notification by following the link. Thank you.

This is an automated delivery by Grafikbot - 19:24, 26 September 2006 (UTC)

[edit] Image:Platypus.jpg listed for deletion

An image or media file that you uploaded or altered, Image:Platypus.jpg, has been listed at Wikipedia:Images and media for deletion. Please look there to see why this is (you may have to search for the title of the image to find its entry), if you are interested in it not being deleted. Thank you. Yomanganitalk 11:02, 13 October 2006 (UTC)

[edit] The Military history WikiProject Newsletter: Issue VIII - October 2006

The October 2006 issue of the Military history WikiProject newsletter has been published. You may read the newsletter, change the format in which future issues will be delivered to you, or unsubscribe from this notification by following the link. Thank you.

This is an automated delivery by grafikbot 21:49, 25 October 2006 (UTC)

[edit] ?????????

Note: this comment is part of a synchronised thread. You can reply by clicking the [edit] link next to the comment's heading, or following this link. To ensure that you can see any further responses I make, add this page to your watchlist. Once you have replied, feel free to remove this boilerplate.

What the heck? Why'd you delete my page on the book "90 Minutes in Heaven"???? People need to read this book! —The preceding unsigned comment was added by Michael10127 (talkcontribs) .

I deleted it because it had been tagged for another user for deletion, because it satisfied one of the criteria for speedy deletion. Specifically, I felt that it was "Blatant advertising. Pages which exclusively promote a company, product, group or service and which would need to be fundamentally rewritten in order to become encyclopedic."
Of course, the subject matter itself is not an issue. The article simply sounded too much like a newspaper advertisement or something of that sort to qualify as an encyclopedia article. Thus, feel free to submit a rewritten version. If you'd like, I can email you the original text of the article as a starting point. Karl Dickman talk 01:24, 31 October 2006 (UTC)

Ok! I thought it was justsome idiot who liked doing that. There should be an article for the book "90 Minutes in heaven" If only I could write it right! —The preceding unsigned comment was added by Michael10127 (talkcontribs) .

I have recreated the article, but I have significantly refactored it. You can find the new article where you originally created it, at 90 Minutes in Heaven. Feel free to expand it, but try to keep in mind Wikipedia's policies on neutrality. Specifically, try to limit your additions to important parts of the plot summary, factual comments on critical reaction or popularity (such as it's current rank on Amazon—247, I believe), etc.
There's always the possibility that the article will be redeleted on that grounds that it is reposted content. If this happens, let me know and I will deal with it. Cheers, Karl Dickman talk 03:27, 31 October 2006 (UTC)

[edit] November Esperanza Newsletter

Program Feature: Admin Coaching (needs coaches!)
Admin Coaching needs coaches!!! If you are an administrator, or even a generally experienced user, do consider signing up to be a coach.

Admin Coaching, now being coordinated by HighwayCello, is a program for people who want help learning some of the more subtle aspects of Wikipedia policy and culture. People are matched with experienced users who are willing to offer coaching. The program is designed for people who have figured out the basics of editing articles; they're not newcomers any more, but they might want some help in learning new roles. In this way, Esperanza would help keep hope alive for Wikipedia because we would always be grooming the next generation of admins.

What's New?
The Tutorial Drive is a new Esperanza program! In an effort to make complicated processes on Wikipedia easier for everyone, Esperanza working to create and compile a list of tutorials about processes here on Wikipedia. Consider writing one!
A discussion on how Esperanza relates to the encyclopedia has been started; please add your thoughts.
Many thanks to MiszaBot, courtesy of Misza13, for delivering the newsletter.
  • The list of proposed programs has been updated, with some proposals being archived.
  • There is now a new program: the Tutorial Drive! Consider writing a tutorial on something you are good at doing on Wikipedia.
  • The suggestion of adding a cohesive look to all the Esperanza pages is being considered; join the discussion if you are interested!
  • In order to make a useful interlanguage welcome template, those involved in translation projects will be asked what English Wikipedia policies are most important and confusing to editors coming from other language Wikipedias.
  • A discussion of Esperanza's role in Wikipedia is being held, with all thoughts of all Esperanzians wanted!
  • Shreshth91 informed everyone that he will be leaving the Esperanza council as life is rather busy; his spot will be filled by the runner up from the last election, HighwayCello.
Signed...
Natalya, Banes, Celestianpower, EWS23, FireFox, The Halo, Shreshth91 and HighwayCello
20:33, 1 November 2006 (UTC)
Although having the newsletter appear on everyone's userpage is desired, this may not be ideal for everyone. If, in the future, you wish to receive a link to the newsletter, rather than the newsletter itself, you may add yourself to Wikipedia:Esperanza/Newsletter/Opt Out List.
Our "Network":

Project Gutenberg
https://gutenberg.classicistranieri.com

Encyclopaedia Britannica 1911
https://encyclopaediabritannica.classicistranieri.com

Librivox Audiobooks
https://librivox.classicistranieri.com

Linux Distributions
https://old.classicistranieri.com

Magnatune (MP3 Music)
https://magnatune.classicistranieri.com

Static Wikipedia (June 2008)
https://wikipedia.classicistranieri.com

Static Wikipedia (March 2008)
https://wikipedia2007.classicistranieri.com/mar2008/

Static Wikipedia (2007)
https://wikipedia2007.classicistranieri.com

Static Wikipedia (2006)
https://wikipedia2006.classicistranieri.com

Liber Liber
https://liberliber.classicistranieri.com

ZIM Files for Kiwix
https://zim.classicistranieri.com


Other Websites:

Bach - Goldberg Variations
https://www.goldbergvariations.org

Lazarillo de Tormes
https://www.lazarillodetormes.org

Madame Bovary
https://www.madamebovary.org

Il Fu Mattia Pascal
https://www.mattiapascal.it

The Voice in the Desert
https://www.thevoiceinthedesert.org

Confessione d'un amore fascista
https://www.amorefascista.it

Malinverno
https://www.malinverno.org

Debito formativo
https://www.debitoformativo.it

Adina Spire
https://www.adinaspire.com