I'm missing a basic concept on iCal.

I'm missing a basic concept on iCal Server i think.
I just want to publish a single calendar to the public from the server, not from the local client; with NO passwords.
Calendars exist on the iCal Server on 10.8.5 using login credentials from Open Directory where users
can create calendars, share calendars, etc.
When you go to the Web site, it first asks for your login and password.
How do i link a calendar to a public location, or make a calendar publicly accessible?
Thanks in advance
Tim Far
OSX Server, OS X Mountain Lion (10.8.5)

So with no responses to the above question, I've had to rtfm...
It appears from my reading of the somewhat limited documentation on iCal Server on 10.8.5, since I have chosen
to apply security to the Wiki's and Calendars to use OD on the server; I cannot open a public viewable Calendar along side the secured ones.  ( I may certainly be wrong, but I haven't been able to find out how.)
So I took an easier approach, as I wanted 1 public calendar viewable and subscribable by the public.
The local iCal server will be used privately for local secure business, while the Public calendar will be
maintained on the local Admin's desktop, then shared publicly to Google calendars, where I set up a simple secure acount.  This gives me 4 benefits.
1. A public viewable webpage of the calendar - for those with iCal or iPhone (droid population, or browsers)
2. An dot.ics subscribable link  for those with iPhones, iCal compatibe calendars
3. An embedded link for our education web site, to show the Public calendar inline on our own website.
4. The ability to publish to said Google calendar , from the locally managed desktop.
This may have been obvious, or not; and potentially othe ways of accomplishing the same,
Any thoughts or goctcha's ?
Thanks in advance.

Similar Messages

  • Missing some basic functionality

    I seem to be missing some basic functionality, like switching to tty1-n using Ctrl+Alt+F1-n.  I can't begin to guess what this is related to, as after several installs I've never experienced that to be missing.  Can anyone point me in the right directions?  Thanks.

    evr wrote:I was recently having problems with commands like because i was using "thinkpad" as the input.xkb.layout value in /etc/hal/fdi/policy/10-keymap.fdi.  Changing to "us" helped me, perhaps that's the issue?
    Hm.  I don't actually have that file in the policy directory.

  • Trying to understand the basic concept of object oriented programming.

    I am trying to understand the basic concept of object oriented programming.
    Object - a region of storage that define is defined by both state/behavior.
    ( An object is the actual thing that behavior affects.)
    State - Represented by a set of variables and the values they contain.
    (Is the location or movement or action that is the goal that the behavior is trying to accomplish.)
    Variables- (What does this mean?)
    Value - (What does this mean?)
    Behavior - Represented by a set of methods and the logic they implement.
    ( A set of methods that is built up to tell's the how object to change it's state. )
    Methods - A procedure that is executed when an object receives a message.
    ( A very basic comand.For example the method tells the object to move up, another method tells the method to go left. Thus making the object move up/left that combination is the behavior.)
    Class - A template from which the objects are created.
    ( I am very confused on what classes are.)
    - The definitions of the words I obtained from the "Osborne Teach Yourself Java". The () statements are how I interperate the Mechanisms (I do not know if Thats what you call them.) interact with each other. I understand my interpretation may be horribly wrong. I will incredibly appreciate all the support I may get from you.
    Thank you

    Object oriented programming is a replacement for the older idea of procedural programming (you can research procedural programming in google). As I understand it, in procedural programming, you have a step by step set of function calls to accomplish some task. Each function receives a data structure, manipulates it, and passes it to the next function. The problem with this is that each function preforms some action for the overall task and can't easily be reused by some other task. Its also harder to read the flow of what is happening with raw data structures flying all over the place.
    In object oriented programming, an object calls a function of another object and receives back, not a data structure, but another object. Objects contain a data structure that can only be accessed by its functions. An object is not so much a sub component of a bigger task, as it is a service that any other task can use for any purpose. Also, when you pass an object to the caller, the caller can ask questions about the data structure via its functions. The developer doesnt have to know what the previous function did to the data by reading up on any documentation, or having to reverse engineer the code.
    I suggest the best way of learning this is to code something like a library object.
    A library object contains a collection of book objects
    A book object contains a collection of chapter objects
    A chapter object contains a collection of paragraph objects
    A paragraph object contains a collection of sentence objects
    A sentence object contains a collection of word objects.
    Add functions to each object to provide a service
    Example: A library object should have a:
    public void addBook(Book book)
    public Book getBook(String title)
    public boolean isBookInLibrary(String title)
    The key is to add functions to provide a service to anyone who uses your object(s)
    For example, what functions (service) should a paragraph object provide?
    It shouldn't provide a function that tells how many words there are in a sentence. That function belongs to a sentence object.
    Lets say you want to add a new chapter to a book. The task is easy to read
    if you write your objects well:
    Sentence sentence1=new Sentence("It was a dark and stormy night");
    Sentence sentence2=new Sentence("Suddenly, a shot ran out");
    Paragraph paragraph=new Paragraph();
    paragraph.addSentence(sentence1);
    paragraph.addSentence(sentence2);
    Paragraphs paragraphs=new Paragraphs();
    paragraphs.addParagraph(paragraph);
    Library library= new Library();
    library.getBook("My Novel").addChapter("Chapter 1",paragraphs).
    Now, lets say you want to have a word count for the entire book.
    The book should ask each chapter how many words it contains.
    Each chapter should ask its paragraphs, each paragraph should ask
    its sentences. The total of words should ripple up and be tallied at each
    stage until it reaches the book. The book can then report the total.
    Only the sentence object actually counts words. The other objects just tallies the counts.
    Now, where would you assign a librarian? What object(s) and functions would you provide?
    If written well, the project is easily extensible.

  • Quesion about the Basic concept of RMAN incremental backup

    I have a problem in understanding the basic concept of two types RMAN Incremental backup ie. Differential and Cumulative. I just don't understand how cumulative incremental backup consumes more space than Differential backup.
    Have a look at the scenario in which Differential backup is used.
    1. On Sunday midnight, a LEVEL0 backup is taken.
    2. On Monday midnight all the blocks that was changed since Sunday midnight are stored in the backup media (tape or disk)
    3. On Tuesday midnight all the blocks that was changed since monday midnight are stored in the backup media.
    4. On Wednesday midnight, all the blocks that was changed since tuesday midnight are stored in the backup media.
    At this point, in the backup media, you have all the changed blocks from sunday midnight to wednesday midnight eventhough it was stored in a daily basis. If you had taken a cumulative backup at wednesday midnight the backup media would have contained the same changed blocks from sunday midnight(LEVEL0) to wednesday midnight, but all at one go instead of daily basis. I don't understand how cumulative backup consumes more space when the backup media contains the same amount of changed blocks as it were in the case of the Differential backup.

    Considering the Scenario you given:
    Sunday : Level 0 backup.
    Monday : You have taken an incremental backup then there will not be any difference in size of backup set for differential or cumulative as the changes from last Level0 backup are considered.
    Tuesday : A cumulative backup (n-1) will have changed blocks since Sunday's Level0 backup but a differential backup(n) will only have changed blocks since Monday. So definitely there will be more space consumed by cumulative backups compared to differentials.
    Hope it helps ...
    Bhupinder

  • I thought I understood automator but I must be missing some basic understa

    Thought I understood automator but I must be missing some basic understanding. I want select several audio (mp3 stereo) files and get automator to convert them to mono aiff files. I know how to do this in soundtrack pro, and I looked under actions, library, music; but could not find a way to get them to be mono in automator. Suggestions?
    thanks
    J Jordan
    The KiteSites.com Series

    I'm sorry, I downloaded and installed 'drop a few my way' and read the instructions, but where is the 'drop a few my way' icon? Mysterious new files appeard in the Library/iTunes/Scripts/ folder, but where is the icon supposed to be?

  • I am missing some basic video transitions that used to be there.

    I am missing some basic video transitions that used to be there.  Using Adobe Premier Pro CC 8.1, Caravan.  Update any time Creative Cloud prompts me to.
    Some third party transitions also are acting like I've never registered them, but it concerns me that video transitions that are native to Adobe Premier are missing.

    If you are on a mac look here Adobe Premiere Pro Help | New features summary
    to see transitions that are no longer there. Look for "deprecated video transitions" about two-thirds of the way down

  • SAP BI basic concept

    Hi all
    I am new in SAP BW and have a basic practical experience (4 months) but not very confident on basic concept of BI .Can any  tell us from where i can learn  those

    Mail me at [email protected]

  • **** soundbooth missing the BASICS ?

    Hi ,
    according to me SOUNDBOOTH misses the BASIC FEATURE
    that is "volume envelope" ,
    I mean bezier or linear curves ( with " add points " tool to set the volume along the timeline ! )
    I know there is the GAIN stuff with clicking etc...
    but it's easy to use of course, ....but for beginners !
    When doing some hard job , professionnal settings ,
    NOTHING replaces the curves ( who said PROTOOLS ? ) ,
    and the editing points , that you can change , oups sorry , ADJUST ,
    and adjust , and adjust , and this with ease in - ease out transition !
    Gestural and graphical editing is the future .
    NB: GAIN in soundbooth is like working on a flatten image in PHOTOSHOP,
    instead of having layers !
    Sad to say , but that's THE reason why we didn't choose SOUNDBOOTH ...
    it as having a super car with ... no wheels !
    Do some upgrades and we'll change or mind for sure !
    Hope this helps...
    kiwiii ( sound mixer - france )

    I've got to jump in and defend Soundbooth. In the interest of full disclusure I do use BOTH Audition and Soundbooth. The library I am working for produces audiobooks that are eventually distributed in a special format. The tools that came with the program used for capture and conversion to the special format are the pits when it comes to editing. We use a corps of volunteers to do the intermediate editing. many of these people had no prior experience and, for some, this was their first time using a computer.
    With a little on the job training, our volunteers are doing an outstanding job editing the recorded material using Soundbooth. Yes, Audition affords more control and will do some jobs that Soundbooth cannot, but 90% of our editing work is done with Soundbooth. Audition is usually reserved for final assembly, Open for Append is so much easier than Cut 'n' Paste, and generating index tones.
    As I said, we do use Audition as well, so I am not trying to say Soundbooth is the be all and end all of audio editing software, but it is very easy to learn and, with some patience, will do some very complex tasks.

  • MIssing folder Library/Application Support/iCal folder

    Hope this is in the correct discussion!
    This folder is missing from my MBP. On Time Machine, I can't find it and have gone back to March 2012 when TM starts.
    Does it create itself and what data would it hold?
    I've lost all my iCal calendars and have a back up at 18/7/12. I've restored Library/Calendars but the entries don't show up in iCal. I'm told I need to restore Library/Application Support/iCal folder, but it's not there.
    I've created a current entry (in a new calendar) but still no Library/Application Support/iCal folder.
    Should I be trying to create it manually, somehow I don't think so?
    Thanks for any help.

    Choose Go to Folder from the Finder's Go menu and provide ~/Library/Application Support/iWork/Keynote/Themes/ as the path.
    (90962)

  • Missing invitee field in iphone ical

    Hello,
    In my iphone ical, I am missing the invitee/attendee field when I create an event.  How can I get it on?
    Thanks
    Tammy

    Not sure if this has been answered, but I had the same problem, and here is how I fixed it.
    My issue is that I have both iCloud and Google Calendar sync'd with my iphone 4S on IOS 5.1.1. After restoring my phone the "invitee" field was missing from iCal.
    I did the following:
    1.  Turned off Google Calendar syncing (through IMAP Gmail sync). Settings > Mail, Contacts, Calendars > pick your Gmail account > Turn off Calendars sync.
    2. Set-up Google Calendar sync using Microsoft Exchange (http://support.google.com/mobile/bin/answer.py?hl=en&answer=138740)
    3. Turn off iCloud Calendar syncing. Settings > Mail, Contacts, Calendars > pick your iCloud account > Turn off Calendars sync.
    4. Turn back on iCloud Calendar syncing. Settings > Mail, Contacts, Calendars > pick your iCloud account > Turn on Calendars sync.
    If you don't sync Google Calendars, just do 3 & 4. Now I get the Invitees back (but only for Google Calendar, not iCloud Calendars).
    Hope this helps.

  • Missing new Basic sliders and more...

    Very weird problem- I'm missing several of the new features in my LR4 Beta. They show briefly and then revert to the old sliders. The Develop module has the old (LR3) Basic sliders (E,R,F,B)- BUT when I launch LRb4 into the Develop module you can see the new sliders (H,S,W.B) for about 2 seconds and then it reverts to the old ones.
    I'm also missing the new selective WB- the old (LR3) adjustment brush sliders are there. Also missing soft proofing the Print module. There may be others as well but this is what I've noticed so far.
    FWIW The Map and Book modules are there.
    I'm running OS X 10.6.8 on a MacBook Pro 2.4GHz Core i5. I quit all apps and restarted before installing. Have tried trashing prefs files (the 2 .plist files) and restarting.
    Any suggestions and advice appreciated.

    Thanks! Works perfectly. I suppose that was probably in documentation somewhere that I didn't read...

  • Plug-in settings missing after basic install

    ive just done a fresh install of logic 7.2 + updates to 7.2.3
    i didn't install any of the sound files or content on the disc. i just noticed that all the plugin settings are missing. anyone know where to install them? are they in with the sound files on disc 1 somewhere?
    i dont want to install all the bonus content i just want the plugin settings.

    Ian Cashman wrote:
    ive just done a fresh install of logic 7.2 + updates to 7.2.3
    i didn't install any of the sound files or content on the disc. i just noticed that all the plugin settings are missing. anyone know where to install them? are they in with the sound files on disc 1 somewhere?
    i dont want to install all the bonus content i just want the plugin settings.
    You can open the contents packages of said DVDs and find the settings by hand.
    Also, they might be installed somewhere else. Did you look in both your main Library and your User Library Suuport folders?
    Cheers

  • Some basic concepts,thanks

    some baisc concepts
    when i monitor database server using toad utilities' event waits chart,i cannt understand some concepts below:
    1 control file io (what does it mean)
    2 direct patch read
    3 sql *net ( over 1000 waited per second)
    will u please explain them for me?
    thanks

    Hello,
    1 control file io (what does it mean) :- This means number of times Control File Read and Write happened since instance startup.
    3 sql net ( over 1000 waited per second) :- This means using SQLNet tried to retrieve the data from Database and it was waiting because some other process were using some other process to finish its process.
    Correct me if I am wrong, this is my understanding.
    Thanks,
    Ripesh

  • WRT54G: Options missing from Basic Setup

    Using a WRT54G (1.0.2). Recently lost Options from Basic Setup screen. The only option that appears is a "?" Can send screen capture but no option here. How can I fix this problem? Thanks, Michael

    If the computer has any firewalls on it , disable it and check whether you can access the setup page.
    If not , reset the router to factory defaults and try accessing the router.

  • I just updated itunes on my mac and all of my icloud movies and tv shows are missing. Basically everything that wasn't on my computer isn't showing as available for download.

    I just updated itunes on my macbook air and when I click on the movies or tv shows tabs in my library everything that was previously stored on icloud is now missing. This is $K's worth of stuff and I can't find any information on how to retreive it.

    We are having this same issue.  We have over 200 songs that are now missing and only our most recent ones show up in our ITunes library.  Fortunately we have one phone that still has all of our music still in tact. This phone is no longer one I will be using as I upgraded to the Iphone 6, and only the most recent purchased songs remain.  The rest are no where to be found and the iTunes store shows that I would need to re-purchase.  Not sure what to do as when I tried to sync my last phone, all the songs were gone.

Maybe you are looking for

  • Error message when logging into WAS/UI

    I receive the following error message when I log onto the WAS/UI. Logon is not possible because you have not been assigned to a business role; contact your system administrator I know that I need to be assigned to business role, but how (which transa

  • Few questions about buying an iPhone in the US for European use

    We're currently in NY and are considering buying an iPhone because it's way cheaper here than in Belgium. Still we have a few questions, hope we can get some answers - You should unlock your iPhone, should we ask for that right away in the Apple stor

  • File Download - HTTP 404 Page Not Found Error

    Dear All, I have using file download facility for my application and it is working on my development server well. What all I have done is created a procedure for that and then give EXECUTE permission to APEX_PUBLIC_USER. In my development server I di

  • IPod lock in iTunes

    Hello, I've bought me an iPod nano but I'm having the problem that I can not upload any songs to it. The only songs I can put on it are songs that iTunes has choosen. When I go to my iPod in iTunes, I see this lock next to how much disk space I have

  • Noob to AS3, Question

    Of course I don't expect anyone to write this whole thing for me, I just need a point in the right direction. If somebody could just get me started, and explain how I could accomplish this, I would be very happy. I have limited programming experience