Whitelist bug or a i just stupid

o.k. i created a whitelist to add object embedding support...when i did, restarted the webservice and now the blog and wikis are disabled.anyone ever have this problem

Doug,
I have the same problem. I changed the owner & group permissions on the whitelist.plist file to _teamssserver. Here's the content - ultra simple - just trying to add an allowance for any style attribute in all tags:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.
com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>tags</key>
<dict>
<key>all</key>
<array>
<string>style</string>
</array>
</dict>
</dict>
</plist>
Here's the error (key part):
File "/usr/share/wikid/lib/python/apple_wlt/ContentEntry.py", line 29, in <module>
Nov 14 15:06:19 wiki com.apple.wikid[87990]: import ContentFilters
Nov 14 15:06:19 wiki com.apple.wikid[87990]: File "/usr/share/wikid/lib/python/apple_wlt/ContentFilters.py", line 21, in <module>
Nov 14 15:06:19 wiki com.apple.wikid[87990]: WhitelistContentFilter.WhitelistContentFilter(supportPath + 'whitelist.plist'),
Nov 14 15:06:19 wiki com.apple.wikid[87990]: File "/usr/share/wikid/lib/python/apple_wlt/WhitelistContentFilter.py", line 125, in _init_
Nov 14 15:06:19 wiki com.apple.wikid[87990]: for elm in userPlist['styles']:
Nov 14 15:06:19 wiki com.apple.wikid[87990]: exceptions.KeyError: 'styles'
Seems a lot of people are struggling with this issue. The documentation is a bit thin on the all feature. Do I have to have the other elements (protocol, styles) present also? I'm tempted to just change the python code, but would rather use the plist as intended.
Thanks,
RyanR>

Similar Messages

  • Can you delete videos from itunes? it's just stupid if you can't.

    why can't you just right click "clear?" you can copy, but you can't delete them? that's just stupid. i didn't even buy them from the itunes store, i got them from some website. they won't play on my ipod so I really don't need them in itunes....thanks for whatever help you can give me. i already deleted them from my hard-drive but they still show up in itunes for some dumb reason.......
    ~chris

    No Problem!
    Might want to mark my post solved or answered at the top of the thread so it shows as answered and we can refer here. Believe it or not, this question has popped up several times before
    btabz

  • Hi there , i use microsoft remote desktop to connect to my work pc - on my 21.5 mac the remote screen is half the size of my screen and i cant get it to be full screen - is this possible or am i just stupid ? many thanks

    Hi there , i use microsoft remote desktop to connect to my work pc - on my 21.5 mac the remote screen is half the size of my screen and i cant get it to be full screen - is this possible or am i just stupid ? many thanks

    What setting have you chosen in the view menu? Fit to Screen or Window.
    And, in Preferences what have you set for Display?

  • I just purchased a movie and I can't get the iTunes extras to play, the unrated version plays but I want to watch the special features . Am I just stupid or is there something simple I am not seeing?

    I just purchased a movie and I can't get the iTunes extras to play, the unrated version plays but I want to watch the special features . Am I just stupid or is there something simple I am not seeing?

    Hello there, NighHawk420.
    The following Knowledge Base article provides some practical information on where to locate the iTunes Extras when purchased with a movie from iTunes:
    About iTunes LP and iTunes Extras
    http://support.apple.com/kb/HT3823
    When you purchase a movie with iTunes Extras, the primary movie along with the iTunes Extras will download to your iTunes Movie folder. Mouseover the cover art and click the icon on the album to open the main menu to play the movie or view other features.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Can someone else confirm this bug or is it just me?

    I think I've run into another *choose file name* bug. I have a script which uses the text returned from a *display dialog* command to gather part of the file name for a *choose file name* command. I usually paste the other part of the file name in off the clipboard. This all worked fine as long as I was running the script from within the Script Editor application. The problem I'm having started after I saved the script as an application. I cannot paste anything from the clipboard into the *choose file name* text field if it comes after another *choose file name* command or a *display dialog* command that has a text field.
    Harder to explain than to just show a couple of examples. Please check out these examples and let me know which text fields you are able to paste into...
    Example #1:
    <pre style="width:630px;height:auto;overflow-x:auto;overflow-y:hidden;"
    title="Copy this code and paste it into your Script Editor application.">set theText to "**Try To Paste Something Here**"
    choose file name with prompt "Works." default name theText
    choose file name with prompt "Doesn't Work!!" default name theText
    display dialog "Works Here Though!!" default answer theText</pre>
    Example #2:
    <pre style="width:630px;height:auto;overflow-x:auto;overflow-y:hidden;"
    title="Copy this code and paste it into your Script Editor application.">set theText to "**Try To Paste Something Here**"
    display dialog "Works." default answer theText
    choose file name with prompt "Doesn't Work!!" default name theText
    choose file name with prompt "Doesn't Work Here Either!!!" default name theText
    display dialog "Works Again Here Though!!" default answer theText</pre>
    As a workaround, I've started using another application, such as *System Events* or Finder, to display all *choose file name* commands. Like in this next example...
    Example #3
    <pre style="width:630px;height:auto;overflow-x:auto;overflow-y:hidden;"
    title="Copy this code and paste it into your Script Editor application.">set theText to "**Try To Paste Something Here**"
    display dialog "Works." default answer theText
    tell application "Finder"
    activate
    choose file name with prompt "Works." default name theText
    choose file name with prompt "Works." default name theText
    end tell</pre>
    Thanx in advance for taking the time to help me figure this out!!

    Say the clipboard content is JumpinJackFlash. The following script...
    <pre style="width:630px;height:auto;overflow-x:auto;overflow-y:hidden;"
    title="Copy this code and paste it into your Script Editor application.">set theName to text returned of (display dialog "" default answer "123456789")
    set theDest to choose file name default name (the clipboard) & "-" & theName</pre>
    ...works fine as long as I for sure want the name to be JumpinJackFlash-123456789. If I don't want to use the contents of the clipboard, and want to change the name to start with JackAndJill, I now have to delete the JumpinJackFlash part of the name in order to manually type in JackAndJill. This is just an arbitrary example, and I know this is a fairly trivial bug, but an annoyance that shouldn't be there. At least I've now confirmed that this doesn't just affect me and I've filed a bug report with Apple. We'll see where that gets us. I already have another bug report filed with Apple for *choose file name* regarding file extensions in the text field that they've informed me is a duplicate of someone else's earlier submission.
    Thanx so much for taking the time to check into this problem with me Pierre!

  • Music Playlist shows video playlists - iPod BUG. IS IT JUST ME?

    I have the 160GB ipod classic. I have several video playlists set up (to manage music videos, other movies, etc.). When I select "music" from the main menu, then select "playlists" to pull up my music playlists as set up on iTunes, I see all of my video playlists listed and they show "0 SONGS" under the playlist name, obviously because they are not supposed to have songs and only have videos. When I click on the video playlist from this menu, the ipod hangs on a white screen (forever!) until I press menu to return the music playlist menu... Is it just me or is this one of the many continued bugs that the iPod classic still has even after the 1.0.2 software update?
    APPLE - PLEASE FIX THIS BUG WITH THE OTHERS AND RELEASE 1.0.3 SOFTWARE ASAP!!!

    I did realize that I also have a "music videos" (smart) playlist that shows all music videos. Since these have songs in them, they are listed also...

  • Adjustment layer bug - or is it just me?

    Somebody please try this and tell me if it's a bug or just me ...
    Create an adjustment layer over some video -- any video.
    Add 2 effects to the Adj Layer: Fast Blur and Levels.
    Set blurriness to 50. Set RGB White Input Level to 50.
    Now you should see Blur and Levels applied. All good so far.
    Now add some keyframes so the blurriness animates.
    How's it going?
    On my system, as soon as I try to animate 1 or more of the effects, they stop working entirely.
    This appears to be a bug. Or am I missing something?
    My workaround has been to use TWO separate Adj Layers on top of each other, but that is cumbersome and annoying.
    If anyone else experiences this, please file a bug report so we can get this resolved!
    Here's the link: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    You can just paste in the body of this post

    I tried the approach you've outlined.  I'm able to see the original effects on my clip as it plays, but the bluriness value doesn't animate.  I also tried using Gaussian Blur.  Same result.  I tried changing the order of effects.  Still didn't animate.
    I haven't used adjustment layers too much, yet.  I did use them on a project I finished last week, however.  I never ran into this on that project since, in my case, I wanted to keep my effects on separate adjustment layers anyway.
    But good to know there's another bug, or just the way it was built.  Maybe it's a feature request. 

  • Playlists: DARWINIAN ISSUES or: Some People are Just Stupid.

    I have done my best to really make some Great Old Playlists [GOPs] un-restorable.
    Steps:
    1. Take a Mini and make it corrupt enough that it will not find the OS.
    2. While transporting said Mini to the store for Genius help, _LET IT FALL TO GROUND FROM 4 FEET._
    3. Realize that said unit is DOA, and so just go and _PURCHASE 2 MORE MINIs_.
    +[Luckily the entire music collection was residing on a separate drive.]+
    4. New systems set up fine, and finds the songs OK. +[Figuring to one day get around to restoring the GOPs]+
    5. Synch all 4 ipods to new system, so GOPs are now wiped from them. [PLAYLSITS STILL SHOW, BUT ARE EMPTY OF SONGS]
    I think I have the original "iTunes Library Database" and the "iTunes Music Library.XML" from the *Day of the Fall* [DOF].
    But I am one of these people who really doesn't understand the difference between them or how to restore from there.
    OTHER INFO:
    Lots of additional songs have been added since the DOF.
    Can the GOPs be found from the iPods themselves???? Or what do you do??
    Any ideas I am truly appreciative.

    Well.... even though i asked Newegg to replace the defective P6T mb - they refunded me instead. Just as well since it's $10 bucks cheaper with free shipping.
    In any case, my main requirements other than for the mb to support the i7 920 and have an adequate number of pci, pcix slots, usb ports and no graphics chip - is to have at least 8 internal sata connectors and support at least 16gb of ram. The P6T satisfies that bill.
    Unless anyone can recommend another motherboard with similar or better specs for around 250 US dollars, i'd like to know before i reorder the ASUS P6T.
    The only other board that Newegg has with similar specs is the:
    GIGABYTE GA-EX58-UD5 LGA 1366 Intel X58 ATX Intel Motherboard
    DFI LP DK X58-T3eH6 LGA 1366 Intel X58 ATX Intel Motherboard
    DFI LP UT X58-T3eH8 LGA 1366 Intel X58 ATX Intel Motherboard
    MSI X58 Platinum SLI LGA 1366 Intel X58 ATX Intel Motherboard

  • Key frames and motion -- I give up.  I'm just stupid.

    I've edited "real" film and tons of video but for some reason I just can't seem to wrap my brain around this motion and keyframe issue. It's completely counter intuitive and I've tried everything I can from common sense to just plain WAG and I cannot seem to understand the process of how to make motion happen in a piece of video. Am I alone in this? All I want to do is to slowly zoom out and tilt from a still image -- not that complicated except for FCP makes it so. How do I do this? Why doesn't it make sense? What's the process? Where's the logic?
    Here's what I want to do: I have a picture of something. I want to draw away from a zoomed in portion and tilt as I move back and away -- sort of like flying I guess. Where do I set my key frame(s)? I need a step by step hand-holding here because I just don't get it and I'm frustrated and have already pounded my keyboard once and I know it won't take much more before I have to go buy another one.
    Sheesh!
    Much appreciated.

    Go to the first frame of the clip in question. Double click it to open in the viewer. Go to the motion tab. Position it as you want it to be.
    Add a keyframe for position, one for scale and one for center. Open the triangle for the distort pane and add keyframes for each of the 4 coordinates and one for aspect ratio. Now play down the clip to the point where you want your move to end.
    Adjust each of the parameters to taste. FCP will automatically add keyframes where a change has taken place. Render if necessary and take a look. Tweak to taste.
    If you want it to hold at the head, do the above, move down the timeline to where you want it to move, add keyframes again to that point then go to the end and do as outlined above.

  • Really damaged or just stupid?

    I just purchased the Mac Box Set to upgrade Tiger to Leopard. I installed Leopard (successfully, I think), but when I tried to install ILife '09 and iWork '09, I get a message that says that the installation quit (iLife quit when it was trying to install iPhoto) due to a damaged disk. I'm exchanging it, but what are the chances that I would get two damaged installation disks in one box? Am I doing something wrong? Why does stuff happen to people who know very little about how computers work????

    Thanks for your response. I have not found Motion to have the same ease of use as LT when on deadline. I also have not found all the LT goodies in Motion either. For instance, where are the backgrounds, lower thirds, graphic elements? When in a hurry, these have been life-savers and I really hate to lose them.

  • Maybe I'm just stupid...  Can someone help me with this?

    I'm building an application with Swing and am having trouble adding an actionlistener to a JButton. I have trouble with static/nonstatic variables and stuff. Should I declare the JButton outside of main? What the hell?
    Here's my code. Thanks!!!
    import java.io.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class editor implements ActionListener
    public static void main( String args[] )
    JTextArea myTextarea = new JTextArea( 4, 32 );
    myTextarea.setFont( new Font( "Garamond", Font.PLAIN, 12 ) );
    myTextarea.setLineWrap( true );
    myTextarea.setWrapStyleWord( true );
    JScrollPane myScrollPane = new JScrollPane( myTextarea );
    JButton myGraphicsButton = new JButton( "Add Graphic" );
    myGraphicsButton.setMnemonic( 'a' );
    JButton myBuildButton = new JButton( "Build Page" );
    myBuildButton.setMnemonic( 'b' );
    JPanel myButtonPanel = new JPanel();
    myButtonPanel.add( myBuildButton );
    myButtonPanel.add( myGraphicsButton );
    JLabel graphicStatus = new JLabel( "No Graphic Attatched" );
    JPanel myPanel = new JPanel( new BorderLayout( 32, 0 ) );
    myPanel.add( myScrollPane, new BorderLayout().NORTH );
    myPanel.add( myButtonPanel, new BorderLayout().CENTER );
    myPanel.add( graphicStatus, new BorderLayout().SOUTH );
    JFrame myFrame = new JFrame( "Robotics Site Manager" );
    myFrame.getContentPane().add( myPanel );
    myFrame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    myFrame.pack();
    myFrame.setLocation( 300, 300 );
    myFrame.setVisible( true );
    public void actionPerformed( ActionEvent evt )
    }

    Hi,
    << Long reply follows... >>
    Where did you add the ActionListener to the JButton? You need to call the addActionListener(ActionListener l) method on the JButton so that the listener will be registered for Events. Your event handler is not being called because you never told the button to notify any listeners of ActionEvents!
    Also, there are a few things in your code that appear different to "standard" Java programming techniques. For example, class names should start with a capital letter, i.e. "Editor" instead of "editor".
    Generally you should keep the main() method as simple as possible. One way to do this is to make the Editor class extend JFrame, and call the Editor() constructor from the main() method. Remember to call the superclass constructor as the first line in the Editor() constructor.
    Also you might find your code easier to understand if you use inner classes to create the ActionListeners, rather than using the main class itself. This also means you can have a different ActionListener for each JButton, which is (I assume?) what you would want.
    You could use outer classes instead (defined outside the class definition), or even completely separate classes (defined public in separate files) but inner classes are appropriate here because the ActionListeners are only appropriate to the Editor class. Also, inner classes have the same access priveliges as the class they are contained in, e.g. the GraphicsButtonListener class can access any members of the Editor class, even if they are private or protected. Outer classes can only access package (default) or public members.
    You could also use anonymous inner classes for the ActionListener classes, but personally I tend to avoid this programming style.
    The following code is how I would write your small app. Of course others may write it differently and just as proficiently. When you have more experience you will develop your own style.
    public class Editor
    extends JFrame
       public static void main(String[] args)
          // this calls the Editor constructor
          // you can assign the object to a variable but it is not necessary in this case...
          new Editor();
       Editor()
           // the following line calls the JFrame constructor
           super("Robotics Site Manager");
           //........ initialisation ..............
           //........ add code here.............
           JButton graphicsButton = new JButton("Add Graphic");
           graphicsButton.addActionListener(new GraphicsButtonListener());
           JButton buildButton = new JButton("Build Page");
           buildButton.addActionListener(new BuildButtonListener());
           //......... now add the buttons/panels/components to create the UI ........
           //........ add code here.............
           pack();
           setVisible(true);
       class GraphicsButtonListener
       implements ActionListener
           public void actionPerformed(ActionEvent evt)
              // this method is called when the Graphics button is clicked....
              // access any members of Editor from here, even private or protected ones...
       class BuildButtonListener
       implements ActionListener
           public void actionPerformed(ActionEvent evt)
              // this method is called when the Build button is clicked....
              // access any members of Editor from here, even private or protected ones...
    }Note that I left out the import statements at the beginning.
    You could define an access scope modifier (private/public/protected) for Editor() constructor depending on your requirements.
    Finally, although it is not very important, you don't really need to use a JPanel, you can just add the JButtons/etc directly to the JFrame's content pane using getContentPane().add(...). Set the layout using getContentPane().setLayout(...).
    Good luck!
    Ben
    P.S. A "static" member (whether method or attribute) is defined and referenced at the class level, that is, only one instance of the member is created for all instances of the class, and to reference a static member you use the class name as the scope (e.g. "Editor.staticMember"). Static members are sort of like global variables in the traditional languages like C, except that they are contained in a class.
    A "non-static" member is unique to each specific instance (object) of the class, and is referenced using the object as the scope (e.g. "obj.member" where obj is an Object reference).

  • Bummed about FCS3 or just stupid?

    I am so bummed about my upgrade to FCS3....unless I'm just doing something wrong.
    I have a clean install of FCS3 on new Mac Pro, Quad-Core Intel Xeon, 2.26 GHz.
    No LiveType.
    After reading tons of posts I'm learning that a custom install of LT will do the trick unless you have FCStudio 1 with FCP 5.0 (rather than 5.1) which is not compatible with the Intel Macs.
    Please tell me I'm misunderstanding this and this is not the reason I've been unsuccessful so far with the custom install. I'm using LT 2.0 discs from FCP 5.0 and LT crashes after opening. I see the files I've installed but can't seem to use the program.
    Second question: if I'm SOL w/ LT would I at least be able to access the LT backgrounds, lower thirds and various fun graphic elements for use independent of LT program.
    Thanks so much for your help.

    Thanks for your response. I have not found Motion to have the same ease of use as LT when on deadline. I also have not found all the LT goodies in Motion either. For instance, where are the backgrounds, lower thirds, graphic elements? When in a hurry, these have been life-savers and I really hate to lose them.

  • Mystifying generics problem (or perhaps I am just stupid?)

    Given the following class:
    public class DataTextFileReader<T> {
         private Vector<T> builtVector = null;
         public Vector<T> getData() {return builtVector;}
    }And these instructions in another class:
    DataTextFileReader theFileReader = new DataTextFileReader<Kanji>();
    Vector<Kanji> builtVector = theFileReader.getData();Why do I get an unchecked type warning from the call to getData()?
    Of course, the above code is drastically simplified. In actuality the constructor for DataTextFileReader is like so:
    public DataTextFileReader(File inputFile, LineParser<T> theLineParser)And the line I am instantiating it with is like so:
    new DataTextFileReader<Kanji>(inputFile, (LineParser<Kanji>)new KanjiDetabber());And of course, there is a Kanji class, a LineParser<K> interface, and a KanjiDetabber class which implements LineParser in the picture. LineParser defines a parseLine method used to built objects from lines passed from the DataTextFileReader (in the case of KanjiDetabber, Kanji objects). DataTextFileReader basically just uses the LineParser to build objects which it puts into builtVector, and keeps track of bad lines. I am using this to read in data files in human-readable format so that I can do manual data entry into a text file and then just import everything.
    But all of these compile without errors or warnings, and anyway nothing else should be relevant as long as the builtVector member and the getData() method have the right generics, right?
    I take it I am not the only person who finds generics thoroughly vexing. Useful, but vexing.
    Drake

    Off topic: consider using ArrayList instead of Vector.
    You need to use generics in all places:
    DataTextFileReader<Kanji> theFileReader = new DataTextFileReader<Kanji>();Also, this example:
    new DataTextFileReader<Kanji>(inputFile, (LineParser<Kanji>)new KanjiDetabber());Remove the cast:
    new DataTextFileReader<Kanji>(inputFile, new KanjiDetabber());Make sure that KanjiDetabber is declared like this:
    class KanjiDetabber extends LineParser<Kanji> { ... }Perhaps you would be happier with a different word
    than Detabber, how about KanjiTabFilter.

  • BUG: Now that's Just Silly

    OSX 10.4.8 15" MacBook Pro
    Smallest thumbnails in library view (square box)
    Landscape picture: 8.3 filename is fully displayed
    Portrait picture: 8.3 filename is abbreviated with ellipsis
    Trivial, yes.
    Annoying as hell when browsing many images visually...yes.
    Why not either:
    - don't allow thumbnails that small
    - use consistent rules whichever orientation the image is in. That's, er, the idea of putting the images in a square box in the first place.
    Damian

    Nothing compared to what they used to be like, I use to ring up and say a different last name compared to the account holder and say I'm the account owners son which I am but anyone can do it with just the telephone number. I still think the way you access the majority of your services with the lack of security is awful and totally agree that they need to bring in entirely new security measures.
    If this helped you please click the Star beside my name.
    If this answered your question please click "Mark as Accepted Solution" below.

  • With the IPhone4, the bluetooth is not working (can't find any other iphone or mac). is it a bug or is it just a problem with mine?

    I'm trying to connect to mac or Ipad or even Iphone and it's searching without any result.

    For what purpose are you trying to connect them?
    Only specific apps support Bluetooth connections between iOS devices, and you can only connect an iPhone to a computer via Bluetooth for internet tethering.

Maybe you are looking for

  • Lost of data during update

    I am hoping someone can shed some light on missing data.  I loaded the new OS upgrade and all went well until six hours later.  Yes six hours it took.  So I thought the process was finished but it wasn't.  I disconnected, and WHAMooooo, I lost all my

  • HELP HELP HELP HELP HELP!!! :p

    When is the white iPhone coming out!!! I need it within the next 16 days!!!!!! I thought it was supposed to come out in JULY!

  • Application List

    After seeing how well the QTINFO program was able to tell me all about the QT on my phone, I would like to find a program to do the following: Create a list of *everything* on my phone (especially applications) complete with version number and date.

  • Plug in folders missing

    Hi, I've just updated from Premiere version 8.0 to 8.1 and have decided to try out the neat video noise reduce plug-in. I've installed it as per instructions but the folder it wanted to install into wasn't there. I have tried installing it in a folde

  • How to tell which version of Mac OS X is installed?

    I'm not sure this is the best category for this question but I wasn't sure which area would be the best. Let's say I have a hard drive attached to my mac (via firewire or usb) and I want to ascertain what version of Mac OS X is installed on it. Is th