Questions tagged [copyright-display]

Questions regarding the display of copyright information in applications. Legal questions about the use of copyright laws are off-topic.

This may refer to the copyright of the work being produced or the items on which the product depends.

127 questions
7
votes
2 answers

IntelliJ - Update Copyright Year

I have a copyright profile defined in IntelliJ as Copyright ${today.year}, All Rights Reserved. This works great on new files, however on existing files I would like to update the existing year to a range or update the end-date of an existing range…
AnthonyW
  • 1,910
  • 5
  • 25
  • 46
7
votes
6 answers

Add header(copyright) information to existing source files

I want to add our company's copyright information to all of our EXISTING source code files. The project is developed in Eclipse. so, for new files I can modify the settings as suggested here. But for existing files, how am I supposed to do this.…
jai
  • 21,519
  • 31
  • 89
  • 120
6
votes
1 answer

What is the infoDictionary key to get the copyright defined in the bundle?

I want to use the copyright placed in the bundle of the project "info plist." I cannot find the key documented. Does anyone know the value of the key? [[[NSBundle mainBundle] infoDictionary] objectForKey: @"key-for-copyright"]
mobibob
  • 8,670
  • 20
  • 82
  • 131
6
votes
2 answers

Python PIL: How to FIll a Image with a copyright logo like this?

I need to protect my photos by filling them with copyright logos. My OS is Ubuntu 10.10 and Python 2.6. I intend to use PIL. Supposed I have a copyright logo like this (You can do this in Photoshop easily): and a picture like this: I want to use…
6
votes
1 answer

How to list licences of all installed packages in Debian-based distros?

I want to get all the installed packages licenses on my Ubuntu server, I can dump it all by using (this 2013 post): packages=$( dpkg --get-selections | awk '{ print $1 }' ) for package in $packages; do echo "$package: " cat…
user2552806
6
votes
1 answer

Copyright Key and Value Not in info.plist

I am preparing my first app for submission to the App Store, in Apple's documentation they say to: Make sure that your information property list file contains a valid value for the Copyright key. And then show in a picture what they are talking…
mattman88
  • 475
  • 1
  • 8
  • 22
6
votes
1 answer

How to add copyright information to a Nib file?

I've just finished a total re-write [1] of one of Apple's example applications and I am going to release my code as source only on GitHub, under a BSD license. Adding the BSD license text to the .h and .m files is easy, and I can add copyright…
Peter M
  • 7,309
  • 3
  • 50
  • 91
5
votes
4 answers

Hide long copyright message at top of all files

We have 15 line long copyright messages at the top of all our source-code files. When I have them open in emacs, that wastes a lot of valuable space. Is there any way to get emacs to always a hide a certain message but still leave it in the file?
sligocki
  • 6,246
  • 5
  • 38
  • 47
5
votes
2 answers

Copyright information in minified javascript and css files

I think I may need to revisit this, out of curiousity if nothing else. Is it allowed to remove the license information from minified js and css files if those files are generated with a sourcemap that points to the unminified source and all files…
5
votes
1 answer

How to move copyright to top in maps v2 for android?

According to attribution guidelines of google maps I have to show the copyright of Google and the map providers when showing a map in my android application. The copyright is usually displayed at the bottom of the mapview. The problem with that is…
5
votes
5 answers

Current year in AssemblyInfo copyright

Is there a possibility to include the current year via DateTime.Now.Year in the AssemblyInfo.cs-file? I have tried: [assembly: AssemblyCopyright("Copyright " + DateTime.Now.Year)] But it seems the argument can only be a constant expression.
toni
  • 2,270
  • 3
  • 22
  • 27
5
votes
1 answer

What tags do I use for adding copyright notices to xml files?

I am developing an app for my customer. The content that we create in the strings.xml are proprietary to them and they want a copyright notice and their trademark notice inside the XML file. I want to be able to list both my copyright, and my…
Angel Koh
  • 12,479
  • 7
  • 64
  • 91
4
votes
5 answers

Adding copyright information to a Website

I'm working on a website for a client that is a non-profit. The want a Copyright link at the bottom of the site. My question is do they have any legal rights? What kind of info should i put? etc etc. Is it good enough to basically just add something…
Letseatlunch
  • 2,432
  • 7
  • 28
  • 33
4
votes
2 answers

Add copyright information to Sphinx documentation

I'm using Sphinx to document a Python module. I have a module that has author and copyright defined. __author__ = "John Doe " __copyright__ = "Copyright 2015-2016 Dummy Corp All Rights Reserved." I tried adding the…
BretD
  • 348
  • 3
  • 12
3
votes
1 answer

XAML Copyright Header

Is there a standard for placing copyright statements in XAML files? In .cs files I use the following: //----------------------------------------------------------------------- // // // …
KrisTrip
  • 4,943
  • 12
  • 55
  • 74
1
2
3
8 9