search for: newsletters

Displaying 20 results from an estimated 722 matches for "newsletters".

Did you mean: newsletter
2006 Feb 10
4
Handling a relationship between users and newsletter subcriptions.
Hey Everyone! I have a newsletter system that contains a multitude of different newsletters. In this case three but the system allows the user to add more. Every user can be subscribed to any amount of given newsletters. So what I did was I created a user model, newsletter model, and subscription model. The subscription model belongs to one user and one newsletter. However,...
2015 Jan 12
2
Wiki navibar Newsletter reference
Every wiki page contains a link to http://wiki.centos.org/Newsletter/Latest in the navibar at the top and bottom of the page. Currently that redirects to http://wiki.centos.org/Newsletter/1005 which is the Newsletter dated 10 July 2010, hardly current news. Perhaps someone can suggest a better communication vehicle to display when the Newsletter link is selected? And change whatever master wiki
2009 Oct 23
4
Newsletter feedback
Hey We have now published the sixth version of the Newsletter and I think it is time to ask YOU ( the reader ) what we can improve. The current trend is away from really technical details more to a light read and entertaining stuff. Is this a good way to go. Or should we focus more on the technical side again*. Or is the balance right? What do you want to read about? What sections do you want?
2006 May 02
0
Validation in File Upload
...lidates_presence_of :name, :summary, :filename def newsletter=(newsletter_field) self.filename = sanitize_filename(newsletter_field.original_filename) self.filename = Time.now.strftime("%H%M%S")+self.filename #self.data = element_field.read File.open("#{RAILS_ROOT}/public/newsletters/#{self.filename}","wb") { |f| f.write(newsletter_field.read)} end private def sanitize_filename(value) just_filename = value.gsub(/^.*(\\|\/)/, '''') @filename = just_filename.gsub(/[^\w\.\-]/,''_'') end end --VIEW-- <h3>...
2018 Feb 02
6
Slightly OT : newsletters, mail formatting and netiquette
...a few newsletter servers for myself and a handful of clients on public CentOS servers with PHPList. For the last twenty years or so I've followed the basic rule that mails should have no formatting whatsoever, only simple text. And now I wonder if that basic rule of netiquette also applies to newsletters. I'm a subscriber to a series of tech-related newsletters, and I couldn't help but notice that they all seem to be HTML-formatted, even those from respectable hardcore geek groups. So my somewhat naive question: is HTML formatting acceptable in newsletters? Cheers, Niki -- Microlinux -...
2009 Jun 02
1
CentOS Pulse - The Bi-weekly CentOS Newsletter #0901
Hi, I am pleased to announce the first edition of the bi-weekly CentOS newsletter which we dubbed "CentOS Pulse". This first issue centers around improving communication within the CentOS community and how that relates to the CentOS Promo SIG. We also look at the recent announcements regarding the CentOS LiveCD and the CentOS Directory Server. And dive into interesting community
2009 Oct 15
1
fields_for weirdness
I just did a large upgrade to to Rails 2.3.4 and I am trying to make use of the more modern view features. I have a Newsletter object. Newsletter has many Sections. I also have: accepts_nested_attributes_for :sections on the Newsletter object. I have the typical scaffolded new.html.erb with: <% form_for(@newsletter) do |f| %> in there, I am trying to populate the first Section
2002 Jun 05
13
Welcome to the Linux Magazine newsletter
******************************************************************** * PLEASE SAVE THIS WELCOME MESSAGE! * ******************************************************************** Welcome to linux-mag-news! This list is for the monthly Linux Magazine newsletter. SUBSCRIBING: Send a blank message to: join-linux-mag-news@sand.lyris.net UNSUBSCRIBING: Send a message
2010 Apr 03
2
Newsletter 1002, Spanish version
Hello, I have just finished my Spanish translation of the last Newsletter. As I have no edit rights to the proper zone, I have written it into my own personal page http://wiki.centos.org/EduardoGrosclaude. Please some elder member of the familiy snip it off from there and hang it where it belongs. :) I have not involved myself in prior proofreading, so this may be a bit off. May I slip in a small
2006 Jun 10
2
open source newsletter software?
is anyone aware of open source newsletter software built with rails? i am currently using dadamail, and like it, but i''d like a system that is easily integrated with user registration, etc. it was recommended that i try campaign monitor, which has an api available. http://www.campaignmonitor.com/ while i like this solution, i feel that the "per send" cost is worth
2009 Jun 02
0
New Mailing List: CentOS Newsletter announcements
Hi, Dag Wieers announced the first bi-weekly CentOS Newsletter today: <http://lists.centos.org/pipermail/centos-newsletter/2009-June/000000.html> This Newsletter is considered as an important interface between the CentOS team and the CentOS community. If you want to be informed when a new newsletter comes out, you can subscribe to the newly created CentOS-Newsletter announcement list -
2007 Mar 06
2
need to create a NewsLetter Funtionality in RoR
Hi, Me a newbie in RoR - switching from .NET. i want to write an application that has a newsletter functionality where I can create an interface where in I can have options to send newsletters to multiple people in the database. i need to make a form which has from hardcoded, to is selected from te database maybe a listbox next to it and then a subject and text area. how wud i go about doing this in RoR thanks, Vivian Aranha --~--~---------~--~----~------------~-------~--~----~ You r...
2015 Jan 12
0
Wiki navibar Newsletter reference
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 12/01/15 02:25, PatrickD Garvey wrote: > Every wiki page contains a link to > http://wiki.centos.org/Newsletter/Latest in the navibar at the top > and bottom of the page. Currently that redirects to > http://wiki.centos.org/Newsletter/1005 which is the Newsletter > dated 10 July 2010, hardly current news. > > Perhaps someone
2018 Jun 05
0
CentOS Pulse Newsletter #1801, June 2018
We are pleased to announce the latest edition of the CentOS Newsletter. This release is packed with information from the CentOS Community, including events, reports from our SIGs (Special Interest Groups) and information about the release of CentOS 7.5.1804 This is the first edition in many years, and hopefully the first of many to come. We aim to resume a monthly schedule again, going
2018 Jul 03
0
CentOS Pulse #1802 - The CentOS Newsletter, July, 2018
We're pleased to publish another edition of the CentOS Newsletter. Once again, we cover latest releases, security updates, events, and reports from our SIGs (Special Interest Groups). You can read the newsletter at https://wiki.centos.org/Newsletter/1802 More information about the newsletter, and how you can contribute to future editions, is available at http://wiki.centos.org/Newsletter
2010 May 01
3
Newsletter release nearly ready
Hey So the Newsletter is finally pretty much finished. Could everybody please just read through it again and make some adjustments. Further how are the translations getting on? Unfortunately I either speak Chinese or Spanish so could I get a heads up on status? Further I am looking into a Newsletter meeting hopefully using VOIP, everybody ok with that? Next message will be the release :)
2005 Dec 15
0
getting a value from a select list
I''m sure this is an easy question to answer but here is what I am trying to do: I am using this method: @newsletters = Newsletter.find(:all, :order => ''name'') collection_select(:newsletter, :id, @newsletters, :id, :name) I can''t seem to get the id out of the :newsletter param. When i see the post in the logs it has Parameters: {"commit"=>"Create", "acti...
2004 Jun 25
2
What happened to the excellent R-Newsletter ?
The last newsletter found on www.r-project.org is from December 2003. I was looking forward to the next issue, will there be one soon, or what happened ? While I'm waiting for the newsletter I think I will buy some books about R and statistics. Is Venables & Ripley, MASS good if you want to learn about multivariate data analysis (PCA, PLS, correspondence analysis) and how to do it in
2008 Jan 19
2
Newsletter: Ihre E-Mailadresse wurde ausgetragen.
Hallo, Ihre E-Mailadresse "r-help at stat.math.ethz.ch" wurde aus dem Verteiler entfernt. URL: http://www.fueralles.de/cgi-bin/nsl_pro/newsletter.cgi?id=steinfeuerfred Mit freundlichen Gr?ssen Ihr Newsletter-Team
2010 Apr 01
1
Newsletter release
Hey Could everyone please proofread and add last changes to the Newsletter[1]. Cheers Didi [1] http://wiki.centos.org/Newsletter/1002 -- Hoffmann Geerd-Dietger http://contact.ribalba.de